blob: 48a476caa92d21f3caf7c7973c3c572d01deb0d0 (
plain) (
blame)
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
|
--- configure.ac.orig 2015-06-11 12:50:50 UTC
+++ configure.ac
@@ -42,6 +42,31 @@ then
exit 1
fi
+ if ! test $PYEXE
+ then
+ PYEXE=$(which python2)
+ if ! test ${PYEXE}
+ then
+ PYEXE=$(which python)
+ fi
+ fi
+ echo $PYEXE
+
+ if ! test $PYDEV
+ then
+ for INCL in $(python2-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)"
@@ -54,7 +79,7 @@ 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)"
+ PYLIB="$(${PYEXE} pylib.py | grep -e '-packages$' | head -1)"
rm -f pylib.py
fi
|