Changeset 1635 for ThirdParty/Glpk/trunk/configure
- Timestamp:
- Jul 22, 2010 6:01:41 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Glpk/trunk/configure
r1627 r1635 473 473 #endif" 474 474 475 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS ADDLIBS PCADDLIBS FADDLIBS ALWAYS_FALSE_TRUE ALWAYS_FALSE_FALSE have_svnversion GLPK_SVN_REV build build_cpu build_vendor build_os CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT MPICC PKG_CONFIG ac_pt_PKG_CONFIG COIN_HAS_PKGCONFIG_TRUE COIN_HAS_PKGCONFIG_FALSE COIN_PKG_CONFIG_PATH EGREP INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT LIBTOOLM4 have_autoconf have_automake have_svn BUILDTOOLSDIR AUX_DIR abs_source_dir abs_lib_dir abs_include_dir abs_bin_dir HAVE_EXTERNALS_TRUE HAVE_EXTERNALS_FALSE host host_cpu host_vendor host_os LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS LT_LDFLAGS glpkmajorver glpkminorver COIN_HAS_ZLIB_TRUE COIN_HAS_ZLIB_FALSE GLPKDIR LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS'475 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS ADDLIBS PCADDLIBS FADDLIBS ALWAYS_FALSE_TRUE ALWAYS_FALSE_FALSE have_svnversion GLPK_SVN_REV build build_cpu build_vendor build_os CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT MPICC PKG_CONFIG ac_pt_PKG_CONFIG COIN_HAS_PKGCONFIG_TRUE COIN_HAS_PKGCONFIG_FALSE COIN_PKG_CONFIG_PATH COIN_PKG_CONFIG_PATH_UNINSTALLED EGREP INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT LIBTOOLM4 have_autoconf have_automake have_svn BUILDTOOLSDIR AUX_DIR abs_source_dir abs_lib_dir abs_include_dir abs_bin_dir HAVE_EXTERNALS_TRUE HAVE_EXTERNALS_FALSE host host_cpu host_vendor host_os LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ac_c_preproc_warn_flag ac_cxx_preproc_warn_flag RPATH_FLAGS LT_LDFLAGS glpkmajorver glpkminorver COIN_HAS_ZLIB_TRUE COIN_HAS_ZLIB_FALSE GLPKDIR LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS' 476 476 ac_subst_files='' 477 477 … … 3303 3303 3304 3304 3305 # assemble search path for pkg-config3305 # assemble pkg-config search path for installed projects 3306 3306 COIN_PKG_CONFIG_PATH="$PKG_CONFIG_PATH" 3307 3307 … … 3326 3326 fi; 3327 3327 3328 3329 3330 # assemble additional pkg-config search paths for uninstalled projects 3328 3331 if test x$coin_projectdir = xyes ; then 3329 3332 # if we are in a project setup, then in a classic setup, we want to find uninstalled projects … … 3331 3334 # unfortunately, if the user set prefix, then we do not know where the project base directory is located 3332 3335 # but it is likely to be either .. (if we are a usual coin project) or ../.. (if we are a unusual coin project like ThirdParty or Data) 3336 COIN_PKG_CONFIG_PATH_UNINSTALLED= 3333 3337 if test -e ../coin_subdirs.txt ; then 3334 3338 for i in `cat ../coin_subdirs.txt` ; do 3335 3339 if test -d ../$i ; then 3336 COIN_PKG_CONFIG_PATH ="`cd ../$i; pwd`:${COIN_PKG_CONFIG_PATH}"3340 COIN_PKG_CONFIG_PATH_UNINSTALLED="`cd ../$i; pwd`:${COIN_PKG_CONFIG_PATH_UNINSTALLED}" 3337 3341 fi 3338 3342 done … … 3342 3346 for i in `cat ../../coin_subdirs.txt` ; do 3343 3347 if test -d ../../$i ; then 3344 COIN_PKG_CONFIG_PATH ="`cd ../../$i; pwd`:${COIN_PKG_CONFIG_PATH}"3348 COIN_PKG_CONFIG_PATH_UNINSTALLED="`cd ../../$i; pwd`:${COIN_PKG_CONFIG_PATH_UNINSTALLED}" 3345 3349 fi 3346 3350 done 3347 3351 fi 3348 3352 3349 fi 3350 3353 3354 fi 3351 3355 3352 3356 … … 4985 4989 *-*-irix6*) 4986 4990 # Find out which ABI we are using. 4987 echo '#line 49 87"configure"' > conftest.$ac_ext4991 echo '#line 4991 "configure"' > conftest.$ac_ext 4988 4992 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4989 4993 (eval $ac_compile) 2>&5 … … 6584 6588 6585 6589 # Provide some information about the compiler. 6586 echo "$as_me:65 86:" \6590 echo "$as_me:6590:" \ 6587 6591 "checking for Fortran 77 compiler version" >&5 6588 6592 ac_compiler=`set X $ac_compile; echo $2` … … 7651 7655 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7652 7656 -e 's:$: $lt_compiler_flag:'` 7653 (eval echo "\"\$as_me:765 3: $lt_compile\"" >&5)7657 (eval echo "\"\$as_me:7657: $lt_compile\"" >&5) 7654 7658 (eval "$lt_compile" 2>conftest.err) 7655 7659 ac_status=$? 7656 7660 cat conftest.err >&5 7657 echo "$as_me:76 57: \$? = $ac_status" >&57661 echo "$as_me:7661: \$? = $ac_status" >&5 7658 7662 if (exit $ac_status) && test -s "$ac_outfile"; then 7659 7663 # The compiler can only warn and ignore the option if not recognized … … 7919 7923 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7920 7924 -e 's:$: $lt_compiler_flag:'` 7921 (eval echo "\"\$as_me:792 1: $lt_compile\"" >&5)7925 (eval echo "\"\$as_me:7925: $lt_compile\"" >&5) 7922 7926 (eval "$lt_compile" 2>conftest.err) 7923 7927 ac_status=$? 7924 7928 cat conftest.err >&5 7925 echo "$as_me:792 5: \$? = $ac_status" >&57929 echo "$as_me:7929: \$? = $ac_status" >&5 7926 7930 if (exit $ac_status) && test -s "$ac_outfile"; then 7927 7931 # The compiler can only warn and ignore the option if not recognized … … 8023 8027 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8024 8028 -e 's:$: $lt_compiler_flag:'` 8025 (eval echo "\"\$as_me:802 5: $lt_compile\"" >&5)8029 (eval echo "\"\$as_me:8029: $lt_compile\"" >&5) 8026 8030 (eval "$lt_compile" 2>out/conftest.err) 8027 8031 ac_status=$? 8028 8032 cat out/conftest.err >&5 8029 echo "$as_me:80 29: \$? = $ac_status" >&58033 echo "$as_me:8033: \$? = $ac_status" >&5 8030 8034 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8031 8035 then … … 10368 10372 lt_status=$lt_dlunknown 10369 10373 cat > conftest.$ac_ext <<EOF 10370 #line 1037 0"configure"10374 #line 10374 "configure" 10371 10375 #include "confdefs.h" 10372 10376 … … 10468 10472 lt_status=$lt_dlunknown 10469 10473 cat > conftest.$ac_ext <<EOF 10470 #line 1047 0"configure"10474 #line 10474 "configure" 10471 10475 #include "confdefs.h" 10472 10476 … … 12812 12816 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12813 12817 -e 's:$: $lt_compiler_flag:'` 12814 (eval echo "\"\$as_me:1281 4: $lt_compile\"" >&5)12818 (eval echo "\"\$as_me:12818: $lt_compile\"" >&5) 12815 12819 (eval "$lt_compile" 2>conftest.err) 12816 12820 ac_status=$? 12817 12821 cat conftest.err >&5 12818 echo "$as_me:128 18: \$? = $ac_status" >&512822 echo "$as_me:12822: \$? = $ac_status" >&5 12819 12823 if (exit $ac_status) && test -s "$ac_outfile"; then 12820 12824 # The compiler can only warn and ignore the option if not recognized … … 12916 12920 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12917 12921 -e 's:$: $lt_compiler_flag:'` 12918 (eval echo "\"\$as_me:129 18: $lt_compile\"" >&5)12922 (eval echo "\"\$as_me:12922: $lt_compile\"" >&5) 12919 12923 (eval "$lt_compile" 2>out/conftest.err) 12920 12924 ac_status=$? 12921 12925 cat out/conftest.err >&5 12922 echo "$as_me:1292 2: \$? = $ac_status" >&512926 echo "$as_me:12926: \$? = $ac_status" >&5 12923 12927 if (exit $ac_status) && test -s out/conftest2.$ac_objext 12924 12928 then … … 14486 14490 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14487 14491 -e 's:$: $lt_compiler_flag:'` 14488 (eval echo "\"\$as_me:144 88: $lt_compile\"" >&5)14492 (eval echo "\"\$as_me:14492: $lt_compile\"" >&5) 14489 14493 (eval "$lt_compile" 2>conftest.err) 14490 14494 ac_status=$? 14491 14495 cat conftest.err >&5 14492 echo "$as_me:1449 2: \$? = $ac_status" >&514496 echo "$as_me:14496: \$? = $ac_status" >&5 14493 14497 if (exit $ac_status) && test -s "$ac_outfile"; then 14494 14498 # The compiler can only warn and ignore the option if not recognized … … 14590 14594 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14591 14595 -e 's:$: $lt_compiler_flag:'` 14592 (eval echo "\"\$as_me:1459 2: $lt_compile\"" >&5)14596 (eval echo "\"\$as_me:14596: $lt_compile\"" >&5) 14593 14597 (eval "$lt_compile" 2>out/conftest.err) 14594 14598 ac_status=$? 14595 14599 cat out/conftest.err >&5 14596 echo "$as_me:14 596: \$? = $ac_status" >&514600 echo "$as_me:14600: \$? = $ac_status" >&5 14597 14601 if (exit $ac_status) && test -s out/conftest2.$ac_objext 14598 14602 then … … 16797 16801 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16798 16802 -e 's:$: $lt_compiler_flag:'` 16799 (eval echo "\"\$as_me:16 799: $lt_compile\"" >&5)16803 (eval echo "\"\$as_me:16803: $lt_compile\"" >&5) 16800 16804 (eval "$lt_compile" 2>conftest.err) 16801 16805 ac_status=$? 16802 16806 cat conftest.err >&5 16803 echo "$as_me:1680 3: \$? = $ac_status" >&516807 echo "$as_me:16807: \$? = $ac_status" >&5 16804 16808 if (exit $ac_status) && test -s "$ac_outfile"; then 16805 16809 # The compiler can only warn and ignore the option if not recognized … … 17065 17069 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17066 17070 -e 's:$: $lt_compiler_flag:'` 17067 (eval echo "\"\$as_me:170 67: $lt_compile\"" >&5)17071 (eval echo "\"\$as_me:17071: $lt_compile\"" >&5) 17068 17072 (eval "$lt_compile" 2>conftest.err) 17069 17073 ac_status=$? 17070 17074 cat conftest.err >&5 17071 echo "$as_me:1707 1: \$? = $ac_status" >&517075 echo "$as_me:17075: \$? = $ac_status" >&5 17072 17076 if (exit $ac_status) && test -s "$ac_outfile"; then 17073 17077 # The compiler can only warn and ignore the option if not recognized … … 17169 17173 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17170 17174 -e 's:$: $lt_compiler_flag:'` 17171 (eval echo "\"\$as_me:1717 1: $lt_compile\"" >&5)17175 (eval echo "\"\$as_me:17175: $lt_compile\"" >&5) 17172 17176 (eval "$lt_compile" 2>out/conftest.err) 17173 17177 ac_status=$? 17174 17178 cat out/conftest.err >&5 17175 echo "$as_me:1717 5: \$? = $ac_status" >&517179 echo "$as_me:17179: \$? = $ac_status" >&5 17176 17180 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17177 17181 then … … 22937 22941 s,@COIN_HAS_PKGCONFIG_FALSE@,$COIN_HAS_PKGCONFIG_FALSE,;t t 22938 22942 s,@COIN_PKG_CONFIG_PATH@,$COIN_PKG_CONFIG_PATH,;t t 22943 s,@COIN_PKG_CONFIG_PATH_UNINSTALLED@,$COIN_PKG_CONFIG_PATH_UNINSTALLED,;t t 22939 22944 s,@EGREP@,$EGREP,;t t 22940 22945 s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
Note: See TracChangeset
for help on using the changeset viewer.