Changeset 3493
- Timestamp:
- Jun 1, 2015 3:37:37 PM (6 years ago)
- Location:
- ThirdParty/Glpk/stable/1.10
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/Glpk/stable/1.10/Makefile.in
r3099 r3493 438 438 # Files that are generated and should be cleaned with make distclean 439 439 DISTCLEANFILES = $(MAKEOKFILE) $(am__append_2) $(VPATH_DISTCLEANFILES) 440 DocFiles = README AUTHORS LICENSE 440 DocFiles = README AUTHORS LICENSE 441 441 DocInstallDir = $(datadir)/coin/doc/$(PACKAGE_NAME) 442 COIN_HAS_DOXYGEN = @COIN_HAS_DOXYGEN_TRUE@TRUE 443 COIN_HAS_LATEX = @COIN_HAS_LATEX_TRUE@TRUE 442 444 all: config_glpk.h 443 445 $(MAKE) $(AM_MAKEFLAGS) all-am … … 1910 1912 @echo "No test available for Glpk." 1911 1913 1912 install-doc: $(DocFiles) 1914 doxygen-docs: 1915 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1916 if test -d "doxydoc/"; then \ 1917 doxygen doxydoc/doxygen.conf;\ 1918 fi;\ 1919 fi 1920 1921 pdf-doxygen-docs: doxygen-docs 1922 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1923 if test -d "doxydoc/latex"; then \ 1924 if test "$(COIN_HAS_LATEX)" = TRUE; then \ 1925 cd doxydoc/latex;\ 1926 $(MAKE) pdf;\ 1927 cd -;\ 1928 fi;\ 1929 fi;\ 1930 fi 1931 1932 clean-doxygen-docs: 1933 if test -d "doxydoc/"; then \ 1934 cd doxydoc ;\ 1935 rm -rf html latex *.log *.tag;\ 1936 fi 1937 1938 install-doxygen-docs: doxygen-docs 1939 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1940 if test -d "doxydoc/"; then \ 1941 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc"; \ 1942 $(INSTALL_DATA) @coin_doxy_tagname@ "$(DESTDIR)$(DocInstallDir)/@coin_doxy_tagname@";\ 1943 if test -f "doxydoc/latex/refman.pdf"; then \ 1944 $(INSTALL_DATA) doxydoc/latex/refman.pdf "$(DESTDIR)$(DocInstallDir)";\ 1945 fi;\ 1946 if test -d "doxydoc/html"; then \ 1947 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/search/" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc/search/"; \ 1948 $(INSTALL_DATA) doxydoc/html/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc";\ 1949 $(INSTALL_DATA) doxydoc/html/search/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc/search";\ 1950 fi;\ 1951 fi;\ 1952 fi 1953 1954 uninstall-doxygen-docs: 1955 if test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/"; then \ 1956 rm -rf "$(DESTDIR)$(DocInstallDir)/doxydoc/"; \ 1957 fi 1958 if test -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; then \ 1959 rm -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; \ 1960 fi 1961 1962 all-doxygen-docs: 1963 for dir in $(subdirs) ; do \ 1964 do_project=true;\ 1965 for proj in $(COIN_SKIP_DOXYGEN); do\ 1966 if test $$dir = $$proj; then\ 1967 do_project=false;\ 1968 fi;\ 1969 done;\ 1970 if test -r $$dir/doxydoc & $$do_project = true; then \ 1971 (cd $$dir ; $(MAKE) doxygen-docs) \ 1972 fi ; \ 1973 done ; 1974 1975 clean-all-doxygen-docs: 1976 for dir in $(subdirs) ; do \ 1977 if test -r $$dir/doxydoc ; then \ 1978 (cd $$dir ; $(MAKE) clean-doxygen-docs) \ 1979 fi ; \ 1980 done ; 1981 1982 install-all-doxygen-docs: all-doxygen-docs 1983 for dir in $(subdirs) ; do \ 1984 do_project=true;\ 1985 for proj in $(COIN_SKIP_DOXYGEN); do\ 1986 if test $$dir = $$proj; then\ 1987 do_project=false;\ 1988 fi;\ 1989 done;\ 1990 if test -r $$dir/doxydoc & $$do_project = true; then \ 1991 (cd $$dir ; $(MAKE) install-doxygen-docs) \ 1992 fi ; \ 1993 done ; 1994 1995 uninstall-all-doxygen-docs: 1996 for dir in $(subdirs) ; do \ 1997 if test -r $$dir/doxydoc ; then \ 1998 (cd $$dir ; $(MAKE) uninstall-doxygen-docs) \ 1999 fi ; \ 2000 done ; 2001 2002 install-doc: $(DocFiles) 1913 2003 test -z "$(DocInstallDir)" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)" 1914 2004 for file in $(DocFiles); do \ 1915 2005 if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \ 1916 2006 if test -f "$$dir$$file"; then $(INSTALL_DATA) "$$dir$$file" "$(DESTDIR)$(DocInstallDir)/$$file"; fi; \ 1917 done 2007 done 1918 2008 1919 2009 uninstall-doc: -
ThirdParty/Glpk/stable/1.10/configure
r3447 r3493 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.59 for ThirdPartyGlpk 1.10. 3 # Generated by GNU Autoconf 2.59 for ThirdPartyGlpk 1.10.3. 4 4 # 5 5 # Report bugs to <http://projects.coin-or.org/BuildTools/newticket>. … … 430 430 PACKAGE_NAME='ThirdPartyGlpk' 431 431 PACKAGE_TARNAME='thirdpartyglpk' 432 PACKAGE_VERSION='1.10 '433 PACKAGE_STRING='ThirdPartyGlpk 1.10 '432 PACKAGE_VERSION='1.10.3' 433 PACKAGE_STRING='ThirdPartyGlpk 1.10.3' 434 434 PACKAGE_BUGREPORT='http://projects.coin-or.org/BuildTools/newticket' 435 435 … … 986 986 # This message is too long to be a string in the A/UX 3.1 sh. 987 987 cat <<_ACEOF 988 \`configure' configures ThirdPartyGlpk 1.10 to adapt to many kinds of systems.988 \`configure' configures ThirdPartyGlpk 1.10.3 to adapt to many kinds of systems. 989 989 990 990 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1052 1052 if test -n "$ac_init_help"; then 1053 1053 case $ac_init_help in 1054 short | recursive ) echo "Configuration of ThirdPartyGlpk 1.10 :";;1054 short | recursive ) echo "Configuration of ThirdPartyGlpk 1.10.3:";; 1055 1055 esac 1056 1056 cat <<\_ACEOF … … 1215 1215 if $ac_init_version; then 1216 1216 cat <<\_ACEOF 1217 ThirdPartyGlpk configure 1.10 1217 ThirdPartyGlpk configure 1.10.3 1218 1218 generated by GNU Autoconf 2.59 1219 1219 … … 1235 1235 running configure, to aid debugging if configure makes a mistake. 1236 1236 1237 It was created by ThirdPartyGlpk $as_me 1.10 , which was1237 It was created by ThirdPartyGlpk $as_me 1.10.3, which was 1238 1238 generated by GNU Autoconf 2.59. Invocation command line was 1239 1239 … … 1694 1694 1695 1695 # Capture libtool library version, if given. 1696 coin_libversion=11:3:10 1696 1697 1697 1698 … … 3800 3801 # Define the identity of the package. 3801 3802 PACKAGE='thirdpartyglpk' 3802 VERSION='1.10 '3803 VERSION='1.10.3' 3803 3804 3804 3805 … … 4987 4988 *-*-irix6*) 4988 4989 # Find out which ABI we are using. 4989 echo '#line 49 89"configure"' > conftest.$ac_ext4990 echo '#line 4990 "configure"' > conftest.$ac_ext 4990 4991 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 4991 4992 (eval $ac_compile) 2>&5 … … 6586 6587 6587 6588 # Provide some information about the compiler. 6588 echo "$as_me:658 8:" \6589 echo "$as_me:6589:" \ 6589 6590 "checking for Fortran 77 compiler version" >&5 6590 6591 ac_compiler=`set X $ac_compile; echo $2` … … 7653 7654 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7654 7655 -e 's:$: $lt_compiler_flag:'` 7655 (eval echo "\"\$as_me:765 5: $lt_compile\"" >&5)7656 (eval echo "\"\$as_me:7656: $lt_compile\"" >&5) 7656 7657 (eval "$lt_compile" 2>conftest.err) 7657 7658 ac_status=$? 7658 7659 cat conftest.err >&5 7659 echo "$as_me:76 59: \$? = $ac_status" >&57660 echo "$as_me:7660: \$? = $ac_status" >&5 7660 7661 if (exit $ac_status) && test -s "$ac_outfile"; then 7661 7662 # The compiler can only warn and ignore the option if not recognized … … 7921 7922 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 7922 7923 -e 's:$: $lt_compiler_flag:'` 7923 (eval echo "\"\$as_me:792 3: $lt_compile\"" >&5)7924 (eval echo "\"\$as_me:7924: $lt_compile\"" >&5) 7924 7925 (eval "$lt_compile" 2>conftest.err) 7925 7926 ac_status=$? 7926 7927 cat conftest.err >&5 7927 echo "$as_me:792 7: \$? = $ac_status" >&57928 echo "$as_me:7928: \$? = $ac_status" >&5 7928 7929 if (exit $ac_status) && test -s "$ac_outfile"; then 7929 7930 # The compiler can only warn and ignore the option if not recognized … … 8025 8026 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8026 8027 -e 's:$: $lt_compiler_flag:'` 8027 (eval echo "\"\$as_me:802 7: $lt_compile\"" >&5)8028 (eval echo "\"\$as_me:8028: $lt_compile\"" >&5) 8028 8029 (eval "$lt_compile" 2>out/conftest.err) 8029 8030 ac_status=$? 8030 8031 cat out/conftest.err >&5 8031 echo "$as_me:803 1: \$? = $ac_status" >&58032 echo "$as_me:8032: \$? = $ac_status" >&5 8032 8033 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8033 8034 then … … 10370 10371 lt_status=$lt_dlunknown 10371 10372 cat > conftest.$ac_ext <<EOF 10372 #line 1037 2"configure"10373 #line 10373 "configure" 10373 10374 #include "confdefs.h" 10374 10375 … … 10470 10471 lt_status=$lt_dlunknown 10471 10472 cat > conftest.$ac_ext <<EOF 10472 #line 1047 2"configure"10473 #line 10473 "configure" 10473 10474 #include "confdefs.h" 10474 10475 … … 12814 12815 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12815 12816 -e 's:$: $lt_compiler_flag:'` 12816 (eval echo "\"\$as_me:1281 6: $lt_compile\"" >&5)12817 (eval echo "\"\$as_me:12817: $lt_compile\"" >&5) 12817 12818 (eval "$lt_compile" 2>conftest.err) 12818 12819 ac_status=$? 12819 12820 cat conftest.err >&5 12820 echo "$as_me:1282 0: \$? = $ac_status" >&512821 echo "$as_me:12821: \$? = $ac_status" >&5 12821 12822 if (exit $ac_status) && test -s "$ac_outfile"; then 12822 12823 # The compiler can only warn and ignore the option if not recognized … … 12918 12919 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 12919 12920 -e 's:$: $lt_compiler_flag:'` 12920 (eval echo "\"\$as_me:1292 0: $lt_compile\"" >&5)12921 (eval echo "\"\$as_me:12921: $lt_compile\"" >&5) 12921 12922 (eval "$lt_compile" 2>out/conftest.err) 12922 12923 ac_status=$? 12923 12924 cat out/conftest.err >&5 12924 echo "$as_me:1292 4: \$? = $ac_status" >&512925 echo "$as_me:12925: \$? = $ac_status" >&5 12925 12926 if (exit $ac_status) && test -s out/conftest2.$ac_objext 12926 12927 then … … 14488 14489 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14489 14490 -e 's:$: $lt_compiler_flag:'` 14490 (eval echo "\"\$as_me:1449 0: $lt_compile\"" >&5)14491 (eval echo "\"\$as_me:14491: $lt_compile\"" >&5) 14491 14492 (eval "$lt_compile" 2>conftest.err) 14492 14493 ac_status=$? 14493 14494 cat conftest.err >&5 14494 echo "$as_me:1449 4: \$? = $ac_status" >&514495 echo "$as_me:14495: \$? = $ac_status" >&5 14495 14496 if (exit $ac_status) && test -s "$ac_outfile"; then 14496 14497 # The compiler can only warn and ignore the option if not recognized … … 14592 14593 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 14593 14594 -e 's:$: $lt_compiler_flag:'` 14594 (eval echo "\"\$as_me:1459 4: $lt_compile\"" >&5)14595 (eval echo "\"\$as_me:14595: $lt_compile\"" >&5) 14595 14596 (eval "$lt_compile" 2>out/conftest.err) 14596 14597 ac_status=$? 14597 14598 cat out/conftest.err >&5 14598 echo "$as_me:1459 8: \$? = $ac_status" >&514599 echo "$as_me:14599: \$? = $ac_status" >&5 14599 14600 if (exit $ac_status) && test -s out/conftest2.$ac_objext 14600 14601 then … … 16799 16800 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 16800 16801 -e 's:$: $lt_compiler_flag:'` 16801 (eval echo "\"\$as_me:1680 1: $lt_compile\"" >&5)16802 (eval echo "\"\$as_me:16802: $lt_compile\"" >&5) 16802 16803 (eval "$lt_compile" 2>conftest.err) 16803 16804 ac_status=$? 16804 16805 cat conftest.err >&5 16805 echo "$as_me:1680 5: \$? = $ac_status" >&516806 echo "$as_me:16806: \$? = $ac_status" >&5 16806 16807 if (exit $ac_status) && test -s "$ac_outfile"; then 16807 16808 # The compiler can only warn and ignore the option if not recognized … … 17067 17068 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17068 17069 -e 's:$: $lt_compiler_flag:'` 17069 (eval echo "\"\$as_me:170 69: $lt_compile\"" >&5)17070 (eval echo "\"\$as_me:17070: $lt_compile\"" >&5) 17070 17071 (eval "$lt_compile" 2>conftest.err) 17071 17072 ac_status=$? 17072 17073 cat conftest.err >&5 17073 echo "$as_me:1707 3: \$? = $ac_status" >&517074 echo "$as_me:17074: \$? = $ac_status" >&5 17074 17075 if (exit $ac_status) && test -s "$ac_outfile"; then 17075 17076 # The compiler can only warn and ignore the option if not recognized … … 17171 17172 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17172 17173 -e 's:$: $lt_compiler_flag:'` 17173 (eval echo "\"\$as_me:1717 3: $lt_compile\"" >&5)17174 (eval echo "\"\$as_me:17174: $lt_compile\"" >&5) 17174 17175 (eval "$lt_compile" 2>out/conftest.err) 17175 17176 ac_status=$? 17176 17177 cat out/conftest.err >&5 17177 echo "$as_me:1717 7: \$? = $ac_status" >&517178 echo "$as_me:17178: \$? = $ac_status" >&5 17178 17179 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17179 17180 then … … 22468 22469 cat >&5 <<_CSEOF 22469 22470 22470 This file was extended by ThirdPartyGlpk $as_me 1.10 , which was22471 This file was extended by ThirdPartyGlpk $as_me 1.10.3, which was 22471 22472 generated by GNU Autoconf 2.59. Invocation command line was 22472 22473 … … 22531 22532 cat >>$CONFIG_STATUS <<_ACEOF 22532 22533 ac_cs_version="\\ 22533 ThirdPartyGlpk config.status 1.10 22534 ThirdPartyGlpk config.status 1.10.3 22534 22535 configured by $0, generated by GNU Autoconf 2.59, 22535 22536 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" -
ThirdParty/Glpk/stable/1.10/configure.ac
r3447 r3493 11 11 AC_PREREQ(2.59) 12 12 13 AC_INIT([ThirdPartyGlpk],[1.10 ],[http://projects.coin-or.org/BuildTools/newticket])13 AC_INIT([ThirdPartyGlpk],[1.10.3],[http://projects.coin-or.org/BuildTools/newticket]) 14 14 15 15 AC_COPYRIGHT([ … … 29 29 AC_PREFIX_DEFAULT([`pwd`]) 30 30 31 AC_COIN_PROJECTDIR_INIT(Glpk )31 AC_COIN_PROJECTDIR_INIT(Glpk,11:3:10) 32 32 33 33 #############################################################################
Note: See TracChangeset
for help on using the changeset viewer.