Changeset 3508
- Timestamp:
- Jun 1, 2015 3:50:14 PM (6 years ago)
- Location:
- ThirdParty/SoPlex/stable/1.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/SoPlex/stable/1.4/Makefile.in
r3264 r3508 509 509 # Files that are generated and should be cleaned with make distclean 510 510 DISTCLEANFILES = $(MAKEOKFILE) $(am__append_5) $(VPATH_DISTCLEANFILES) 511 DocFiles = README AUTHORS LICENSE 511 DocFiles = README AUTHORS LICENSE 512 512 DocInstallDir = $(datadir)/coin/doc/$(PACKAGE_NAME) 513 COIN_HAS_DOXYGEN = @COIN_HAS_DOXYGEN_TRUE@TRUE 514 COIN_HAS_LATEX = @COIN_HAS_LATEX_TRUE@TRUE 513 515 all: config_soplex.h 514 516 $(MAKE) $(AM_MAKEFLAGS) all-am … … 1412 1414 @echo "No test available for SoPlex." 1413 1415 1414 install-doc: $(DocFiles) 1416 doxygen-docs: 1417 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1418 if test -d "doxydoc/"; then \ 1419 doxygen doxydoc/doxygen.conf;\ 1420 fi;\ 1421 fi 1422 1423 pdf-doxygen-docs: doxygen-docs 1424 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1425 if test -d "doxydoc/latex"; then \ 1426 if test "$(COIN_HAS_LATEX)" = TRUE; then \ 1427 cd doxydoc/latex;\ 1428 $(MAKE) pdf;\ 1429 cd -;\ 1430 fi;\ 1431 fi;\ 1432 fi 1433 1434 clean-doxygen-docs: 1435 if test -d "doxydoc/"; then \ 1436 cd doxydoc ;\ 1437 rm -rf html latex *.log *.tag;\ 1438 fi 1439 1440 install-doxygen-docs: doxygen-docs 1441 if test "$(COIN_HAS_DOXYGEN)" = TRUE; then \ 1442 if test -d "doxydoc/"; then \ 1443 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc"; \ 1444 $(INSTALL_DATA) @coin_doxy_tagname@ "$(DESTDIR)$(DocInstallDir)/@coin_doxy_tagname@";\ 1445 if test -f "doxydoc/latex/refman.pdf"; then \ 1446 $(INSTALL_DATA) doxydoc/latex/refman.pdf "$(DESTDIR)$(DocInstallDir)";\ 1447 fi;\ 1448 if test -d "doxydoc/html"; then \ 1449 test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/search/" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)/doxydoc/search/"; \ 1450 $(INSTALL_DATA) doxydoc/html/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc";\ 1451 $(INSTALL_DATA) doxydoc/html/search/*.* "$(DESTDIR)$(DocInstallDir)/doxydoc/search";\ 1452 fi;\ 1453 fi;\ 1454 fi 1455 1456 uninstall-doxygen-docs: 1457 if test -d "$(DESTDIR)$(DocInstallDir)/doxydoc/"; then \ 1458 rm -rf "$(DESTDIR)$(DocInstallDir)/doxydoc/"; \ 1459 fi 1460 if test -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; then \ 1461 rm -f "$(DESTDIR)$(DocInstallDir)/refman.pdf"; \ 1462 fi 1463 1464 all-doxygen-docs: 1465 for dir in $(subdirs) ; do \ 1466 do_project=true;\ 1467 for proj in $(COIN_SKIP_DOXYGEN); do\ 1468 if test $$dir = $$proj; then\ 1469 do_project=false;\ 1470 fi;\ 1471 done;\ 1472 if test -r $$dir/doxydoc & $$do_project = true; then \ 1473 (cd $$dir ; $(MAKE) doxygen-docs) \ 1474 fi ; \ 1475 done ; 1476 1477 clean-all-doxygen-docs: 1478 for dir in $(subdirs) ; do \ 1479 if test -r $$dir/doxydoc ; then \ 1480 (cd $$dir ; $(MAKE) clean-doxygen-docs) \ 1481 fi ; \ 1482 done ; 1483 1484 install-all-doxygen-docs: all-doxygen-docs 1485 for dir in $(subdirs) ; do \ 1486 do_project=true;\ 1487 for proj in $(COIN_SKIP_DOXYGEN); do\ 1488 if test $$dir = $$proj; then\ 1489 do_project=false;\ 1490 fi;\ 1491 done;\ 1492 if test -r $$dir/doxydoc & $$do_project = true; then \ 1493 (cd $$dir ; $(MAKE) install-doxygen-docs) \ 1494 fi ; \ 1495 done ; 1496 1497 uninstall-all-doxygen-docs: 1498 for dir in $(subdirs) ; do \ 1499 if test -r $$dir/doxydoc ; then \ 1500 (cd $$dir ; $(MAKE) uninstall-doxygen-docs) \ 1501 fi ; \ 1502 done ; 1503 1504 install-doc: $(DocFiles) 1415 1505 test -z "$(DocInstallDir)" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)" 1416 1506 for file in $(DocFiles); do \ 1417 1507 if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \ 1418 1508 if test -f "$$dir$$file"; then $(INSTALL_DATA) "$$dir$$file" "$(DESTDIR)$(DocInstallDir)/$$file"; fi; \ 1419 done 1509 done 1420 1510 1421 1511 uninstall-doc: -
ThirdParty/SoPlex/stable/1.4/configure
r3462 r3508 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.59 for ThirdPartySoplex 1.4. 3 # Generated by GNU Autoconf 2.59 for ThirdPartySoplex 1.4.2. 4 4 # 5 5 # Report bugs to <http://projects.coin-or.org/BuildTools/newticket>. … … 430 430 PACKAGE_NAME='ThirdPartySoplex' 431 431 PACKAGE_TARNAME='thirdpartysoplex' 432 PACKAGE_VERSION='1.4 '433 PACKAGE_STRING='ThirdPartySoplex 1.4 '432 PACKAGE_VERSION='1.4.2' 433 PACKAGE_STRING='ThirdPartySoplex 1.4.2' 434 434 PACKAGE_BUGREPORT='http://projects.coin-or.org/BuildTools/newticket' 435 435 … … 1006 1006 # This message is too long to be a string in the A/UX 3.1 sh. 1007 1007 cat <<_ACEOF 1008 \`configure' configures ThirdPartySoplex 1.4 to adapt to many kinds of systems.1008 \`configure' configures ThirdPartySoplex 1.4.2 to adapt to many kinds of systems. 1009 1009 1010 1010 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1072 1072 if test -n "$ac_init_help"; then 1073 1073 case $ac_init_help in 1074 short | recursive ) echo "Configuration of ThirdPartySoplex 1.4 :";;1074 short | recursive ) echo "Configuration of ThirdPartySoplex 1.4.2:";; 1075 1075 esac 1076 1076 cat <<\_ACEOF … … 1243 1243 if $ac_init_version; then 1244 1244 cat <<\_ACEOF 1245 ThirdPartySoplex configure 1.4 1245 ThirdPartySoplex configure 1.4.2 1246 1246 generated by GNU Autoconf 2.59 1247 1247 … … 1263 1263 running configure, to aid debugging if configure makes a mistake. 1264 1264 1265 It was created by ThirdPartySoplex $as_me 1.4 , which was1265 It was created by ThirdPartySoplex $as_me 1.4.2, which was 1266 1266 generated by GNU Autoconf 2.59. Invocation command line was 1267 1267 … … 1722 1722 1723 1723 # Capture libtool library version, if given. 1724 coin_libversion=5:2:4 1724 1725 1725 1726 … … 4706 4707 # Define the identity of the package. 4707 4708 PACKAGE='thirdpartysoplex' 4708 VERSION='1.4 '4709 VERSION='1.4.2' 4709 4710 4710 4711 … … 6002 6003 *-*-irix6*) 6003 6004 # Find out which ABI we are using. 6004 echo '#line 600 4"configure"' > conftest.$ac_ext6005 echo '#line 6005 "configure"' > conftest.$ac_ext 6005 6006 if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 6006 6007 (eval $ac_compile) 2>&5 … … 7136 7137 7137 7138 # Provide some information about the compiler. 7138 echo "$as_me:713 8:" \7139 echo "$as_me:7139:" \ 7139 7140 "checking for Fortran 77 compiler version" >&5 7140 7141 ac_compiler=`set X $ac_compile; echo $2` … … 8203 8204 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8204 8205 -e 's:$: $lt_compiler_flag:'` 8205 (eval echo "\"\$as_me:820 5: $lt_compile\"" >&5)8206 (eval echo "\"\$as_me:8206: $lt_compile\"" >&5) 8206 8207 (eval "$lt_compile" 2>conftest.err) 8207 8208 ac_status=$? 8208 8209 cat conftest.err >&5 8209 echo "$as_me:82 09: \$? = $ac_status" >&58210 echo "$as_me:8210: \$? = $ac_status" >&5 8210 8211 if (exit $ac_status) && test -s "$ac_outfile"; then 8211 8212 # The compiler can only warn and ignore the option if not recognized … … 8471 8472 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8472 8473 -e 's:$: $lt_compiler_flag:'` 8473 (eval echo "\"\$as_me:847 3: $lt_compile\"" >&5)8474 (eval echo "\"\$as_me:8474: $lt_compile\"" >&5) 8474 8475 (eval "$lt_compile" 2>conftest.err) 8475 8476 ac_status=$? 8476 8477 cat conftest.err >&5 8477 echo "$as_me:847 7: \$? = $ac_status" >&58478 echo "$as_me:8478: \$? = $ac_status" >&5 8478 8479 if (exit $ac_status) && test -s "$ac_outfile"; then 8479 8480 # The compiler can only warn and ignore the option if not recognized … … 8575 8576 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 8576 8577 -e 's:$: $lt_compiler_flag:'` 8577 (eval echo "\"\$as_me:857 7: $lt_compile\"" >&5)8578 (eval echo "\"\$as_me:8578: $lt_compile\"" >&5) 8578 8579 (eval "$lt_compile" 2>out/conftest.err) 8579 8580 ac_status=$? 8580 8581 cat out/conftest.err >&5 8581 echo "$as_me:858 1: \$? = $ac_status" >&58582 echo "$as_me:8582: \$? = $ac_status" >&5 8582 8583 if (exit $ac_status) && test -s out/conftest2.$ac_objext 8583 8584 then … … 10920 10921 lt_status=$lt_dlunknown 10921 10922 cat > conftest.$ac_ext <<EOF 10922 #line 1092 2"configure"10923 #line 10923 "configure" 10923 10924 #include "confdefs.h" 10924 10925 … … 11020 11021 lt_status=$lt_dlunknown 11021 11022 cat > conftest.$ac_ext <<EOF 11022 #line 1102 2"configure"11023 #line 11023 "configure" 11023 11024 #include "confdefs.h" 11024 11025 … … 13364 13365 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13365 13366 -e 's:$: $lt_compiler_flag:'` 13366 (eval echo "\"\$as_me:1336 6: $lt_compile\"" >&5)13367 (eval echo "\"\$as_me:13367: $lt_compile\"" >&5) 13367 13368 (eval "$lt_compile" 2>conftest.err) 13368 13369 ac_status=$? 13369 13370 cat conftest.err >&5 13370 echo "$as_me:1337 0: \$? = $ac_status" >&513371 echo "$as_me:13371: \$? = $ac_status" >&5 13371 13372 if (exit $ac_status) && test -s "$ac_outfile"; then 13372 13373 # The compiler can only warn and ignore the option if not recognized … … 13468 13469 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 13469 13470 -e 's:$: $lt_compiler_flag:'` 13470 (eval echo "\"\$as_me:1347 0: $lt_compile\"" >&5)13471 (eval echo "\"\$as_me:13471: $lt_compile\"" >&5) 13471 13472 (eval "$lt_compile" 2>out/conftest.err) 13472 13473 ac_status=$? 13473 13474 cat out/conftest.err >&5 13474 echo "$as_me:1347 4: \$? = $ac_status" >&513475 echo "$as_me:13475: \$? = $ac_status" >&5 13475 13476 if (exit $ac_status) && test -s out/conftest2.$ac_objext 13476 13477 then … … 15038 15039 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15039 15040 -e 's:$: $lt_compiler_flag:'` 15040 (eval echo "\"\$as_me:1504 0: $lt_compile\"" >&5)15041 (eval echo "\"\$as_me:15041: $lt_compile\"" >&5) 15041 15042 (eval "$lt_compile" 2>conftest.err) 15042 15043 ac_status=$? 15043 15044 cat conftest.err >&5 15044 echo "$as_me:1504 4: \$? = $ac_status" >&515045 echo "$as_me:15045: \$? = $ac_status" >&5 15045 15046 if (exit $ac_status) && test -s "$ac_outfile"; then 15046 15047 # The compiler can only warn and ignore the option if not recognized … … 15142 15143 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 15143 15144 -e 's:$: $lt_compiler_flag:'` 15144 (eval echo "\"\$as_me:1514 4: $lt_compile\"" >&5)15145 (eval echo "\"\$as_me:15145: $lt_compile\"" >&5) 15145 15146 (eval "$lt_compile" 2>out/conftest.err) 15146 15147 ac_status=$? 15147 15148 cat out/conftest.err >&5 15148 echo "$as_me:1514 8: \$? = $ac_status" >&515149 echo "$as_me:15149: \$? = $ac_status" >&5 15149 15150 if (exit $ac_status) && test -s out/conftest2.$ac_objext 15150 15151 then … … 17349 17350 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17350 17351 -e 's:$: $lt_compiler_flag:'` 17351 (eval echo "\"\$as_me:1735 1: $lt_compile\"" >&5)17352 (eval echo "\"\$as_me:17352: $lt_compile\"" >&5) 17352 17353 (eval "$lt_compile" 2>conftest.err) 17353 17354 ac_status=$? 17354 17355 cat conftest.err >&5 17355 echo "$as_me:1735 5: \$? = $ac_status" >&517356 echo "$as_me:17356: \$? = $ac_status" >&5 17356 17357 if (exit $ac_status) && test -s "$ac_outfile"; then 17357 17358 # The compiler can only warn and ignore the option if not recognized … … 17617 17618 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17618 17619 -e 's:$: $lt_compiler_flag:'` 17619 (eval echo "\"\$as_me:176 19: $lt_compile\"" >&5)17620 (eval echo "\"\$as_me:17620: $lt_compile\"" >&5) 17620 17621 (eval "$lt_compile" 2>conftest.err) 17621 17622 ac_status=$? 17622 17623 cat conftest.err >&5 17623 echo "$as_me:1762 3: \$? = $ac_status" >&517624 echo "$as_me:17624: \$? = $ac_status" >&5 17624 17625 if (exit $ac_status) && test -s "$ac_outfile"; then 17625 17626 # The compiler can only warn and ignore the option if not recognized … … 17721 17722 -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ 17722 17723 -e 's:$: $lt_compiler_flag:'` 17723 (eval echo "\"\$as_me:1772 3: $lt_compile\"" >&5)17724 (eval echo "\"\$as_me:17724: $lt_compile\"" >&5) 17724 17725 (eval "$lt_compile" 2>out/conftest.err) 17725 17726 ac_status=$? 17726 17727 cat out/conftest.err >&5 17727 echo "$as_me:1772 7: \$? = $ac_status" >&517728 echo "$as_me:17728: \$? = $ac_status" >&5 17728 17729 if (exit $ac_status) && test -s out/conftest2.$ac_objext 17729 17730 then … … 21765 21766 cat >&5 <<_CSEOF 21766 21767 21767 This file was extended by ThirdPartySoplex $as_me 1.4 , which was21768 This file was extended by ThirdPartySoplex $as_me 1.4.2, which was 21768 21769 generated by GNU Autoconf 2.59. Invocation command line was 21769 21770 … … 21828 21829 cat >>$CONFIG_STATUS <<_ACEOF 21829 21830 ac_cs_version="\\ 21830 ThirdPartySoplex config.status 1.4 21831 ThirdPartySoplex config.status 1.4.2 21831 21832 configured by $0, generated by GNU Autoconf 2.59, 21832 21833 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" -
ThirdParty/SoPlex/stable/1.4/configure.ac
r3462 r3508 11 11 AC_PREREQ(2.59) 12 12 13 AC_INIT([ThirdPartySoplex],[1.4 ],[http://projects.coin-or.org/BuildTools/newticket])13 AC_INIT([ThirdPartySoplex],[1.4.2],[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(SoPlex )31 AC_COIN_PROJECTDIR_INIT(SoPlex,5:2:4) 32 32 33 33 #############################################################################
Note: See TracChangeset
for help on using the changeset viewer.