blob: 88a04c71ab359135afc45a811fcd98c6f5f2e005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
--- src/configure.ac.orig 2015-03-15 15:48:39.682585072 +0100
+++ src/configure.ac 2015-03-15 15:50:24.530767124 +0100
@@ -42,6 +42,31 @@
exit 1
fi
+ if ! test $PYEXE
+ then
+ PYEXE=$(which python)
+ if ! test ${PYEXE}
+ then
+ PYEXE=$(which python3)
+ fi
+ fi
+ echo $PYEXE
+
+ if ! test $PYDEV
+ then
+ for INCL in $(python-config --includes)
+ do
+ echo $INCL
+ INCL=$(echo "${INCL}" | sed 's:^-I::g')
+ echo $INCL
+ if test -f "${INCL}/Python.h"
+ then
+ PYDEV="${INCL}"
+ break;
+ fi;
+ done
+ fi
+
if ! test $PYDEV
then
PYDEV="/usr/include/python$(python -V 2>&1 | awk '{print $2}' | cut -d'.' -f1,2)"
@@ -53,8 +78,8 @@
then
dnl This is a hack to get a valid python library path
echo "import sys" > pylib.py
- echo "for path in sys.path: print path" >> pylib.py
- PYLIB="$(python pylib.py | grep -e '-packages$' | head -1)"
+ echo "for path in sys.path: print(path)" >> pylib.py
+ PYLIB="$(${PYEXE} pylib.py | grep -e '-packages$' | head -1)"
rm -f pylib.py
fi
|