Changeset 2170
- Timestamp:
- Apr 3, 2011 8:12:50 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Glpk/trunk/configure
r2159 r2170 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 ALWAYS_FALSE_TRUE ALWAYS_FALSE_FALSE have_svnversion GLPK_SVN_REV build build_cpu build_vendor build_os C OIN_CC_IS_CL_TRUE COIN_CC_IS_CL_FALSE CDEFS ADD_CFLAGS DBG_CFLAGS OPT_CFLAGS sol_cc_compiler CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXTMPICC PKG_CONFIG ac_pt_PKG_CONFIG COIN_HAS_PKGCONFIG_TRUE COIN_HAS_PKGCONFIG_FALSE COIN_PKG_CONFIG_PATH COIN_PKG_CONFIG_PATH_UNINSTALLED EGREP LN_S 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 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 GLPK_PCLIBS 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 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 COIN_CC_IS_CL_TRUE COIN_CC_IS_CL_FALSE 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 LN_S 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 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 GLPK_PCLIBS LIBEXT VPATH_DISTCLEANFILES ABSBUILDDIR LIBOBJS LTLIBOBJS' 476 476 ac_subst_files='' 477 477 … … 1930 1930 fi 1931 1931 1932 # add automake conditional so we can recognize cl compiler in makefile1933 coin_cc_is_cl=false1934 if test x"$CXX" != x; then1935 case "$CXX" in1936 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*)1937 coin_cc_is_cl=true1938 ;;1939 esac1940 fi1941 1942 1943 if test $coin_cc_is_cl = true; then1944 COIN_CC_IS_CL_TRUE=1945 COIN_CC_IS_CL_FALSE='#'1946 else1947 COIN_CC_IS_CL_TRUE='#'1948 COIN_CC_IS_CL_FALSE=1949 fi1950 1951 1952 1932 1953 1933 … … 2768 2748 CFLAGS="$save_cflags" 2769 2749 2750 # add automake conditional so we can recognize cl compiler in makefile 2751 coin_cc_is_cl=false 2752 case "$CC" in 2753 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 2754 coin_cc_is_cl=true 2755 ;; 2756 esac 2757 2758 2759 if test $coin_cc_is_cl = true; then 2760 COIN_CC_IS_CL_TRUE= 2761 COIN_CC_IS_CL_FALSE='#' 2762 else 2763 COIN_CC_IS_CL_TRUE='#' 2764 COIN_CC_IS_CL_FALSE= 2765 fi 2766 2767 2770 2768 # Check if a project specific CFLAGS variable has been set 2771 2769 if test x$COIN_PRJCT != x; then … … 5040 5038 *-*-irix6*) 5041 5039 # Find out which ABI we are using. 5042 echo '#line 504 2"configure"' > conftest.$ac_ext5040 echo '#line 5040 "configure"' > conftest.$ac_ext 5043 5041 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5044 5042 (eval $ac_compile) 2>&5 … … 6639 6637 6640 6638 # Provide some information about the compiler. 6641 echo "$as_me:66 41:" \6639 echo "$as_me:6639:" \ 6642 6640 "checking for Fortran 77 compiler version" >&5 6643 6641 ac_compiler=`set X $ac_compile; echo $2` … … 7706 7704 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7707 7705 -e 's:$: $lt_compiler_flag:'` 7708 (eval echo "\"\$as_me:770 8: $lt_compile\"" >&5)7706 (eval echo "\"\$as_me:7706: $lt_compile\"" >&5) 7709 7707 (eval "$lt_compile" 2>conftest.err) 7710 7708 ac_status=$? 7711 7709 cat conftest.err >&5 7712 echo "$as_me:771 2: \$? = $ac_status" >&57710 echo "$as_me:7710: \$? = $ac_status" >&5 7713 7711 if (exit $ac_status) && test -s "$ac_outfile"; then 7714 7712 # The compiler can only warn and ignore the option if not recognized … … 7974 7972 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7975 7973 -e 's:$: $lt_compiler_flag:'` 7976 (eval echo "\"\$as_me:797 6: $lt_compile\"" >&5)7974 (eval echo "\"\$as_me:7974: $lt_compile\"" >&5) 7977 7975 (eval "$lt_compile" 2>conftest.err) 7978 7976 ac_status=$? 7979 7977 cat conftest.err >&5 7980 echo "$as_me:79 80: \$? = $ac_status" >&57978 echo "$as_me:7978: \$? = $ac_status" >&5 7981 7979 if (exit $ac_status) && test -s "$ac_outfile"; then 7982 7980 # The compiler can only warn and ignore the option if not recognized … … 8078 8076 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8079 8077 -e 's:$: $lt_compiler_flag:'` 8080 (eval echo "\"\$as_me:80 80: $lt_compile\"" >&5)8078 (eval echo "\"\$as_me:8078: $lt_compile\"" >&5) 8081 8079 (eval "$lt_compile" 2>out/conftest.err) 8082 8080 ac_status=$? 8083 8081 cat out/conftest.err >&5 8084 echo "$as_me:808 4: \$? = $ac_status" >&58082 echo "$as_me:8082: \$? = $ac_status" >&5 8085 8083 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8086 8084 then … … 10423 10421 lt_status=$lt_dlunknown 10424 10422 cat > conftest.$ac_ext <<EOF 10425 #line 1042 5"configure"10423 #line 10423 "configure" 10426 10424 #include "confdefs.h" 10427 10425 … … 10523 10521 lt_status=$lt_dlunknown 10524 10522 cat > conftest.$ac_ext <<EOF 10525 #line 1052 5"configure"10523 #line 10523 "configure" 10526 10524 #include "confdefs.h" 10527 10525 … … 12867 12865 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12868 12866 -e 's:$: $lt_compiler_flag:'` 12869 (eval echo "\"\$as_me:1286 9: $lt_compile\"" >&5)12867 (eval echo "\"\$as_me:12867: $lt_compile\"" >&5) 12870 12868 (eval "$lt_compile" 2>conftest.err) 12871 12869 ac_status=$? 12872 12870 cat conftest.err >&5 12873 echo "$as_me:1287 3: \$? = $ac_status" >&512871 echo "$as_me:12871: \$? = $ac_status" >&5 12874 12872 if (exit $ac_status) && test -s "$ac_outfile"; then 12875 12873 # The compiler can only warn and ignore the option if not recognized … … 12971 12969 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12972 12970 -e 's:$: $lt_compiler_flag:'` 12973 (eval echo "\"\$as_me:1297 3: $lt_compile\"" >&5)12971 (eval echo "\"\$as_me:12971: $lt_compile\"" >&5) 12974 12972 (eval "$lt_compile" 2>out/conftest.err) 12975 12973 ac_status=$? 12976 12974 cat out/conftest.err >&5 12977 echo "$as_me:1297 7: \$? = $ac_status" >&512975 echo "$as_me:12975: \$? = $ac_status" >&5 12978 12976 if (exit $ac_status) && test -s out/conftest2.$ac_objext 12979 12977 then … … 14541 14539 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14542 14540 -e 's:$: $lt_compiler_flag:'` 14543 (eval echo "\"\$as_me:1454 3: $lt_compile\"" >&5)14541 (eval echo "\"\$as_me:14541: $lt_compile\"" >&5) 14544 14542 (eval "$lt_compile" 2>conftest.err) 14545 14543 ac_status=$? 14546 14544 cat conftest.err >&5 14547 echo "$as_me:1454 7: \$? = $ac_status" >&514545 echo "$as_me:14545: \$? = $ac_status" >&5 14548 14546 if (exit $ac_status) && test -s "$ac_outfile"; then 14549 14547 # The compiler can only warn and ignore the option if not recognized … … 14645 14643 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14646 14644 -e 's:$: $lt_compiler_flag:'` 14647 (eval echo "\"\$as_me:1464 7: $lt_compile\"" >&5)14645 (eval echo "\"\$as_me:14645: $lt_compile\"" >&5) 14648 14646 (eval "$lt_compile" 2>out/conftest.err) 14649 14647 ac_status=$? 14650 14648 cat out/conftest.err >&5 14651 echo "$as_me:146 51: \$? = $ac_status" >&514649 echo "$as_me:14649: \$? = $ac_status" >&5 14652 14650 if (exit $ac_status) && test -s out/conftest2.$ac_objext 14653 14651 then … … 16852 16850 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16853 16851 -e 's:$: $lt_compiler_flag:'` 16854 (eval echo "\"\$as_me:1685 4: $lt_compile\"" >&5)16852 (eval echo "\"\$as_me:16852: $lt_compile\"" >&5) 16855 16853 (eval "$lt_compile" 2>conftest.err) 16856 16854 ac_status=$? 16857 16855 cat conftest.err >&5 16858 echo "$as_me:1685 8: \$? = $ac_status" >&516856 echo "$as_me:16856: \$? = $ac_status" >&5 16859 16857 if (exit $ac_status) && test -s "$ac_outfile"; then 16860 16858 # The compiler can only warn and ignore the option if not recognized … … 17120 17118 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17121 17119 -e 's:$: $lt_compiler_flag:'` 17122 (eval echo "\"\$as_me:1712 2: $lt_compile\"" >&5)17120 (eval echo "\"\$as_me:17120: $lt_compile\"" >&5) 17123 17121 (eval "$lt_compile" 2>conftest.err) 17124 17122 ac_status=$? 17125 17123 cat conftest.err >&5 17126 echo "$as_me:1712 6: \$? = $ac_status" >&517124 echo "$as_me:17124: \$? = $ac_status" >&5 17127 17125 if (exit $ac_status) && test -s "$ac_outfile"; then 17128 17126 # The compiler can only warn and ignore the option if not recognized … … 17224 17222 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17225 17223 -e 's:$: $lt_compiler_flag:'` 17226 (eval echo "\"\$as_me:1722 6: $lt_compile\"" >&5)17224 (eval echo "\"\$as_me:17224: $lt_compile\"" >&5) 17227 17225 (eval "$lt_compile" 2>out/conftest.err) 17228 17226 ac_status=$? 17229 17227 cat out/conftest.err >&5 17230 echo "$as_me:172 30: \$? = $ac_status" >&517228 echo "$as_me:17228: \$? = $ac_status" >&5 17231 17229 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17232 17230 then … … 22980 22978 s,@build_vendor@,$build_vendor,;t t 22981 22979 s,@build_os@,$build_os,;t t 22982 s,@COIN_CC_IS_CL_TRUE@,$COIN_CC_IS_CL_TRUE,;t t22983 s,@COIN_CC_IS_CL_FALSE@,$COIN_CC_IS_CL_FALSE,;t t22984 22980 s,@CDEFS@,$CDEFS,;t t 22985 22981 s,@ADD_CFLAGS@,$ADD_CFLAGS,;t t … … 22994 22990 s,@EXEEXT@,$EXEEXT,;t t 22995 22991 s,@OBJEXT@,$OBJEXT,;t t 22992 s,@COIN_CC_IS_CL_TRUE@,$COIN_CC_IS_CL_TRUE,;t t 22993 s,@COIN_CC_IS_CL_FALSE@,$COIN_CC_IS_CL_FALSE,;t t 22996 22994 s,@MPICC@,$MPICC,;t t 22997 22995 s,@PKG_CONFIG@,$PKG_CONFIG,;t t
Note: See TracChangeset
for help on using the changeset viewer.