X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/df88846fa78ebe40f935e0486462af0fc0ea81e9..eee6103aa3a4b36d0ace8e33b56dd9bfa06bf1b7:/acinclude.m4 diff --git a/acinclude.m4 b/acinclude.m4 index 8999c441..4ece919b 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -247,7 +247,7 @@ AC_SUBST($1_LIBS) ]) AC_DEFUN(_TUXBOX_APPS_LIB_PKGCONFIG_OPTIONAL,[ -PKG_CHECK_MODULES($1,$2,$3="no",$3="yes") +PKG_CHECK_MODULES($1,$2,$3="yes",$3="no") if test "$$3" = "yes"; then AC_DEFINE($3, 1, [$2 available]) else @@ -410,7 +410,10 @@ AC_DEFUN([AC_PYTHON_DEVEL],[ # Check for Python include path AC_MSG_CHECKING([for Python include path]) - python_path=`echo $PYTHON | sed "s,/bin.*$,,"` + # FIXME: + # we hardcode for i686 host and mipsel target here. + # the whole thing is broken. fix this. + python_path=`echo $PYTHON | sed "s,/bin.*$,," | sed "s,i686,mipsel,"` for i in "$python_path/include/python$PYTHON_VERSION/" "$python_path/include/python/" "$python_path/" ; do python_path=`find $i -type f -name Python.h -print | sed "1q"` if test -n "$python_path" ; then