Difference for ./acinclude.m4 from version 1.2 to 1.3


version 1.2 version 1.3
Line 20
 
Line 20
   
  if test "x$cf_have_python_h" = "xyes" ; then   if test "x$cf_have_python_h" = "xyes" ; then
  PYTHON_LIB=""   PYTHON_LIB=""
  python=`echo $dir | awk -F/ '{print $NF}'`;  
  AC_CHECK_LIB($python, PyArg_ParseTuple,[PYTHON_LIB="-l$python"])                  for lib in python{,2.2,2.1,2.0} ; do
                           AC_CHECK_LIB($lib, PyArg_ParseTuple,[PYTHON_LIB="-l$lib"])
                           if test "x$PYTHON_LIB" != "x" ; then
                                   break
                           fi
                   done
   
  # These checks are a bit bogus - would be better to use AC_CHECK_LIB,   # These checks are a bit bogus - would be better to use AC_CHECK_LIB,
  # but it caches the result of the first check, even if we run AC_CHECK_LIB   # but it caches the result of the first check, even if we run AC_CHECK_LIB
  # with other options.   # with other options.
    python=`echo $dir | awk -F/ '{print $NF}'`;
    if test "x$PYTHON_LIB" = "x"  ; then
  AC_MSG_CHECKING([For python lib in various places])   AC_MSG_CHECKING([For python lib in various places])
  if test -f /usr/lib/$python/lib$python.a ; then   if test -f /usr/lib/$python/lib$python.a ; then
  PYTHON_LIB="/usr/lib/$python/lib$python.a"   PYTHON_LIB="/usr/lib/$python/lib$python.a"
Line 34
 
Line 41
  PYTHON_LIB="/usr/lib/$python/config/lib$python.a"   PYTHON_LIB="/usr/lib/$python/config/lib$python.a"
  AC_MSG_RESULT([found in /usr/lib/$python/config])   AC_MSG_RESULT([found in /usr/lib/$python/config])
  fi   fi
  if test "x$PYTHON_LIB" = "x"  ; then  
  PYTHON_LIB=`echo /usr/lib/python*/config/libpython*.a`  
  if test ! -f $PYTHON_LIB ; then  
      AC_MSG_RESULT([no])  
      PYTHON_LIB=""  
  else  
      AC_MSG_RESULT([yes])  
  fi  
  fi   fi
  if test "x$PYTHON_LIB" != "x"  ; then   if test "x$PYTHON_LIB" != "x"  ; then
  AC_CHECK_LIB(pthread, main,  PY_LIBS="$PY_LIBS -lpthread", , $PY_LIBS )   AC_CHECK_LIB(pthread, main,  PY_LIBS="$PY_LIBS -lpthread", , $PY_LIBS )


Legend:
line(s) removed in v.1.2 
line(s) changed
 line(s) added in v.1.3

File made using version 1.98 of cvs2html by leaf at 2011-07-21 16:53