ports/devel/libmpsse/files/patch-configure.ac
Antoine Brodin f7455240e3 Reduce dependency on the python2 metaport
PR:		225752
Submitted by:	Yasuhiro KIMURA
2018-02-19 11:10:43 +00:00

43 lines
1,019 B
Text

--- 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.7)
+ if ! test ${PYEXE}
+ then
+ PYEXE=$(which python)
+ fi
+ fi
+ echo $PYEXE
+
+ if ! test $PYDEV
+ then
+ for INCL in $(python2.7-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