- Timestamp:
- Dec 5, 2010 3:44:57 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cbc/configure
r1547 r1548 20878 20878 echo "$as_me:$LINENO: result: yes: $COINDEPEND_VERSIONS" >&5 20879 20879 echo "${ECHO_T}yes: $COINDEPEND_VERSIONS" >&6 20880 CBCLIB_PCREQUIRES="cgl osi coinutils $CBCLIB_PCREQUIRES" 20881 CBCGENERIC_PCREQUIRES="cgl osi coinutils $CBCGENERIC_PCREQUIRES" 20880 20881 # adjust linker flags for (i)cl compiler 20882 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 20883 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 20884 then 20885 COINDEPEND_LIBS=`echo " $COINDEPEND_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 20886 fi 20887 20888 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in CbcLib CbcGeneric 20889 20890 CBCLIB_PCREQUIRES="cgl osi coinutils $CBCLIB_PCREQUIRES" 20891 CBCLIB_CFLAGS="$COINDEPEND_CFLAGS $CBCLIB_CFLAGS" 20892 CBCLIB_LIBS="$COINDEPEND_LIBS $CBCLIB_LIBS" 20893 20894 CBCGENERIC_PCREQUIRES="cgl osi coinutils $CBCGENERIC_PCREQUIRES" 20895 CBCGENERIC_CFLAGS="$COINDEPEND_CFLAGS $CBCGENERIC_CFLAGS" 20896 CBCGENERIC_LIBS="$COINDEPEND_LIBS $CBCGENERIC_LIBS" 20882 20897 20883 20898 … … 20902 20917 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 20903 20918 export PKG_CONFIG_PATH 20904 20905 # augment X_CFLAGS and X_LIBS for each build target X in CbcLib CbcGeneric20906 20907 CBCLIB_CFLAGS="$COINDEPEND_CFLAGS $CBCLIB_CFLAGS"20908 CBCLIB_LIBS="$COINDEPEND_LIBS $CBCLIB_LIBS"20909 20910 CBCGENERIC_CFLAGS="$COINDEPEND_CFLAGS $CBCGENERIC_CFLAGS"20911 CBCGENERIC_LIBS="$COINDEPEND_LIBS $CBCGENERIC_LIBS"20912 20919 20913 20920 else … … 21112 21119 21113 21120 # adjust linker flags for (i)cl compiler 21121 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 21122 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 21123 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 21124 # everything of the form "-lname" by "libname.lib" 21114 21125 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 21115 21126 then 21127 COINDEPEND_LIBS=`echo " $COINDEPEND_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 21116 21128 COINDEPEND_LIBS_INSTALLED=`echo " $COINDEPEND_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 21117 21129 fi … … 21163 21175 # construct dependencies variables from LIBS variables 21164 21176 # we add an extra space in LIBS so we can substitute out everything starting with " -" 21165 COINDEPEND_DEPENDENCIES=`echo " $COINDEPEND_LIBS" | sed -e 's/ -[^ ]*//g'` 21166 21167 CBCLIB_DEPENDENCIES=`echo " $CBCLIB_LIBS" | sed -e 's/ -[^ ]*//g'` 21168 21169 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS" | sed -e 's/ -[^ ]*//g'` 21177 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 21178 COINDEPEND_DEPENDENCIES=`echo " $COINDEPEND_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 21179 21180 CBCLIB_DEPENDENCIES=`echo " $CBCLIB_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 21181 21182 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 21170 21183 21171 21184 … … 21343 21356 echo "$as_me:$LINENO: result: yes: $CLP_VERSIONS" >&5 21344 21357 echo "${ECHO_T}yes: $CLP_VERSIONS" >&6 21345 CBCLIB_PCREQUIRES="osi-clp $CBCLIB_PCREQUIRES" 21346 CBCGENERIC_PCREQUIRES="osi-clp $CBCGENERIC_PCREQUIRES" 21358 21359 # adjust linker flags for (i)cl compiler 21360 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 21361 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 21362 then 21363 CLP_LIBS=`echo " $CLP_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 21364 fi 21365 21366 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in CbcLib CbcGeneric 21367 21368 CBCLIB_PCREQUIRES="osi-clp $CBCLIB_PCREQUIRES" 21369 CBCLIB_CFLAGS="$CLP_CFLAGS $CBCLIB_CFLAGS" 21370 CBCLIB_LIBS="$CLP_LIBS $CBCLIB_LIBS" 21371 21372 CBCGENERIC_PCREQUIRES="osi-clp $CBCGENERIC_PCREQUIRES" 21373 CBCGENERIC_CFLAGS="$CLP_CFLAGS $CBCGENERIC_CFLAGS" 21374 CBCGENERIC_LIBS="$CLP_LIBS $CBCGENERIC_LIBS" 21347 21375 21348 21376 … … 21367 21395 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 21368 21396 export PKG_CONFIG_PATH 21369 21370 # augment X_CFLAGS and X_LIBS for each build target X in CbcLib CbcGeneric21371 21372 CBCLIB_CFLAGS="$CLP_CFLAGS $CBCLIB_CFLAGS"21373 CBCLIB_LIBS="$CLP_LIBS $CBCLIB_LIBS"21374 21375 CBCGENERIC_CFLAGS="$CLP_CFLAGS $CBCGENERIC_CFLAGS"21376 CBCGENERIC_LIBS="$CLP_LIBS $CBCGENERIC_LIBS"21377 21397 21378 21398 else … … 21577 21597 21578 21598 # adjust linker flags for (i)cl compiler 21599 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 21600 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 21601 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 21602 # everything of the form "-lname" by "libname.lib" 21579 21603 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 21580 21604 then 21605 CLP_LIBS=`echo " $CLP_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 21581 21606 CLP_LIBS_INSTALLED=`echo " $CLP_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 21582 21607 fi … … 21628 21653 # construct dependencies variables from LIBS variables 21629 21654 # we add an extra space in LIBS so we can substitute out everything starting with " -" 21630 CLP_DEPENDENCIES=`echo " $CLP_LIBS" | sed -e 's/ -[^ ]*//g'` 21631 21632 CBCLIB_DEPENDENCIES=`echo " $CBCLIB_LIBS" | sed -e 's/ -[^ ]*//g'` 21633 21634 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS" | sed -e 's/ -[^ ]*//g'` 21655 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 21656 CLP_DEPENDENCIES=`echo " $CLP_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 21657 21658 CBCLIB_DEPENDENCIES=`echo " $CBCLIB_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 21659 21660 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 21635 21661 21636 21662 … … 21785 21811 echo "${ECHO_T}yes: $OSITESTS_VERSIONS" >&6 21786 21812 21813 # adjust linker flags for (i)cl compiler 21814 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 21815 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 21816 then 21817 OSITESTS_LIBS=`echo " $OSITESTS_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 21818 fi 21819 21820 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 21821 21787 21822 21788 21823 … … 21806 21841 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 21807 21842 export PKG_CONFIG_PATH 21808 21809 # augment X_CFLAGS and X_LIBS for each build target X in21810 21843 21811 21844 else … … 22010 22043 22011 22044 # adjust linker flags for (i)cl compiler 22045 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 22046 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 22047 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 22048 # everything of the form "-lname" by "libname.lib" 22012 22049 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 22013 22050 then 22051 OSITESTS_LIBS=`echo " $OSITESTS_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 22014 22052 OSITESTS_LIBS_INSTALLED=`echo " $OSITESTS_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 22015 22053 fi … … 22049 22087 # construct dependencies variables from LIBS variables 22050 22088 # we add an extra space in LIBS so we can substitute out everything starting with " -" 22051 OSITESTS_DEPENDENCIES=`echo " $OSITESTS_LIBS" | sed -e 's/ -[^ ]*//g'` 22089 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 22090 OSITESTS_DEPENDENCIES=`echo " $OSITESTS_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 22052 22091 22053 22092 … … 22180 22219 echo "${ECHO_T}yes: $SAMPLE_VERSIONS" >&6 22181 22220 22221 # adjust linker flags for (i)cl compiler 22222 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 22223 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 22224 then 22225 SAMPLE_LIBS=`echo " $SAMPLE_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 22226 fi 22227 22228 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 22229 22182 22230 22183 22231 … … 22201 22249 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 22202 22250 export PKG_CONFIG_PATH 22203 22204 # augment X_CFLAGS and X_LIBS for each build target X in22205 22251 22206 22252 else … … 22405 22451 22406 22452 # adjust linker flags for (i)cl compiler 22453 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 22454 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 22455 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 22456 # everything of the form "-lname" by "libname.lib" 22407 22457 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 22408 22458 then 22459 SAMPLE_LIBS=`echo " $SAMPLE_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 22409 22460 SAMPLE_LIBS_INSTALLED=`echo " $SAMPLE_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 22410 22461 fi … … 22444 22495 # construct dependencies variables from LIBS variables 22445 22496 # we add an extra space in LIBS so we can substitute out everything starting with " -" 22446 SAMPLE_DEPENDENCIES=`echo " $SAMPLE_LIBS" | sed -e 's/ -[^ ]*//g'` 22497 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 22498 SAMPLE_DEPENDENCIES=`echo " $SAMPLE_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 22447 22499 22448 22500 … … 22575 22627 echo "${ECHO_T}yes: $NETLIB_VERSIONS" >&6 22576 22628 22629 # adjust linker flags for (i)cl compiler 22630 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 22631 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 22632 then 22633 NETLIB_LIBS=`echo " $NETLIB_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 22634 fi 22635 22636 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 22637 22577 22638 22578 22639 … … 22596 22657 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 22597 22658 export PKG_CONFIG_PATH 22598 22599 # augment X_CFLAGS and X_LIBS for each build target X in22600 22659 22601 22660 else … … 22800 22859 22801 22860 # adjust linker flags for (i)cl compiler 22861 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 22862 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 22863 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 22864 # everything of the form "-lname" by "libname.lib" 22802 22865 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 22803 22866 then 22867 NETLIB_LIBS=`echo " $NETLIB_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 22804 22868 NETLIB_LIBS_INSTALLED=`echo " $NETLIB_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 22805 22869 fi … … 22839 22903 # construct dependencies variables from LIBS variables 22840 22904 # we add an extra space in LIBS so we can substitute out everything starting with " -" 22841 NETLIB_DEPENDENCIES=`echo " $NETLIB_LIBS" | sed -e 's/ -[^ ]*//g'` 22905 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 22906 NETLIB_DEPENDENCIES=`echo " $NETLIB_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 22842 22907 22843 22908 … … 22970 23035 echo "${ECHO_T}yes: $MIPLIB3_VERSIONS" >&6 22971 23036 23037 # adjust linker flags for (i)cl compiler 23038 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 23039 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 23040 then 23041 MIPLIB3_LIBS=`echo " $MIPLIB3_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 23042 fi 23043 23044 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 23045 22972 23046 22973 23047 … … 22991 23065 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 22992 23066 export PKG_CONFIG_PATH 22993 22994 # augment X_CFLAGS and X_LIBS for each build target X in22995 23067 22996 23068 else … … 23195 23267 23196 23268 # adjust linker flags for (i)cl compiler 23269 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 23270 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 23271 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 23272 # everything of the form "-lname" by "libname.lib" 23197 23273 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 23198 23274 then 23275 MIPLIB3_LIBS=`echo " $MIPLIB3_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 23199 23276 MIPLIB3_LIBS_INSTALLED=`echo " $MIPLIB3_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 23200 23277 fi … … 23234 23311 # construct dependencies variables from LIBS variables 23235 23312 # we add an extra space in LIBS so we can substitute out everything starting with " -" 23236 MIPLIB3_DEPENDENCIES=`echo " $MIPLIB3_LIBS" | sed -e 's/ -[^ ]*//g'` 23313 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 23314 MIPLIB3_DEPENDENCIES=`echo " $MIPLIB3_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 23237 23315 23238 23316 … … 23382 23460 echo "$as_me:$LINENO: result: yes: $DYLP_VERSIONS" >&5 23383 23461 echo "${ECHO_T}yes: $DYLP_VERSIONS" >&6 23384 CBCGENERIC_PCREQUIRES="osi-dylp $CBCGENERIC_PCREQUIRES" 23462 23463 # adjust linker flags for (i)cl compiler 23464 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 23465 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 23466 then 23467 DYLP_LIBS=`echo " $DYLP_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 23468 fi 23469 23470 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in CbcGeneric 23471 23472 CBCGENERIC_PCREQUIRES="osi-dylp $CBCGENERIC_PCREQUIRES" 23473 CBCGENERIC_CFLAGS="$DYLP_CFLAGS $CBCGENERIC_CFLAGS" 23474 CBCGENERIC_LIBS="$DYLP_LIBS $CBCGENERIC_LIBS" 23385 23475 23386 23476 … … 23405 23495 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 23406 23496 export PKG_CONFIG_PATH 23407 23408 # augment X_CFLAGS and X_LIBS for each build target X in CbcGeneric23409 23410 CBCGENERIC_CFLAGS="$DYLP_CFLAGS $CBCGENERIC_CFLAGS"23411 CBCGENERIC_LIBS="$DYLP_LIBS $CBCGENERIC_LIBS"23412 23497 23413 23498 else … … 23612 23697 23613 23698 # adjust linker flags for (i)cl compiler 23699 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 23700 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 23701 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 23702 # everything of the form "-lname" by "libname.lib" 23614 23703 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 23615 23704 then 23705 DYLP_LIBS=`echo " $DYLP_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 23616 23706 DYLP_LIBS_INSTALLED=`echo " $DYLP_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 23617 23707 fi … … 23657 23747 # construct dependencies variables from LIBS variables 23658 23748 # we add an extra space in LIBS so we can substitute out everything starting with " -" 23659 DYLP_DEPENDENCIES=`echo " $DYLP_LIBS" | sed -e 's/ -[^ ]*//g'` 23660 23661 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS" | sed -e 's/ -[^ ]*//g'` 23749 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 23750 DYLP_DEPENDENCIES=`echo " $DYLP_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 23751 23752 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 23662 23753 23663 23754 … … 23797 23888 echo "${ECHO_T}yes: $VOL_VERSIONS" >&6 23798 23889 23890 # adjust linker flags for (i)cl compiler 23891 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 23892 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 23893 then 23894 VOL_LIBS=`echo " $VOL_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 23895 fi 23896 23897 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 23898 23799 23899 23800 23900 … … 23818 23918 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 23819 23919 export PKG_CONFIG_PATH 23820 23821 # augment X_CFLAGS and X_LIBS for each build target X in23822 23920 23823 23921 else … … 24022 24120 24023 24121 # adjust linker flags for (i)cl compiler 24122 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 24123 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 24124 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 24125 # everything of the form "-lname" by "libname.lib" 24024 24126 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 24025 24127 then 24128 VOL_LIBS=`echo " $VOL_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 24026 24129 VOL_LIBS_INSTALLED=`echo " $VOL_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 24027 24130 fi … … 24061 24164 # construct dependencies variables from LIBS variables 24062 24165 # we add an extra space in LIBS so we can substitute out everything starting with " -" 24063 VOL_DEPENDENCIES=`echo " $VOL_LIBS" | sed -e 's/ -[^ ]*//g'` 24166 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 24167 VOL_DEPENDENCIES=`echo " $VOL_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 24064 24168 24065 24169 … … 24215 24319 echo "$as_me:$LINENO: result: yes: $CPX_VERSIONS" >&5 24216 24320 echo "${ECHO_T}yes: $CPX_VERSIONS" >&6 24217 CBCLIB_PCREQUIRES="osi-cplex $CBCLIB_PCREQUIRES" 24218 CBCGENERIC_PCREQUIRES="osi-cplex $CBCGENERIC_PCREQUIRES" 24321 24322 # adjust linker flags for (i)cl compiler 24323 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 24324 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 24325 then 24326 CPX_LIBS=`echo " $CPX_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 24327 fi 24328 24329 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in CbcLib CbcGeneric 24330 24331 CBCLIB_PCREQUIRES="osi-cplex $CBCLIB_PCREQUIRES" 24332 CBCLIB_CFLAGS="$CPX_CFLAGS $CBCLIB_CFLAGS" 24333 CBCLIB_LIBS="$CPX_LIBS $CBCLIB_LIBS" 24334 24335 CBCGENERIC_PCREQUIRES="osi-cplex $CBCGENERIC_PCREQUIRES" 24336 CBCGENERIC_CFLAGS="$CPX_CFLAGS $CBCGENERIC_CFLAGS" 24337 CBCGENERIC_LIBS="$CPX_LIBS $CBCGENERIC_LIBS" 24219 24338 24220 24339 … … 24239 24358 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 24240 24359 export PKG_CONFIG_PATH 24241 24242 # augment X_CFLAGS and X_LIBS for each build target X in CbcLib CbcGeneric24243 24244 CBCLIB_CFLAGS="$CPX_CFLAGS $CBCLIB_CFLAGS"24245 CBCLIB_LIBS="$CPX_LIBS $CBCLIB_LIBS"24246 24247 CBCGENERIC_CFLAGS="$CPX_CFLAGS $CBCGENERIC_CFLAGS"24248 CBCGENERIC_LIBS="$CPX_LIBS $CBCGENERIC_LIBS"24249 24360 24250 24361 else … … 24449 24560 24450 24561 # adjust linker flags for (i)cl compiler 24562 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 24563 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 24564 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 24565 # everything of the form "-lname" by "libname.lib" 24451 24566 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 24452 24567 then 24568 CPX_LIBS=`echo " $CPX_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 24453 24569 CPX_LIBS_INSTALLED=`echo " $CPX_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 24454 24570 fi … … 24500 24616 # construct dependencies variables from LIBS variables 24501 24617 # we add an extra space in LIBS so we can substitute out everything starting with " -" 24502 CPX_DEPENDENCIES=`echo " $CPX_LIBS" | sed -e 's/ -[^ ]*//g'` 24503 24504 CBCLIB_DEPENDENCIES=`echo " $CBCLIB_LIBS" | sed -e 's/ -[^ ]*//g'` 24505 24506 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS" | sed -e 's/ -[^ ]*//g'` 24618 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 24619 CPX_DEPENDENCIES=`echo " $CPX_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 24620 24621 CBCLIB_DEPENDENCIES=`echo " $CBCLIB_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 24622 24623 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 24507 24624 24508 24625 … … 24660 24777 echo "$as_me:$LINENO: result: yes: $GLPK_VERSIONS" >&5 24661 24778 echo "${ECHO_T}yes: $GLPK_VERSIONS" >&6 24662 CBCGENERIC_PCREQUIRES="osi-glpk $CBCGENERIC_PCREQUIRES" 24779 24780 # adjust linker flags for (i)cl compiler 24781 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 24782 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 24783 then 24784 GLPK_LIBS=`echo " $GLPK_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 24785 fi 24786 24787 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in CbcGeneric 24788 24789 CBCGENERIC_PCREQUIRES="osi-glpk $CBCGENERIC_PCREQUIRES" 24790 CBCGENERIC_CFLAGS="$GLPK_CFLAGS $CBCGENERIC_CFLAGS" 24791 CBCGENERIC_LIBS="$GLPK_LIBS $CBCGENERIC_LIBS" 24663 24792 24664 24793 … … 24683 24812 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 24684 24813 export PKG_CONFIG_PATH 24685 24686 # augment X_CFLAGS and X_LIBS for each build target X in CbcGeneric24687 24688 CBCGENERIC_CFLAGS="$GLPK_CFLAGS $CBCGENERIC_CFLAGS"24689 CBCGENERIC_LIBS="$GLPK_LIBS $CBCGENERIC_LIBS"24690 24814 24691 24815 else … … 24890 25014 24891 25015 # adjust linker flags for (i)cl compiler 25016 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 25017 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 25018 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 25019 # everything of the form "-lname" by "libname.lib" 24892 25020 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 24893 25021 then 25022 GLPK_LIBS=`echo " $GLPK_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 24894 25023 GLPK_LIBS_INSTALLED=`echo " $GLPK_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 24895 25024 fi … … 24935 25064 # construct dependencies variables from LIBS variables 24936 25065 # we add an extra space in LIBS so we can substitute out everything starting with " -" 24937 GLPK_DEPENDENCIES=`echo " $GLPK_LIBS" | sed -e 's/ -[^ ]*//g'` 24938 24939 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS" | sed -e 's/ -[^ ]*//g'` 25066 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 25067 GLPK_DEPENDENCIES=`echo " $GLPK_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 25068 25069 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 24940 25070 24941 25071 … … 25075 25205 echo "${ECHO_T}yes: $GRB_VERSIONS" >&6 25076 25206 25207 # adjust linker flags for (i)cl compiler 25208 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 25209 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 25210 then 25211 GRB_LIBS=`echo " $GRB_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 25212 fi 25213 25214 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 25215 25077 25216 25078 25217 … … 25096 25235 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 25097 25236 export PKG_CONFIG_PATH 25098 25099 # augment X_CFLAGS and X_LIBS for each build target X in25100 25237 25101 25238 else … … 25300 25437 25301 25438 # adjust linker flags for (i)cl compiler 25439 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 25440 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 25441 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 25442 # everything of the form "-lname" by "libname.lib" 25302 25443 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 25303 25444 then 25445 GRB_LIBS=`echo " $GRB_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 25304 25446 GRB_LIBS_INSTALLED=`echo " $GRB_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 25305 25447 fi … … 25339 25481 # construct dependencies variables from LIBS variables 25340 25482 # we add an extra space in LIBS so we can substitute out everything starting with " -" 25341 GRB_DEPENDENCIES=`echo " $GRB_LIBS" | sed -e 's/ -[^ ]*//g'` 25483 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 25484 GRB_DEPENDENCIES=`echo " $GRB_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 25342 25485 25343 25486 … … 25481 25624 echo "$as_me:$LINENO: result: yes: $MSK_VERSIONS" >&5 25482 25625 echo "${ECHO_T}yes: $MSK_VERSIONS" >&6 25483 CBCGENERIC_PCREQUIRES="osi-mosek $CBCGENERIC_PCREQUIRES" 25626 25627 # adjust linker flags for (i)cl compiler 25628 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 25629 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 25630 then 25631 MSK_LIBS=`echo " $MSK_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 25632 fi 25633 25634 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in CbcGeneric 25635 25636 CBCGENERIC_PCREQUIRES="osi-mosek $CBCGENERIC_PCREQUIRES" 25637 CBCGENERIC_CFLAGS="$MSK_CFLAGS $CBCGENERIC_CFLAGS" 25638 CBCGENERIC_LIBS="$MSK_LIBS $CBCGENERIC_LIBS" 25484 25639 25485 25640 … … 25504 25659 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 25505 25660 export PKG_CONFIG_PATH 25506 25507 # augment X_CFLAGS and X_LIBS for each build target X in CbcGeneric25508 25509 CBCGENERIC_CFLAGS="$MSK_CFLAGS $CBCGENERIC_CFLAGS"25510 CBCGENERIC_LIBS="$MSK_LIBS $CBCGENERIC_LIBS"25511 25661 25512 25662 else … … 25711 25861 25712 25862 # adjust linker flags for (i)cl compiler 25863 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 25864 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 25865 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 25866 # everything of the form "-lname" by "libname.lib" 25713 25867 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 25714 25868 then 25869 MSK_LIBS=`echo " $MSK_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 25715 25870 MSK_LIBS_INSTALLED=`echo " $MSK_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 25716 25871 fi … … 25756 25911 # construct dependencies variables from LIBS variables 25757 25912 # we add an extra space in LIBS so we can substitute out everything starting with " -" 25758 MSK_DEPENDENCIES=`echo " $MSK_LIBS" | sed -e 's/ -[^ ]*//g'` 25759 25760 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS" | sed -e 's/ -[^ ]*//g'` 25913 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 25914 MSK_DEPENDENCIES=`echo " $MSK_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 25915 25916 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 25761 25917 25762 25918 … … 25907 26063 echo "$as_me:$LINENO: result: yes: $SPX_VERSIONS" >&5 25908 26064 echo "${ECHO_T}yes: $SPX_VERSIONS" >&6 25909 CBCGENERIC_PCREQUIRES="osi-soplex $CBCGENERIC_PCREQUIRES" 26065 26066 # adjust linker flags for (i)cl compiler 26067 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 26068 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26069 then 26070 SPX_LIBS=`echo " $SPX_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26071 fi 26072 26073 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in CbcGeneric 26074 26075 CBCGENERIC_PCREQUIRES="osi-soplex $CBCGENERIC_PCREQUIRES" 26076 CBCGENERIC_CFLAGS="$SPX_CFLAGS $CBCGENERIC_CFLAGS" 26077 CBCGENERIC_LIBS="$SPX_LIBS $CBCGENERIC_LIBS" 25910 26078 25911 26079 … … 25930 26098 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 25931 26099 export PKG_CONFIG_PATH 25932 25933 # augment X_CFLAGS and X_LIBS for each build target X in CbcGeneric25934 25935 CBCGENERIC_CFLAGS="$SPX_CFLAGS $CBCGENERIC_CFLAGS"25936 CBCGENERIC_LIBS="$SPX_LIBS $CBCGENERIC_LIBS"25937 26100 25938 26101 else … … 26137 26300 26138 26301 # adjust linker flags for (i)cl compiler 26302 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 26303 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 26304 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 26305 # everything of the form "-lname" by "libname.lib" 26139 26306 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26140 26307 then 26308 SPX_LIBS=`echo " $SPX_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26141 26309 SPX_LIBS_INSTALLED=`echo " $SPX_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 26142 26310 fi … … 26182 26350 # construct dependencies variables from LIBS variables 26183 26351 # we add an extra space in LIBS so we can substitute out everything starting with " -" 26184 SPX_DEPENDENCIES=`echo " $SPX_LIBS" | sed -e 's/ -[^ ]*//g'` 26185 26186 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS" | sed -e 's/ -[^ ]*//g'` 26352 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 26353 SPX_DEPENDENCIES=`echo " $SPX_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 26354 26355 CBCGENERIC_DEPENDENCIES=`echo " $CBCGENERIC_LIBS " | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 26187 26356 26188 26357 … … 26322 26491 echo "${ECHO_T}yes: $XPR_VERSIONS" >&6 26323 26492 26493 # adjust linker flags for (i)cl compiler 26494 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 26495 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26496 then 26497 XPR_LIBS=`echo " $XPR_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26498 fi 26499 26500 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 26501 26324 26502 26325 26503 … … 26343 26521 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 26344 26522 export PKG_CONFIG_PATH 26345 26346 # augment X_CFLAGS and X_LIBS for each build target X in26347 26523 26348 26524 else … … 26547 26723 26548 26724 # adjust linker flags for (i)cl compiler 26725 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 26726 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 26727 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 26728 # everything of the form "-lname" by "libname.lib" 26549 26729 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26550 26730 then 26731 XPR_LIBS=`echo " $XPR_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26551 26732 XPR_LIBS_INSTALLED=`echo " $XPR_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 26552 26733 fi … … 26586 26767 # construct dependencies variables from LIBS variables 26587 26768 # we add an extra space in LIBS so we can substitute out everything starting with " -" 26588 XPR_DEPENDENCIES=`echo " $XPR_LIBS" | sed -e 's/ -[^ ]*//g'` 26769 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 26770 XPR_DEPENDENCIES=`echo " $XPR_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 26589 26771 26590 26772 … … 26723 26905 echo "${ECHO_T}yes: $ASL_VERSIONS" >&6 26724 26906 26907 # adjust linker flags for (i)cl compiler 26908 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl) 26909 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26910 then 26911 ASL_LIBS=`echo " $ASL_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26912 fi 26913 26914 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in 26915 26725 26916 26726 26917 … … 26744 26935 PKG_CONFIG_PATH="$coin_save_PKG_CONFIG_PATH" 26745 26936 export PKG_CONFIG_PATH 26746 26747 # augment X_CFLAGS and X_LIBS for each build target X in26748 26937 26749 26938 else … … 26948 27137 26949 27138 # adjust linker flags for (i)cl compiler 27139 # for the LIBS, we replace everything of the form "/somepath/name.lib" by "`$(CYGPATH_W) /somepath/`name.lib | sed -e s|\|/|g" (where we have to use excessive many \ to get the \ into the command line for cl), 27140 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 27141 # everything of the form "-Lpath" by "/libpath:`$(CYGPATH_W) path`, and 27142 # everything of the form "-lname" by "libname.lib" 26950 27143 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 26951 27144 then 27145 ASL_LIBS=`echo " $ASL_LIBS " | sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g'` 26952 27146 ASL_LIBS_INSTALLED=`echo " $ASL_LIBS_INSTALLED" | sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g'` 26953 27147 fi … … 26987 27181 # construct dependencies variables from LIBS variables 26988 27182 # we add an extra space in LIBS so we can substitute out everything starting with " -" 26989 ASL_DEPENDENCIES=`echo " $ASL_LIBS" | sed -e 's/ -[^ ]*//g'` 27183 # also substitute out everything of the form `xxx`yyy (may have been added for cygwin/cl) 27184 ASL_DEPENDENCIES=`echo " $ASL_LIBS" | sed -e 's/ -[^ ]*//g' -e 's/\`[^\`]*\`[^ ]* //g'` 26990 27185 26991 27186
Note: See TracChangeset
for help on using the changeset viewer.