Changeset 2866 for stable/0.7
- Timestamp:
- Sep 8, 2013 12:27:09 PM (7 years ago)
- Location:
- stable/0.7
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.7
- Property svn:mergeinfo changed
/trunk merged: 2840-2841,2861-2863,2865
- Property svn:mergeinfo changed
-
stable/0.7/coin.m4
r2802 r2866 380 380 AC_MSG_NOTICE([Overruling autoconf; cl does not recognise -g.]) 381 381 fi ;; 382 * ) 383 CYGPATH_W=echo 384 ;; 382 385 esac 383 386 CXXFLAGS="$save_cxxflags" … … 789 792 AC_MSG_NOTICE([Overruling autoconf; cl does not recognise -g.]) 790 793 fi ;; 794 * ) 795 CYGPATH_W=echo 796 ;; 791 797 esac 792 798 CFLAGS="$save_cflags" … … 1630 1636 # On Cygwin and AIX, building DLLs doesn't work 1631 1637 case $build in 1632 *-cygwin* )1638 *-cygwin* | *-mingw*) 1633 1639 coin_disable_shared=yes 1634 platform=Cygwin 1640 if test x"$enable_shared" = xyes; then 1641 case "$CXX" in 1642 clang* ) 1643 AC_MSG_WARN([DLL building not supported. I'm disabling your choice.]) 1644 ;; 1645 cl* | */cl* | CL* | */CL* | icl* | */icl* | ICL* | */ICL*) 1646 AC_MSG_WARN([DLL building not supported. I'm disabling your choice, but will build with -MD(d) instead of -MT(d).]) 1647 ;; 1648 *) 1649 AC_MSG_WARN([DLL building not supported. I'm disabling your choice.]) 1650 ;; 1651 esac 1652 fi 1635 1653 ;; 1636 1654 *-aix*) 1637 1655 coin_disable_shared=yes 1638 1656 platform=AIX 1639 ;; 1640 *-mingw*) 1641 coin_disable_shared=yes 1642 platform="Msys" 1643 # case "$CXX" in 1644 # cl*) 1645 # coin_disable_shared=yes 1646 # platform="Msys with cl" 1647 # ;; 1648 # esac 1657 if test x"$enable_shared" = xyes; then 1658 AC_MSG_WARN([Shared objects are not supported. I'm disabling your choice.]) 1659 fi 1649 1660 ;; 1650 1661 esac … … 1652 1663 if test x"$coin_disable_shared" = xyes; then 1653 1664 if test x"$enable_shared" = xyes; then 1654 AC_MSG_WARN([On $platform, shared objects are not supported. I'm disabling your choice.])1665 : 1655 1666 else 1656 1667 # we don't disable shared, because it was not selected anyway -
stable/0.7/prepare_new_release
r2839 r2866 361 361 # contains a '/', strip it out to make the build and checkout directories. 362 362 363 top BuildDir=`echo $stableProj | sed -e 's|.*/\([^/]*\)$|\1|'`364 topBuildDir="${top BuildDir}-${newVer}"363 topProjName=`echo $stableProj | sed -e 's|.*/\([^/]*\)$|\1|'` 364 topBuildDir="${topProjName}-${newVer}" 365 365 if test $isThirdParty = yes; then 366 366 coDir=$topBuildDir/Thirdparty/$stableProj … … 418 418 echo '' 419 419 echo "===> Checking for configure.ac files ..." 420 bak_files=`find $stableProj -name 'configure.ac'` 420 if test -d $topProjName ; then 421 bak_files=`find $topProjName -name 'configure.ac'` 422 fi 421 423 if test -e configure.ac ; then 422 424 bak_files="$bak_files configure.ac" … … 451 453 # add config_proj_default.h.bak to the list of files to be restored. 452 454 453 stableProjUC=`echo $stableProj | tr '[a-z]' '[A-Z]'` 454 configFileLoc=`find $stableProj -name .svn -prune -o -name 'config_*_default.h' -print` 455 topProjNameUC=`echo $topProjName | tr '[a-z]' '[A-Z]'` 456 if test -d $topProjName ; then 457 configFileLoc=`find $topProjName -name .svn -prune -o -name 'config_*_default.h' -print` 458 fi 455 459 if test -n "$configFileLoc" ; then 456 versionSym=${ stableProjUC}_VERSION460 versionSym=${topProjNameUC}_VERSION 457 461 echo '' 458 462 echo "===> Updating $versionSym in $configFileLoc (if present)" -
stable/0.7/prepare_new_stable
r2839 r2866 330 330 # Construct a build directory name. 331 331 332 top BuildDir=`echo $srcProj | sed -e 's|.*/\([^/]*\)$|\1|'`333 topBuildDir=${top BuildDir}-${newVersion}332 topProjName=`echo $srcProj | sed -e 's|.*/\([^/]*\)$|\1|'` 333 topBuildDir=${topProjName}-${newVersion} 334 334 echo "Build directory.....: $topBuildDir" 335 335 … … 382 382 383 383 echo '' 384 bak_files=`find $srcProj -name 'configure.ac'` 384 if test -d $topProjName ; then 385 bak_files=`find $topProjName -name 'configure.ac'` 386 fi 385 387 if test -e configure.ac ; then 386 388 bak_files="$bak_files configure.ac" … … 408 410 # add config_proj_default.h.bak to the list of files to be restored. 409 411 410 srcProjUC=`echo $srcProj | tr '[a-z]' '[A-Z]'` 411 configFileLoc=`find $srcProj -name .svn -prune -o -name 'config_*_default.h' -print` 412 topProjNameUC=`echo $topProjName | tr '[a-z]' '[A-Z]'` 413 if test -d $topProjName ; then 414 configFileLoc=`find $topProjName -name .svn -prune -o -name 'config_*_default.h' -print` 415 fi 412 416 echo "config File Loc: $configFileLoc" 413 417 if test -n "$configFileLoc" ; then 414 versionSym=${ srcProjUC}_VERSION418 versionSym=${topProjNameUC}_VERSION 415 419 echo '' 416 420 echo "===> Updating $versionSym in $configFileLoc (if present)"
Note: See TracChangeset
for help on using the changeset viewer.