X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=configure.ac;h=388a66840e50f35bc8686e86a21d84f5fded808a;hp=eccbf3c3083d5dc521d16c5b899c6ac746294ff0;hb=916392e2272b82bf39f9b2d4efe90557639e1f0a;hpb=5419153954ee0a2597358b992cc29e448a21ca60 diff --git a/configure.ac b/configure.ac index eccbf3c..388a668 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ # major/minor/release must be numbers m4_define([libguestfs_major], [1]) m4_define([libguestfs_minor], [11]) -m4_define([libguestfs_release], [4]) +m4_define([libguestfs_release], [7]) # extra can be any string m4_define([libguestfs_extra], []) @@ -538,22 +538,13 @@ AS_IF([test "x$enable_python" != "xno"], PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"` AC_MSG_RESULT([$PYTHON_VERSION]) - for d in \ - $PYTHON_PREFIX/include/python$PYTHON_VERSION \ - /usr/include/python$PYTHON_VERSION \ - /usr/local/include/python$PYTHON_VERSION - do - AC_MSG_CHECKING([Python.h in $d]) - if test -r "$d/Python.h"; then - AC_MSG_RESULT([found]) - PYTHON_INCLUDEDIR=$d - break - fi - AC_MSG_RESULT([not found]) - done - if test "x$PYTHON_INCLUDEDIR" = "x"; then - AC_MSG_WARN([Python include directory not found]) + AC_MSG_CHECKING([for Python include path]) + if test -z "$PYTHON_INCLUDEDIR"; then + python_path=`$PYTHON -c "import distutils.sysconfig; \ + print (distutils.sysconfig.get_python_inc ());"` + PYTHON_INCLUDEDIR=$python_path fi + AC_MSG_RESULT([$PYTHON_INCLUDEDIR]) AC_ARG_WITH([python-installdir], [AS_HELP_STRING([--with-python-installdir], @@ -564,24 +555,12 @@ AS_IF([test "x$enable_python" != "xno"], if test "x$PYTHON_INSTALLDIR" = "xcheck"; then PYTHON_INSTALLDIR= - for d in \ - $PYTHON_PREFIX/lib64/python$PYTHON_VERSION/site-packages \ - $PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages \ - /usr/lib64/python$PYTHON_VERSION/site-packages \ - /usr/lib/python$PYTHON_VERSION/site-packages \ - /usr/local/lib/python$PYTHON_VERSION/site-packages - do - AC_MSG_CHECKING([for $d]) - if test -d "$d"; then - AC_MSG_RESULT([found]) - PYTHON_INSTALLDIR=$d - break - fi - AC_MSG_RESULT([not found]) - done - if test "x$PYTHON_INSTALLDIR" = "x"; then - AC_MSG_WARN([Python site-packages directory not found]) + AC_MSG_CHECKING([for Python site-packages path]) + if test -z "$PYTHON_INSTALLDIR"; then + PYTHON_INSTALLDIR=`$PYTHON -c "import distutils.sysconfig; \ + print (distutils.sysconfig.get_python_lib(1,0));"` fi + AC_MSG_RESULT([$PYTHON_INSTALLDIR]) fi old_LIBS="$LIBS" @@ -826,6 +805,7 @@ AC_CONFIG_FILES([Makefile csharp/Makefile debian/changelog df/Makefile + edit/Makefile examples/Makefile fish/Makefile fuse/Makefile