comparison src/configure.in @ 1681:fe4ebbec775a v7.2b.014

updated for version 7.2b-014
author vimboss
date Thu, 24 Jul 2008 14:24:48 +0000
parents a881e15f44d8
children 81059e8b657d
comparison
equal deleted inserted replaced
1680:0a908b65de1d 1681:fe4ebbec775a
676 676
677 dnl -- we need to examine Python's config/Makefile too 677 dnl -- we need to examine Python's config/Makefile too
678 dnl see what the interpreter is built from 678 dnl see what the interpreter is built from
679 AC_CACHE_VAL(vi_cv_path_python_plibs, 679 AC_CACHE_VAL(vi_cv_path_python_plibs,
680 [ 680 [
681 tmp_mkf="/tmp/Makefile-conf$$" 681 pwd=`pwd`
682 cat ${PYTHON_CONFDIR}/Makefile - <<'eof' >${tmp_mkf} 682 tmp_mkf="$pwd/config-PyMake$$"
683 cat -- "${PYTHON_CONFDIR}/Makefile" - <<'eof' >"${tmp_mkf}"
683 __: 684 __:
684 @echo "python_MODLIBS='$(MODLIBS)'" 685 @echo "python_MODLIBS='$(MODLIBS)'"
685 @echo "python_LIBS='$(LIBS)'" 686 @echo "python_LIBS='$(LIBS)'"
686 @echo "python_SYSLIBS='$(SYSLIBS)'" 687 @echo "python_SYSLIBS='$(SYSLIBS)'"
687 @echo "python_LINKFORSHARED='$(LINKFORSHARED)'" 688 @echo "python_LINKFORSHARED='$(LINKFORSHARED)'"
688 eof 689 eof
689 dnl -- delete the lines from make about Entering/Leaving directory 690 dnl -- delete the lines from make about Entering/Leaving directory
690 eval "`cd ${PYTHON_CONFDIR} && make -f ${tmp_mkf} __ | sed '/ directory /d'`" 691 eval "`cd ${PYTHON_CONFDIR} && make -f "${tmp_mkf}" __ | sed '/ directory /d'`"
691 rm -f ${tmp_mkf} 692 rm -f -- "${tmp_mkf}"
692 if test "x$MACOSX" = "xyes" && ${vi_cv_path_python} -c \ 693 if test "x$MACOSX" = "xyes" && ${vi_cv_path_python} -c \
693 "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then 694 "import sys; sys.exit(${vi_cv_var_python_version} < 2.3)"; then
694 vi_cv_path_python_plibs="-framework Python" 695 vi_cv_path_python_plibs="-framework Python"
695 else 696 else
696 if test "${vi_cv_var_python_version}" = "1.4"; then 697 if test "${vi_cv_var_python_version}" = "1.4"; then