X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=acinclude.m4;h=4ece919bcc32d296ecb815063c685a08d758ec0c;hb=358ee56f81aa18698d0fe7c949995111b051847f;hp=a2a623c4144134e9feed1be92091a02531a9571d;hpb=8fe79ba2f6ea1cb50225d7e9343ec9cd47632cd0;p=vuplus_dvbapp diff --git a/acinclude.m4 b/acinclude.m4 index a2a623c..4ece919 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -248,7 +248,7 @@ AC_SUBST($1_LIBS) AC_DEFUN(_TUXBOX_APPS_LIB_PKGCONFIG_OPTIONAL,[ PKG_CHECK_MODULES($1,$2,$3="yes",$3="no") -if test "x$3" = "xyes"; then +if test "$$3" = "yes"; then AC_DEFINE($3, 1, [$2 available]) else $1_CFLAGS="" @@ -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