Changeset 2310 for ThirdParty/Glpk/stable/1.8
- Timestamp:
- Jun 19, 2011 10:23:22 AM (10 years ago)
- Location:
- ThirdParty/Glpk/stable/1.8
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Glpk/stable/1.8
- Property svn:mergeinfo changed
/ThirdParty/Glpk/trunk merged: 2081,2118,2149,2159,2170,2218,2248,2266,2297
- Property svn:mergeinfo changed
-
ThirdParty/Glpk/stable/1.8/Makefile.am
r2213 r2310 134 134 135 135 thirdpartyincludedir = $(includedir)/coin/ThirdParty 136 thirdpartyinclude_HEADERS = $(GLPKDIR)/include/glpk.h 136 thirdpartyinclude_HEADERS = $(GLPKDIR)/include/glpk.h $(GLPKDIR)/src/amd/amd.h 137 137 138 138 pkgconfiglibdir = $(libdir)/pkgconfig 139 139 pkgconfiglib_DATA = coinglpk.pc 140 141 if COIN_HAS_PKGCONFIG142 addlibsdir = $(DESTDIR)$(datadir)/coin/doc/ThirdParty/Glpk143 144 install-data-hook:145 @$(mkdir_p) "$(addlibsdir)"146 PKG_CONFIG_PATH=@COIN_PKG_CONFIG_PATH@ \147 $(PKG_CONFIG) --libs coinglpk > $(addlibsdir)/glpk_addlibs.txt148 149 uninstall-hook:150 rm -f $(addlibsdir)/glpk_addlibs.txt151 endif152 140 153 141 test: -
ThirdParty/Glpk/stable/1.8/Makefile.in
r2068 r2310 59 59 $(top_srcdir)/configure config.guess config.sub depcomp \ 60 60 install-sh ltmain.sh missing 61 @HAVE_EXTERNALS_TRUE@am__append_1 = Externals62 @HAVE_EXTERNALS_TRUE@am__append_2 = . Externals-stamp61 @HAVE_EXTERNALS_TRUE@am__append_1 = Dependencies 62 @HAVE_EXTERNALS_TRUE@am__append_2 = .Dependencies-stamp 63 63 subdir = . 64 64 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 400 400 libcoinglpk_la_LDFLAGS = $(LT_LDFLAGS) 401 401 thirdpartyincludedir = $(includedir)/coin/ThirdParty 402 thirdpartyinclude_HEADERS = $(GLPKDIR)/include/glpk.h 402 thirdpartyinclude_HEADERS = $(GLPKDIR)/include/glpk.h $(GLPKDIR)/src/amd/amd.h 403 403 pkgconfiglibdir = $(libdir)/pkgconfig 404 404 pkgconfiglib_DATA = coinglpk.pc 405 @COIN_HAS_PKGCONFIG_TRUE@addlibsdir = $(DESTDIR)$(datadir)/coin/doc/ThirdParty/Glpk406 405 407 406 ######################################################################## … … 1490 1489 $(am__remove_distdir) 1491 1490 mkdir $(distdir) 1492 $(mkdir_p) $(distdir)/$(GLPKDIR)/include $(distdir)/ . $(distdir)/BuildTools1491 $(mkdir_p) $(distdir)/$(GLPKDIR)/include $(distdir)/$(GLPKDIR)/src/amd $(distdir)/. $(distdir)/BuildTools 1493 1492 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 1494 1493 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ … … 1647 1646 @echo "This command is intended for maintainers to use" 1648 1647 @echo "it deletes files that may require special tools to rebuild." 1649 @COIN_HAS_PKGCONFIG_FALSE@install-data-hook:1650 @COIN_HAS_PKGCONFIG_FALSE@uninstall-hook:1651 1648 clean: clean-am 1652 1649 … … 1673 1670 install-data-am: install-pkgconfiglibDATA \ 1674 1671 install-thirdpartyincludeHEADERS 1675 @$(NORMAL_INSTALL)1676 $(MAKE) $(AM_MAKEFLAGS) install-data-hook1677 1672 1678 1673 install-exec-am: install-libLTLIBRARIES … … 1706 1701 uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \ 1707 1702 uninstall-pkgconfiglibDATA uninstall-thirdpartyincludeHEADERS 1708 @$(NORMAL_INSTALL)1709 $(MAKE) $(AM_MAKEFLAGS) uninstall-hook1710 1703 1711 1704 .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ … … 1716 1709 distdir distuninstallcheck dvi dvi-am html html-am info \ 1717 1710 info-am install install-am install-data install-data-am \ 1718 install-data-hook install-exec install-exec-am install-info \ 1719 install-info-am install-libLTLIBRARIES install-man \ 1720 install-pkgconfiglibDATA install-strip \ 1721 install-thirdpartyincludeHEADERS installcheck installcheck-am \ 1722 installdirs maintainer-clean maintainer-clean-generic \ 1723 mostlyclean mostlyclean-compile mostlyclean-generic \ 1724 mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ 1725 uninstall-am uninstall-hook uninstall-info-am \ 1711 install-exec install-exec-am install-info install-info-am \ 1712 install-libLTLIBRARIES install-man install-pkgconfiglibDATA \ 1713 install-strip install-thirdpartyincludeHEADERS installcheck \ 1714 installcheck-am installdirs maintainer-clean \ 1715 maintainer-clean-generic mostlyclean mostlyclean-compile \ 1716 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 1717 tags uninstall uninstall-am uninstall-info-am \ 1726 1718 uninstall-libLTLIBRARIES uninstall-pkgconfiglibDATA \ 1727 1719 uninstall-thirdpartyincludeHEADERS 1728 1720 1729 1721 1730 @COIN_HAS_PKGCONFIG_TRUE@install-data-hook: 1731 @COIN_HAS_PKGCONFIG_TRUE@ @$(mkdir_p) "$(addlibsdir)" 1732 @COIN_HAS_PKGCONFIG_TRUE@ PKG_CONFIG_PATH=@COIN_PKG_CONFIG_PATH@ \ 1733 @COIN_HAS_PKGCONFIG_TRUE@ $(PKG_CONFIG) --libs coinglpk > $(addlibsdir)/glpk_addlibs.txt 1734 1735 @COIN_HAS_PKGCONFIG_TRUE@uninstall-hook: 1736 @COIN_HAS_PKGCONFIG_TRUE@ rm -f $(addlibsdir)/glpk_addlibs.txt 1737 1738 test: $(libampl) 1722 test: 1739 1723 @echo "No test available for Glpk." 1740 1724 … … 1778 1762 @MAINTAINER_MODE_TRUE@ cp $< $@ 1779 1763 1780 # Take care of updating externals (if Externals file exists)1781 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@$(top_builddir)/Makefile: . Externals-stamp1782 1783 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@. Externals-stamp: $(srcdir)/Externals1784 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@ cd $(srcdir); svn propset svn:externals -F Externals .1785 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@ touch . Externals-stamp1786 1787 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@update-externals: . Externals-stamp1764 # Take care of updating externals (if Dependencies file exists) 1765 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@$(top_builddir)/Makefile: .Dependencies-stamp 1766 1767 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@.Dependencies-stamp: $(srcdir)/Dependencies 1768 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@ cd $(srcdir); BuildTools/set_externals Dependencies 1769 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@ touch .Dependencies-stamp 1770 1771 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@update-externals: .Dependencies-stamp 1788 1772 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@ cd $(srcdir); svn update 1789 1773 -
ThirdParty/Glpk/stable/1.8/coinglpk-uninstalled.pc.in
r2068 r2310 7 7 Version: @glpkmajorver@.@glpkminorver@ 8 8 Libs: ${libdir}/libcoinglpk.la @GLPK_PCLIBS@ 9 Cflags: -I@ABSBUILDDIR@ -I@abs_source_dir@/glpk/include 9 Cflags: -I@ABSBUILDDIR@ -I@abs_source_dir@/glpk/include -I@abs_source_dir@/glpk/src/amd -
ThirdParty/Glpk/stable/1.8/config_glpk.h.in
r1585 r2310 15 15 /* Version number of project */ 16 16 #undef GLPK_VERSION 17 18 /* Major Version number of project */ 19 #undef GLPK_VERSION_MAJOR 20 21 /* Minor Version number of project */ 22 #undef GLPK_VERSION_MINOR 23 24 /* Release Version number of project */ 25 #undef GLPK_VERSION_RELEASE 17 26 18 27 /* Define to 1 if dlfcn support is available */ -
ThirdParty/Glpk/stable/1.8/configure
r2068 r2310 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 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_SECHO 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 … … 1060 1060 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1061 1061 --enable-debug compile all projects with debug options tests 1062 --enable-debug-glpk compile this project (Glpk) with debug options 1062 (implies --disable-shared) 1063 --enable-debug-glpk compile project Glpk with debug compiler flags 1063 1064 --enable-doscompile Under Cygwin, compile so that executables run under 1064 1065 DOS. Set to mingw to use gcc/g++/ld with … … 1066 1067 icl/link). Default when mentioned: mingw. Default 1067 1068 when not mentioned: disabled. 1068 -- enable-pkg-config use pkg-config if available (default is yes)1069 --disable-pkg-config disable use of pkg-config (if available) 1069 1070 --enable-static[=PKGS] 1070 1071 build static libraries [default=no] … … 1604 1605 coin_projectdir=yes 1605 1606 1606 # Set the project's version number 1607 if test "xGlpk" != x; then 1607 # Set the project's version numbers 1608 1608 1609 1609 1610 cat >>confdefs.h <<_ACEOF … … 1611 1612 _ACEOF 1612 1613 1613 fi 1614 1615 # Set the project's SVN revision number. The complicated sed expression 1616 # (made worse by quadrigraphs) ensures that things like 4123:4168MS end up 1617 # as a single number. 1618 # Extract the first word of "svnversion", so it can be a program name with args. 1614 1615 coin_majorver=`echo $PACKAGE_VERSION | sed -n -e 's/^\([0-9]*\).*/\1/gp'` 1616 coin_minorver=`echo $PACKAGE_VERSION | sed -n -e 's/^[0-9]*\.\([0-9]*\).*/\1/gp'` 1617 coin_releasever=`echo $PACKAGE_VERSION | sed -n -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\).*/\1/gp'` 1618 if test "x$coin_majorver" = x ; then coin_majorver=9999 ; fi 1619 if test "x$coin_minorver" = x ; then coin_minorver=9999 ; fi 1620 if test "x$coin_releasever" = x ; then coin_releasever=9999 ; fi 1621 1622 cat >>confdefs.h <<_ACEOF 1623 #define GLPK_VERSION_MAJOR $coin_majorver 1624 _ACEOF 1625 1626 1627 cat >>confdefs.h <<_ACEOF 1628 #define GLPK_VERSION_MINOR $coin_minorver 1629 _ACEOF 1630 1631 1632 cat >>confdefs.h <<_ACEOF 1633 #define GLPK_VERSION_RELEASE $coin_releasever 1634 _ACEOF 1635 1636 1637 # We use the following variable to have a string with the upper case 1638 # version of the project name 1639 COIN_PRJCT=GLPK 1640 1641 # Set the project's SVN revision number. The complicated sed expression 1642 # (made worse by quadrigraphs) ensures that things like 4123:4168MS end up 1643 # as a single number. 1644 # Extract the first word of "svnversion", so it can be a program name with args. 1619 1645 set dummy svnversion; ac_word=$2 1620 1646 echo "$as_me:$LINENO: checking for $ac_word" >&5 … … 1652 1678 fi 1653 1679 1654 if test "x$have_svnversion" = xyes && test "xGlpk" != x; then1655 1656 svn_rev_tmp=`cd $srcdir/$coin_has_glpk ; svnversion`1657 GLPK_SVN_REV=`echo $svn_rev_tmp | sed -n -e 's/^[0-9]*://' -e 's/\([0-9]\)[^0-9]*$/\1/p'`1658 if test $GLPK_SVN_REV != exported; then1680 if test "x$have_svnversion" = xyes; then 1681 1682 svn_rev_tmp=`LANG=en_EN svnversion $srcdir 2>/dev/null` 1683 if test "x$svn_rev_tmp" != xexported -a "x$svn_rev_tmp" != x; then 1684 GLPK_SVN_REV=`echo $svn_rev_tmp | sed -n -e 's/^[0-9]*://' -e 's/\([0-9]\)[^0-9]*$/\1/p'` 1659 1685 1660 1686 cat >>confdefs.h <<_ACEOF … … 1662 1688 _ACEOF 1663 1689 1690 fi 1664 1691 fi 1665 fi 1692 1693 1666 1694 1667 1695 # Capture libtool library version, if given. 1696 1668 1697 1669 1698 … … 1766 1795 case "${enableval}" in 1767 1796 yes) coin_debug_compile=true 1768 enable_shared=no1769 1797 ;; 1770 1798 no) coin_debug_compile=false … … 1821 1849 #define COIN_GLPK_CHECKLEVEL $coin_glpk_checklevel 1822 1850 _ACEOF 1823 1824 1825 # We use the following variable to have a string with the upper case1826 # version of the project name1827 COIN_PRJCT=GLPK1828 1851 1829 1852 … … 1906 1929 esac 1907 1930 fi 1908 1909 # add automake conditional so we can recognize cl compiler in makefile1910 coin_cc_is_cl=false1911 if test x"$CXX" != x; then1912 case "$CXX" in1913 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*)1914 coin_cc_is_cl=true1915 ;;1916 esac1917 fi1918 1919 1920 if test $coin_cc_is_cl = true; then1921 COIN_CC_IS_CL_TRUE=1922 COIN_CC_IS_CL_FALSE='#'1923 else1924 COIN_CC_IS_CL_TRUE='#'1925 COIN_CC_IS_CL_FALSE=1926 fi1927 1928 1931 1929 1932 … … 2745 2748 CFLAGS="$save_cflags" 2746 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 2747 2768 # Check if a project specific CFLAGS variable has been set 2748 2769 if test x$COIN_PRJCT != x; then … … 2767 2788 coin_opt_cflags="-O3" 2768 2789 coin_add_cflags="-pipe" 2769 coin_dbg_cflags="-g "2770 coin_warn_cflags="-Wimplicit -Wparentheses -Wsequence-point -Wreturn-type -Wcast-qual -Wall -Wno-unknown-pragmas "2790 coin_dbg_cflags="-g -O0" 2791 coin_warn_cflags="-Wimplicit -Wparentheses -Wsequence-point -Wreturn-type -Wcast-qual -Wall -Wno-unknown-pragmas -Wno-long-long" 2771 2792 case $build in 2772 2793 *-darwin*) … … 3033 3054 esac 3034 3055 3056 # add -DPROJECT_BUILD to signal compiler preprocessor which config header file to include 3057 if test x$COIN_PRJCT != x; then 3058 CFLAGS="$CFLAGS -D${COIN_PRJCT}_BUILD" 3059 fi 3060 3035 3061 # Try if CFLAGS works 3036 3062 save_CFLAGS="$CFLAGS" … … 3278 3304 fi 3279 3305 if test -n "$PKG_CONFIG"; then 3280 _pkg_min_version=0. 9.03306 _pkg_min_version=0.16.0 3281 3307 echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 3282 3308 echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6 … … 3319 3345 # unfortunately, ${libdir} expands to ${exec_prefix}/lib and ${exec_prefix} to ${prefix}... 3320 3346 if test "x${prefix}" = xNONE ; then 3321 COIN_PKG_CONFIG_PATH="${ac_default_prefix}/lib/pkgconfig:${ COIN_PKG_CONFIG_PATH}"3322 else 3323 COIN_PKG_CONFIG_PATH="${prefix}/lib/pkgconfig:${ COIN_PKG_CONFIG_PATH}"3347 COIN_PKG_CONFIG_PATH="${ac_default_prefix}/lib/pkgconfig:${ac_default_prefix}/share/pkgconfig:${COIN_PKG_CONFIG_PATH}" 3348 else 3349 COIN_PKG_CONFIG_PATH="${prefix}/lib/pkgconfig:${prefix}/share/pkgconfig:${COIN_PKG_CONFIG_PATH}" 3324 3350 fi 3325 3351 … … 3333 3359 { (exit 1); exit 1; }; } 3334 3360 fi 3335 COIN_PKG_CONFIG_PATH="$withval/lib/pkgconfig:$ {COIN_PKG_CONFIG_PATH}"3361 COIN_PKG_CONFIG_PATH="$withval/lib/pkgconfig:$withval/share/pkgconfig:${COIN_PKG_CONFIG_PATH}" 3336 3362 3337 3363 fi; … … 3369 3395 3370 3396 3397 fi 3398 3399 if test -n "$PKG_CONFIG" && test x$coin_cc_is_cl = xtrue; then 3400 { echo "$as_me:$LINENO: WARNING: Using pkg-config together with MS or Intel Compiler on Windows is not support by example Makefiles. Consider using --disable-pkg-config." >&5 3401 echo "$as_me: WARNING: Using pkg-config together with MS or Intel Compiler on Windows is not support by example Makefiles. Consider using --disable-pkg-config." >&2;} 3371 3402 fi 3372 3403 … … 3461 3492 EGREP=$ac_cv_prog_egrep 3462 3493 3494 3495 echo "$as_me:$LINENO: checking whether ln -s works" >&5 3496 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 3497 LN_S=$as_ln_s 3498 if test "$LN_S" = "ln -s"; then 3499 echo "$as_me:$LINENO: result: yes" >&5 3500 echo "${ECHO_T}yes" >&6 3501 else 3502 echo "$as_me:$LINENO: result: no, using $LN_S" >&5 3503 echo "${ECHO_T}no, using $LN_S" >&6 3504 fi 3463 3505 3464 3506 am__api_version="1.9" … … 3791 3833 3792 3834 3835 3793 3836 # AC_MSG_NOTICE([Beginning automake initialisation.]) 3794 3837 # Stuff for automake … … 4324 4367 4325 4368 4326 # Check if we have an Externals file4327 if test -r $srcdir/ Externals; then4369 # Check if we have an Dependencies file 4370 if test -r $srcdir/Dependencies; then 4328 4371 coin_have_externals=yes 4329 4372 fi … … 4398 4441 { { echo "$as_me:$LINENO: error: Cannot find the BuildTools directory" >&5 4399 4442 echo "$as_me: error: Cannot find the BuildTools directory" >&2;} 4400 { (exit 1); exit 1; }; }4443 { (exit better disable maintainer mode.); exit better disable maintainer mode.; }; } 4401 4444 fi 4402 4445 fi 4403 4446 fi 4404 4447 4448 4449 # for running automake by make, we need to have Makemain.inc available at the place where it usually can be found during run_autotools 4450 if test "$BUILDTOOLSDIR" != "$srcdir/BuildTools" ; then 4451 $LN_S `cd $BUILDTOOLSDIR; pwd` "$srcdir/BuildTools" 4452 fi 4405 4453 4406 4454 # The following variable is set to the name of the directory where … … 4770 4818 NM="$lt_cv_path_NM" 4771 4819 4772 echo "$as_me:$LINENO: checking whether ln -s works" >&54773 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&64774 LN_S=$as_ln_s4775 if test "$LN_S" = "ln -s"; then4776 echo "$as_me:$LINENO: result: yes" >&54777 echo "${ECHO_T}yes" >&64778 else4779 echo "$as_me:$LINENO: result: no, using $LN_S" >&54780 echo "${ECHO_T}no, using $LN_S" >&64781 fi4782 4783 4820 echo "$as_me:$LINENO: checking how to recognise dependent libraries" >&5 4784 4821 echo $ECHO_N "checking how to recognise dependent libraries... $ECHO_C" >&6 … … 5006 5043 *-*-irix6*) 5007 5044 # Find out which ABI we are using. 5008 echo '#line 50 08"configure"' > conftest.$ac_ext5045 echo '#line 5045 "configure"' > conftest.$ac_ext 5009 5046 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 5010 5047 (eval $ac_compile) 2>&5 … … 6605 6642 6606 6643 # Provide some information about the compiler. 6607 echo "$as_me:66 07:" \6644 echo "$as_me:6644:" \ 6608 6645 "checking for Fortran 77 compiler version" >&5 6609 6646 ac_compiler=`set X $ac_compile; echo $2` … … 7672 7709 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7673 7710 -e 's:$: $lt_compiler_flag:'` 7674 (eval echo "\"\$as_me:7 674: $lt_compile\"" >&5)7711 (eval echo "\"\$as_me:7711: $lt_compile\"" >&5) 7675 7712 (eval "$lt_compile" 2>conftest.err) 7676 7713 ac_status=$? 7677 7714 cat conftest.err >&5 7678 echo "$as_me:7 678: \$? = $ac_status" >&57715 echo "$as_me:7715: \$? = $ac_status" >&5 7679 7716 if (exit $ac_status) && test -s "$ac_outfile"; then 7680 7717 # The compiler can only warn and ignore the option if not recognized … … 7940 7977 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7941 7978 -e 's:$: $lt_compiler_flag:'` 7942 (eval echo "\"\$as_me:79 42: $lt_compile\"" >&5)7979 (eval echo "\"\$as_me:7979: $lt_compile\"" >&5) 7943 7980 (eval "$lt_compile" 2>conftest.err) 7944 7981 ac_status=$? 7945 7982 cat conftest.err >&5 7946 echo "$as_me:79 46: \$? = $ac_status" >&57983 echo "$as_me:7983: \$? = $ac_status" >&5 7947 7984 if (exit $ac_status) && test -s "$ac_outfile"; then 7948 7985 # The compiler can only warn and ignore the option if not recognized … … 8044 8081 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8045 8082 -e 's:$: $lt_compiler_flag:'` 8046 (eval echo "\"\$as_me:80 46: $lt_compile\"" >&5)8083 (eval echo "\"\$as_me:8083: $lt_compile\"" >&5) 8047 8084 (eval "$lt_compile" 2>out/conftest.err) 8048 8085 ac_status=$? 8049 8086 cat out/conftest.err >&5 8050 echo "$as_me:80 50: \$? = $ac_status" >&58087 echo "$as_me:8087: \$? = $ac_status" >&5 8051 8088 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8052 8089 then … … 10389 10426 lt_status=$lt_dlunknown 10390 10427 cat > conftest.$ac_ext <<EOF 10391 #line 10 391"configure"10428 #line 10428 "configure" 10392 10429 #include "confdefs.h" 10393 10430 … … 10489 10526 lt_status=$lt_dlunknown 10490 10527 cat > conftest.$ac_ext <<EOF 10491 #line 10 491"configure"10528 #line 10528 "configure" 10492 10529 #include "confdefs.h" 10493 10530 … … 12833 12870 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12834 12871 -e 's:$: $lt_compiler_flag:'` 12835 (eval echo "\"\$as_me:128 35: $lt_compile\"" >&5)12872 (eval echo "\"\$as_me:12872: $lt_compile\"" >&5) 12836 12873 (eval "$lt_compile" 2>conftest.err) 12837 12874 ac_status=$? 12838 12875 cat conftest.err >&5 12839 echo "$as_me:128 39: \$? = $ac_status" >&512876 echo "$as_me:12876: \$? = $ac_status" >&5 12840 12877 if (exit $ac_status) && test -s "$ac_outfile"; then 12841 12878 # The compiler can only warn and ignore the option if not recognized … … 12937 12974 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12938 12975 -e 's:$: $lt_compiler_flag:'` 12939 (eval echo "\"\$as_me:129 39: $lt_compile\"" >&5)12976 (eval echo "\"\$as_me:12976: $lt_compile\"" >&5) 12940 12977 (eval "$lt_compile" 2>out/conftest.err) 12941 12978 ac_status=$? 12942 12979 cat out/conftest.err >&5 12943 echo "$as_me:129 43: \$? = $ac_status" >&512980 echo "$as_me:12980: \$? = $ac_status" >&5 12944 12981 if (exit $ac_status) && test -s out/conftest2.$ac_objext 12945 12982 then … … 14507 14544 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14508 14545 -e 's:$: $lt_compiler_flag:'` 14509 (eval echo "\"\$as_me:145 09: $lt_compile\"" >&5)14546 (eval echo "\"\$as_me:14546: $lt_compile\"" >&5) 14510 14547 (eval "$lt_compile" 2>conftest.err) 14511 14548 ac_status=$? 14512 14549 cat conftest.err >&5 14513 echo "$as_me:145 13: \$? = $ac_status" >&514550 echo "$as_me:14550: \$? = $ac_status" >&5 14514 14551 if (exit $ac_status) && test -s "$ac_outfile"; then 14515 14552 # The compiler can only warn and ignore the option if not recognized … … 14611 14648 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14612 14649 -e 's:$: $lt_compiler_flag:'` 14613 (eval echo "\"\$as_me:146 13: $lt_compile\"" >&5)14650 (eval echo "\"\$as_me:14650: $lt_compile\"" >&5) 14614 14651 (eval "$lt_compile" 2>out/conftest.err) 14615 14652 ac_status=$? 14616 14653 cat out/conftest.err >&5 14617 echo "$as_me:146 17: \$? = $ac_status" >&514654 echo "$as_me:14654: \$? = $ac_status" >&5 14618 14655 if (exit $ac_status) && test -s out/conftest2.$ac_objext 14619 14656 then … … 16818 16855 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16819 16856 -e 's:$: $lt_compiler_flag:'` 16820 (eval echo "\"\$as_me:168 20: $lt_compile\"" >&5)16857 (eval echo "\"\$as_me:16857: $lt_compile\"" >&5) 16821 16858 (eval "$lt_compile" 2>conftest.err) 16822 16859 ac_status=$? 16823 16860 cat conftest.err >&5 16824 echo "$as_me:168 24: \$? = $ac_status" >&516861 echo "$as_me:16861: \$? = $ac_status" >&5 16825 16862 if (exit $ac_status) && test -s "$ac_outfile"; then 16826 16863 # The compiler can only warn and ignore the option if not recognized … … 17086 17123 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17087 17124 -e 's:$: $lt_compiler_flag:'` 17088 (eval echo "\"\$as_me:17 088: $lt_compile\"" >&5)17125 (eval echo "\"\$as_me:17125: $lt_compile\"" >&5) 17089 17126 (eval "$lt_compile" 2>conftest.err) 17090 17127 ac_status=$? 17091 17128 cat conftest.err >&5 17092 echo "$as_me:17 092: \$? = $ac_status" >&517129 echo "$as_me:17129: \$? = $ac_status" >&5 17093 17130 if (exit $ac_status) && test -s "$ac_outfile"; then 17094 17131 # The compiler can only warn and ignore the option if not recognized … … 17190 17227 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17191 17228 -e 's:$: $lt_compiler_flag:'` 17192 (eval echo "\"\$as_me:17 192: $lt_compile\"" >&5)17229 (eval echo "\"\$as_me:17229: $lt_compile\"" >&5) 17193 17230 (eval "$lt_compile" 2>out/conftest.err) 17194 17231 ac_status=$? 17195 17232 cat out/conftest.err >&5 17196 echo "$as_me:17 196: \$? = $ac_status" >&517233 echo "$as_me:17233: \$? = $ac_status" >&5 17197 17234 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17198 17235 then … … 22250 22287 fi 22251 22288 22289 # On AIX, the default sed cannot deal with somewhat long sed commands executed by config.status. 22290 # So we reduce the hardcoded number of commands given to sed from 48 to 5 in config.status, hoping this will suffice. 22291 22292 22252 22293 cat >confcache <<\_ACEOF 22253 22294 # This file is a shell script that caches the results of configure … … 22946 22987 s,@build_vendor@,$build_vendor,;t t 22947 22988 s,@build_os@,$build_os,;t t 22948 s,@COIN_CC_IS_CL_TRUE@,$COIN_CC_IS_CL_TRUE,;t t22949 s,@COIN_CC_IS_CL_FALSE@,$COIN_CC_IS_CL_FALSE,;t t22950 22989 s,@CDEFS@,$CDEFS,;t t 22951 22990 s,@ADD_CFLAGS@,$ADD_CFLAGS,;t t … … 22960 22999 s,@EXEEXT@,$EXEEXT,;t t 22961 23000 s,@OBJEXT@,$OBJEXT,;t t 23001 s,@COIN_CC_IS_CL_TRUE@,$COIN_CC_IS_CL_TRUE,;t t 23002 s,@COIN_CC_IS_CL_FALSE@,$COIN_CC_IS_CL_FALSE,;t t 22962 23003 s,@MPICC@,$MPICC,;t t 22963 23004 s,@PKG_CONFIG@,$PKG_CONFIG,;t t … … 22968 23009 s,@COIN_PKG_CONFIG_PATH_UNINSTALLED@,$COIN_PKG_CONFIG_PATH_UNINSTALLED,;t t 22969 23010 s,@EGREP@,$EGREP,;t t 23011 s,@LN_S@,$LN_S,;t t 22970 23012 s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t 22971 23013 s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t … … 23018 23060 s,@host_vendor@,$host_vendor,;t t 23019 23061 s,@host_os@,$host_os,;t t 23020 s,@LN_S@,$LN_S,;t t23021 23062 s,@ECHO@,$ECHO,;t t 23022 23063 s,@AR@,$AR,;t t … … 23745 23786 23746 23787 23788 case $build in 23789 *-aix*) 23790 { echo "$as_me:$LINENO: patching config.status to reduce ac_max_sed_lines to 5" >&5 23791 echo "$as_me: patching config.status to reduce ac_max_sed_lines to 5" >&6;} 23792 sed -e 's/ac_max_sed_lines=48/ac_max_sed_lines=5/g' config.status > config.status.tmp 23793 mv config.status.tmp config.status 23794 ;; 23795 esac 23796 23797 23747 23798 # configure is writing to config.log, and then calls config.status. 23748 23799 # config.status does its own redirection, appending to config.log. … … 23821 23872 fi 23822 23873 23874 { echo "$as_me:$LINENO: In case of trouble, first consult the troubleshooting page at https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting" >&5 23875 echo "$as_me: In case of trouble, first consult the troubleshooting page at https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting" >&6;} 23823 23876 if test x$coin_projectdir = xyes; then 23824 23877 { echo "$as_me:$LINENO: Configuration of $PACKAGE_NAME successful" >&5
Note: See TracChangeset
for help on using the changeset viewer.