- Timestamp:
- Jun 9, 2011 1:46:45 PM (10 years ago)
- Location:
- stable/0.7
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.7
- Property svn:mergeinfo changed
/trunk merged: 2238,2242-2243
- Property svn:mergeinfo changed
-
stable/0.7/coin.m4
r2237 r2254 394 394 coin_opt_cxxflags="-O3" 395 395 coin_add_cxxflags="-pipe" 396 coin_dbg_cxxflags="-g "396 coin_dbg_cxxflags="-g -O0" 397 397 coin_warn_cxxflags="-Wparentheses -Wreturn-type -Wcast-qual -Wall -Wpointer-arith -Wwrite-strings -Wconversion -Wno-unknown-pragmas -Wno-long-long" 398 398 case $build in … … 795 795 coin_opt_cflags="-O3" 796 796 coin_add_cflags="-pipe" 797 coin_dbg_cflags="-g "797 coin_dbg_cflags="-g -O0" 798 798 coin_warn_cflags="-Wimplicit -Wparentheses -Wsequence-point -Wreturn-type -Wcast-qual -Wall -Wno-unknown-pragmas -Wno-long-long" 799 799 case $build in … … 1025 1025 coin_opt_fflags="-O3" 1026 1026 coin_add_fflags="-pipe" 1027 coin_dbg_fflags="-g "1027 coin_dbg_fflags="-g -O0" 1028 1028 case $enable_doscompile in 1029 1029 mingw) … … 3123 3123 m4_toupper($1_CFLAGS)= 3124 3124 m4_toupper($1_DATA)= 3125 m4_toupper($1_DEPENDENCIES)= 3126 m4_toupper($1_PCLIBS)= 3127 m4_toupper($1_PCREQUIRES)= 3128 m4_toupper($1_DATA)= 3125 3129 AC_SUBST(m4_toupper($1_LIBS)) 3126 3130 AC_SUBST(m4_toupper($1_CFLAGS)) … … 3150 3154 m4_tolower(coin_has_$1)=yes 3151 3155 m4_toupper($1_LIBS)="$withval" 3156 m4_toupper($1_PCLIBS)="$withval" 3152 3157 coin_foreach_w([myvar], [$3], [ 3153 3158 m4_toupper(myvar)_PCLIBS="$withval $m4_toupper(myvar)_PCLIBS" … … 3221 3226 m4_toupper($1_LIBS)=`echo " $m4_toupper($1_LIBS) " | [sed -e 's/ \(\/[^ ]*\/\)\([^ ]*\)\.lib / \`$(CYGPATH_W) \1 | sed -e "s|\\\\\\\\\\\\\\\\\\\\|\/|g"\`\2.lib /g']` 3222 3227 fi 3228 m4_toupper($1_PCREQUIRES)="$2" 3223 3229 3224 3230 # augment X_PCREQUIRES, X_CFLAGS, and X_LIBS for each build target X in $3 … … 3279 3285 AC_MSG_NOTICE([$1 DATA is $m4_toupper($1)_DATA]) 3280 3286 fi 3281 if test -n "$m4_toupper($1)_CFLAGS" ; then 3282 AC_MSG_NOTICE([$1 CFLAGS are $m4_toupper($1)_CFLAGS]) 3287 if test -n "$m4_toupper($1)_PCLIBS" ; then 3288 AC_MSG_NOTICE([$1 PCLIBS are $m4_toupper($1)_PCLIBS]) 3289 fi 3290 if test -n "$m4_toupper($1)_PCREQUIRES" ; then 3291 AC_MSG_NOTICE([$1 PCREQUIRES are $m4_toupper($1)_PCREQUIRES]) 3283 3292 fi 3284 3293 coin_foreach_w([myvar], [$3], [ … … 3354 3363 m4_toupper($1_DATA)= 3355 3364 m4_toupper($1_DATA_INSTALLED)= 3365 m4_toupper($1_PCLIBS)= 3366 m4_toupper($1_PCREQUIRES)= 3356 3367 3357 3368 # initial list of dependencies is "$2", but we need to filter out version number specifications (= x, <= x, >= x, != x) … … 3544 3555 fi 3545 3556 3557 m4_toupper($1_PCREQUIRES)="$2" 3546 3558 coin_foreach_w([myvar], [$3], [ 3547 3559 m4_toupper(myvar)_PCREQUIRES="$2 $m4_toupper(myvar)_PCREQUIRES" -
stable/0.7/compile_f2c
- Property svn:mergeinfo changed (with no actual effect on merging)
-
stable/0.7/prepare_new_release
r2231 r2254 436 436 fi 437 437 438 # Find ProjConfig.h. If there's a definition for PROJ_VERSION, adjust it and439 # add ProjConfig.h.bak to the list of files to be restored.438 # Find config_proj_default.h. If there's a definition for PROJ_VERSION, adjust it and 439 # add config_proj_default.h.bak to the list of files to be restored. 440 440 441 441 stableProjUC=`echo $stableProj | tr '[a-z]' '[A-Z]'` 442 configFileLoc=`find . -name ' *Config.h' -print`442 configFileLoc=`find . -name 'config_*_default.h' -print` 443 443 if test -n "$configFileLoc" ; then 444 444 versionSym=${stableProjUC}_VERSION … … 448 448 mv $configFileLoc $configFileLoc.bak 449 449 bak_files="$bak_files $configFileLoc" 450 sed -e "s/# *define $versionSym.*\$/#define $versionSym \"$newVer\"/" <$configFileLoc.bak >$configFileLoc 450 sed -e "s/# *define $versionSym .*\$/#define $versionSym \"$newVer\"/" \ 451 -e "s/# *define ${versionSym}_MAJOR .*\$/#define ${versionSym}_MAJOR $majVer/" \ 452 -e "s/# *define ${versionSym}_MINOR .*\$/#define ${versionSym}_MINOR $minVer/" \ 453 -e "s/# *define ${versionSym}_RELEASE .*\$/#define ${versionSym}_RELEASE $newRel/" \ 454 <$configFileLoc.bak >$configFileLoc 451 455 svn diff $configFileLoc 452 456 fi
Note: See TracChangeset
for help on using the changeset viewer.