- Timestamp:
- Jun 15, 2011 8:00:48 AM (10 years ago)
- Location:
- stable/0.6
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.6
- Property svn:mergeinfo changed
/trunk merged: 2235,2238,2258-2262,2273
- Property svn:mergeinfo changed
-
stable/0.6/coin.m4
r2224 r2278 635 635 coin_opt_cxxflags="-O3" 636 636 coin_add_cxxflags="-pipe" 637 coin_dbg_cxxflags="-g "637 coin_dbg_cxxflags="-g -O0" 638 638 coin_warn_cxxflags="-Wparentheses -Wreturn-type -Wcast-qual -Wall -Wpointer-arith -Wwrite-strings -Wconversion -Wno-unknown-pragmas" 639 639 case $build in … … 1030 1030 coin_opt_cflags="-O3" 1031 1031 coin_add_cflags="-pipe" 1032 coin_dbg_cflags="-g "1032 coin_dbg_cflags="-g -O0" 1033 1033 coin_warn_cflags="-Wimplicit -Wparentheses -Wsequence-point -Wreturn-type -Wcast-qual -Wall -Wno-unknown-pragmas" 1034 1034 case $build in … … 1256 1256 coin_opt_fflags="-O3" 1257 1257 coin_add_fflags="-pipe" 1258 coin_dbg_fflags="-g "1258 coin_dbg_fflags="-g -O0" 1259 1259 case $enable_doscompile in 1260 1260 mingw) … … 2270 2270 fi 2271 2271 2272 AC_MSG_NOTICE([In case of trouble, first consult the troubleshooting page at https://projects.coin-or.org/BuildTools/wiki/user-troubleshooting]) 2272 2273 if test x$coin_projectdir = xyes; then 2273 2274 AC_MSG_NOTICE([Configuration of $PACKAGE_NAME successful]) … … 4220 4221 m4_toupper($1_DATA_INSTALLED)= 4221 4222 4222 # initial list of dependencies is "$2", but we need to filter out version number specifications (= x, <= x, >= x )4223 projtoprocess="m4_bpatsubsts([$2], [<?>? =[ ]*[^ ]+])"4223 # initial list of dependencies is "$2", but we need to filter out version number specifications (= x, <= x, >= x, != x) 4224 projtoprocess="m4_bpatsubsts([$2], [<?>?!?=[ ]*[^ ]+])" 4224 4225 4225 4226 # we first expand the list of projects to process by adding all dependencies just behind the project which depends on it … … 4258 4259 # add projrequires to the front of the list of projects that have to be processed next 4259 4260 # at the same time, remove $proj from this list 4260 projtoprocess= ${projtoprocess/$proj/$projrequires}4261 projtoprocess=[`echo $projtoprocess | sed -e "s/$proj/$projrequires/"`] 4261 4262 4262 4263 # read DATA from $pcfile, if _DATA is still empty … … 4328 4329 4329 4330 # set projcflags and projlibs variables by running $pcfilemod 4331 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 4330 4332 projcflags= 4331 4333 projlibs= 4334 IFS="$save_IFS" 4332 4335 eval `sh -c "$pcfilemod"` 4336 IFS=":" 4333 4337 4334 4338 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 4373 4377 4374 4378 # set projcflags and projlibs variables by running $pcfilemod 4379 # under mingw, the current IFS seem to make the : in the paths of the gfortran libs go away, so we temporarily set IFS back to its default 4375 4380 projcflags= 4376 4381 projlibs= 4382 IFS="$save_IFS" 4377 4383 eval `sh -c "$pcfilemod"` 4384 IFS=":" 4378 4385 4379 4386 # add CYGPATH_W cludge into include flags and set CFLAGS variable … … 4401 4408 # 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), 4402 4409 # for the LIBS_INSTALLED, we replace everything of the form "/somepath/" by "`$(CYGPATH_W) /somepath/`", 4403 # everything of the form "- Lpath" by "/libpath:`$(CYGPATH_W) path`, and4404 # everything of the form "- lname" by "libname.lib"4410 # everything of the form "-lname" by "libname.lib", and 4411 # everything of the form "-Lpath" by "-libpath:`$(CYGPATH_W) path` 4405 4412 if test x$coin_cxx_is_cl = xtrue || test x$coin_cc_is_cl = xtrue ; 4406 4413 then 4407 4414 m4_toupper($1_LIBS)=`echo " $m4_toupper($1_LIBS) " | [sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g']` 4408 m4_toupper($1_LIBS_INSTALLED)=`echo " $m4_toupper($1_LIBS_INSTALLED)" | [sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ - L\([^ ]*\)/ \/libpath:\`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g']`4415 m4_toupper($1_LIBS_INSTALLED)=`echo " $m4_toupper($1_LIBS_INSTALLED)" | [sed -e 's/ \(\/[^ ]*\/\)/ \`$(CYGPATH_W) \1\`/g' -e 's/ -l\([^ ]*\)/ lib\1.lib/g' -e 's/ -L\([^ ]*\)/ -libpath:\`$(CYGPATH_W) \1\`/g']` 4409 4416 fi 4410 4417 -
stable/0.6/compile_f2c
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.