Changeset 535
- Timestamp:
- Aug 21, 2007 2:05:00 PM (14 years ago)
- Location:
- ThirdParty/ASL/stable/1.0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/ASL/stable/1.0/configure
r452 r535 1436 1436 1437 1437 1438 #turn off warnings and pedantic mode since they could make trouble on some platforms, 1439 #and we couldn't fix them anyway 1440 coin_skip_warn_cflags=yes 1441 1438 1442 # Check if user wants to produce debugging code 1439 1443 … … 1583 1587 if test "$enable_doscompile" != no; then 1584 1588 case $build in 1585 *-cygwin* ) ;;1586 *) { { echo "$as_me:$LINENO: error: --enable-doscompile option makes sense only under Cygwin " >&51587 echo "$as_me: error: --enable-doscompile option makes sense only under Cygwin " >&2;}1589 *-cygwin* | *-mingw*) ;; 1590 *) { { echo "$as_me:$LINENO: error: --enable-doscompile option makes sense only under Cygwin or MinGW" >&5 1591 echo "$as_me: error: --enable-doscompile option makes sense only under Cygwin or MinGW" >&2;} 1588 1592 { (exit 1); exit 1; }; } ;; 1589 1593 esac … … 1593 1597 fi; 1594 1598 case "$enable_doscompile" in 1595 msvc|mingw|no) ;; 1599 mingw) 1600 case $build in 1601 *-mingw*) enable_doscompile=no ;; 1602 esac 1603 ;; 1604 msvc|no) ;; 1596 1605 yes) enable_doscompile=mingw ;; 1597 1606 *) { { echo "$as_me:$LINENO: error: Invalid value $enable_doscompile for --enable-doscompile. … … 2543 2552 xlc* | */xlc* | mpxlc* | */mpxlc*) 2544 2553 coin_opt_cflags="-O3 -qarch=auto -qcache=auto -qtune=auto -qmaxmem=-1" 2545 coin_add_cflags="-bmaxdata:0x80000000 "2554 coin_add_cflags="-bmaxdata:0x80000000 -qsuppress=1500-036 -qsuppress=1500-029" 2546 2555 coin_dbg_cflags="-g" 2547 2556 ;; -
ThirdParty/ASL/stable/1.0/configure.ac
r390 r535 39 39 # Get the system type 40 40 AC_CANONICAL_BUILD 41 42 #turn off warnings and pedantic mode since they could make trouble on some platforms, 43 #and we couldn't fix them anyway 44 coin_skip_warn_cflags=yes 41 45 42 46 # Check if user wants to produce debugging code -
ThirdParty/ASL/stable/1.0/get.ASL
r45 r535 1 1 #!/bin/sh 2 2 3 set -e 4 5 wgetcmd=wget 3 6 wgetcount=`which wget 2>/dev/null | wc -w` 4 7 if test ! $wgetcount = 1; then 5 8 echo "Utility wget not found in your PATH." 6 exit -1 9 if test `uname` = Darwin; then 10 wgetcmd=ftp 11 echo "Using ftp command instead." 12 else 13 exit -1 14 fi 7 15 fi 8 16 … … 13 21 rm -f solvers.tar 14 22 echo "Downloading the source code from www.netlib.org..." 15 wgetftp://www.netlib.org/ampl/solvers.tar23 $wgetcmd ftp://www.netlib.org/ampl/solvers.tar 16 24 17 25 echo "Unpacking the source code..."
Note: See TracChangeset
for help on using the changeset viewer.