|
@@ -1,4 +1,4 @@
|
|
|
-From 235ce271f3fee53b918317ebb73a47b3c6a7ae03 Mon Sep 17 00:00:00 2001
|
|
|
+From 64e5c6b23de9c147881680f3daccb995263c34a3 Mon Sep 17 00:00:00 2001
|
|
|
From: Angelo Compagnucci <angelo@amarulasolutions.com>
|
|
|
Date: Tue, 24 Mar 2020 22:53:37 +0100
|
|
|
Subject: [PATCH] m4: ac_python_devel: fixing for crosscompiling environments
|
|
@@ -14,11 +14,11 @@ python-config and fixes the rest of the m4 accordingly.
|
|
|
|
|
|
Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
|
|
|
---
|
|
|
- libraries/libapparmor/m4/ac_python_devel.m4 | 25 ++++++++++++++++-----
|
|
|
- 1 file changed, 19 insertions(+), 6 deletions(-)
|
|
|
+ libraries/libapparmor/m4/ac_python_devel.m4 | 23 ++++++++++++++++-----
|
|
|
+ 1 file changed, 18 insertions(+), 5 deletions(-)
|
|
|
|
|
|
diff --git a/libraries/libapparmor/m4/ac_python_devel.m4 b/libraries/libapparmor/m4/ac_python_devel.m4
|
|
|
-index 2ea7dc77..6454e2d8 100644
|
|
|
+index 29cf090d..6454e2d8 100644
|
|
|
--- a/libraries/libapparmor/m4/ac_python_devel.m4
|
|
|
+++ b/libraries/libapparmor/m4/ac_python_devel.m4
|
|
|
@@ -13,6 +13,11 @@ AC_DEFUN([AC_PYTHON_DEVEL],[
|
|
@@ -55,7 +55,7 @@ index 2ea7dc77..6454e2d8 100644
|
|
|
fi
|
|
|
if test -z "$PYTHON_LDFLAGS"; then
|
|
|
# (makes two attempts to ensure we've got a version number
|
|
|
-@@ -136,10 +141,14 @@ sys.stdout.write('%s\n' % distutils.sysconfig.get_python_lib(0,0));"`
|
|
|
+@@ -136,6 +141,10 @@ sys.stdout.write('%s\n' % distutils.sysconfig.get_python_lib(0,0));"`
|
|
|
# libraries which must be linked in when embedding
|
|
|
#
|
|
|
AC_MSG_CHECKING(python extra libraries)
|
|
@@ -66,12 +66,7 @@ index 2ea7dc77..6454e2d8 100644
|
|
|
if test -z "$PYTHON_EXTRA_LIBS"; then
|
|
|
PYTHON_EXTRA_LIBS=`$PYTHON -c "import sys; import distutils.sysconfig; \
|
|
|
conf = distutils.sysconfig.get_config_var; \
|
|
|
--sys.stdout.write('%s %s\n' % (conf('LOCALMODLIBS'), conf('LIBS')))"`
|
|
|
-+sys.stdout.write('%s %s %s\n' % (conf('BLDLIBRARY'), conf('LOCALMODLIBS'), conf('LIBS')))"`
|
|
|
- fi
|
|
|
- AC_MSG_RESULT([$PYTHON_EXTRA_LIBS])
|
|
|
- AC_SUBST(PYTHON_EXTRA_LIBS)
|
|
|
-@@ -148,6 +157,10 @@ sys.stdout.write('%s %s\n' % (conf('LOCALMODLIBS'), conf('LIBS')))"`
|
|
|
+@@ -148,6 +157,10 @@ sys.stdout.write('%s %s %s\n' % (conf('BLDLIBRARY'), conf('LOCALMODLIBS'), conf(
|
|
|
# linking flags needed when embedding
|
|
|
#
|
|
|
AC_MSG_CHECKING(python extra linking flags)
|
|
@@ -86,11 +81,11 @@ index 2ea7dc77..6454e2d8 100644
|
|
|
# save current global flags
|
|
|
ac_save_LIBS="$LIBS"
|
|
|
ac_save_CPPFLAGS="$CPPFLAGS"
|
|
|
-- LIBS="$ac_save_LIBS $PYTHON_LDFLAGS"
|
|
|
+- LIBS="$ac_save_LIBS $PYTHON_LDFLAGS $PYTHON_EXTRA_LIBS"
|
|
|
+ LIBS="$ac_save_LIBS $PYTHON_EXTRA_LIBS $PYTHON_LDFLAGS"
|
|
|
CPPFLAGS="$ac_save_CPPFLAGS $PYTHON_CPPFLAGS"
|
|
|
AC_TRY_LINK([
|
|
|
#include <Python.h>
|
|
|
--
|
|
|
-2.17.1
|
|
|
+2.25.1
|
|
|
|