Changeset 2768
- Timestamp:
- Jun 8, 2013 9:09:47 AM (8 years ago)
- Location:
- stable/0.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.7
- Property svn:mergeinfo changed
/trunk merged: 2758,2764-2767
- Property svn:mergeinfo changed
-
stable/0.7/MSVisualStudio/v10/Debug.props
r2619 r2768 1 <?xml version="1.0" encoding="utf-8"?>1 <?xml version="1.0" encoding="utf-8"?> 2 2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 3 <ImportGroup Label="PropertySheets" /> … … 11 11 <Optimization>Disabled</Optimization> 12 12 </ClCompile> 13 <Link> 14 <GenerateDebugInformation>true</GenerateDebugInformation> 15 </Link> 13 16 </ItemDefinitionGroup> 14 17 <ItemGroup /> -
stable/0.7/coin.m4
r2619 r2768 424 424 clang* ) ;; 425 425 cl* | */cl* | CL* | */CL*) 426 # The MT and MTd options are mutually exclusive 427 coin_opt_cxxflags='-MT -O2' 426 # The MT and MTd options are mutually exclusive 427 if test "$coin_disable_shared" = yes || test "$enable_shared" = yes ; then 428 coin_opt_cxxflags='-MD -O2' 429 coin_dbg_cxxflags='-MDd' 430 else 431 coin_opt_cxxflags='-MT -O2' 432 coin_dbg_cxxflags='-MTd' 433 fi 428 434 coin_add_cxxflags='-nologo -EHsc -GR -wd4996 -D_CRT_SECURE_NO_DEPRECATE' 429 coin_dbg_cxxflags='-MTd'430 435 ;; 431 436 icl* | */icl* | ICL* | */ICL*) 432 # The MT and MTd options are mutually exclusive 433 coin_opt_cxxflags='-MT -Ox' 437 # The MT and MTd options are mutually exclusive 438 if test "$coin_disable_shared" = yes || test "$enable_shared" = yes ; then 439 coin_opt_cxxflags='-MD -Ox' 440 coin_dbg_cxxflags='-MDd -debug' 441 else 442 coin_opt_cxxflags='-MT -Ox' 443 coin_dbg_cxxflags='-MTd -debug' 444 fi 434 445 coin_add_cxxflags='-nologo -EHsc -GR -D_CRT_SECURE_NO_DEPRECATE' 435 coin_dbg_cxxflags='-MTd -debug'436 446 ;; 437 447 esac … … 828 838 clang* ) ;; 829 839 cl* | */cl* | CL* | */CL*) 830 coin_opt_cflags='-MT -O2' 840 if test "$coin_disable_shared" = yes || test "$enable_shared" = yes ; then 841 coin_opt_cflags='-MD -O2' 842 coin_dbg_cflags='-MDd' 843 else 844 coin_opt_cflags='-MT -O2' 845 coin_dbg_cflags='-MTd' 846 fi 831 847 coin_add_cflags='-nologo -wd4996 -D_CRT_SECURE_NO_DEPRECATE' 832 coin_dbg_cflags='-MTd'833 848 ;; 834 849 icl* | */icl* | ICL* | */ICL*) 835 coin_opt_cflags='-MT -Ox' 850 if test "$coin_disable_shared" = yes || test "$enable_shared" = yes ; then 851 coin_opt_cflags='-MD -Ox' 852 coin_dbg_cflags='-MDd -debug' 853 else 854 coin_opt_cflags='-MT -Ox' 855 coin_dbg_cflags='-MTd -debug' 856 fi 836 857 coin_add_cflags='-nologo -D_CRT_SECURE_NO_DEPRECATE' 837 coin_dbg_cflags='-MTd -debug'838 858 ;; 839 859 esac … … 1049 1069 case $F77 in 1050 1070 ifort* | */ifort* | IFORT* | */IFORT* ) 1051 coin_opt_fflags='-MT -O3' 1071 if test "$coin_disable_shared" = yes || test "$enable_shared" = yes ; then 1072 coin_opt_fflags='-MD -O3' 1073 coin_dbg_fflags='-MDd -debug' 1074 else 1075 coin_opt_fflags='-MT -O3' 1076 coin_dbg_fflags='-MTd -debug' 1077 fi 1052 1078 coin_add_fflags='-fpp -nologo' 1053 coin_dbg_fflags='-MTd -debug'1054 1079 ;; 1055 1080 compile_f2c*) 1056 coin_opt_fflags='-MT -O2' 1081 if test "$coin_disable_shared" = yes || test "$enable_shared" = yes ; then 1082 coin_opt_fflags='-MD -O2' 1083 coin_dbg_fflags='-MDd' 1084 else 1085 coin_opt_fflags='-MT -O2' 1086 coin_dbg_fflags='-MTd' 1087 fi 1057 1088 coin_add_fflags='-nologo -wd4996' 1058 coin_dbg_fflags='-MTd'1059 1089 ;; 1060 1090 esac … … 1579 1609 AC_DEFUN([AC_COIN_DISABLE_STATIC], 1580 1610 [ 1611 coin_disable_shared=no 1581 1612 # Test if force_shared has been set 1582 1613 if test "x$1" = xforce_shared; then … … 1611 1642 if test x"$enable_shared" = xyes; then 1612 1643 AC_MSG_WARN([On $platform, shared objects are not supported. I'm disabling your choice.]) 1644 else 1645 # we don't disable shared, because it was not selected anyway 1646 coin_disable_shared=no 1613 1647 fi 1614 1648 enable_shared=no … … 3021 3055 [AC_HELP_STRING([--disable-pkg-config],[disable use of pkg-config (if available)])], 3022 3056 [use_pkgconfig="$enableval"], 3023 [use_pkgconfig=yes]) 3057 [if test x$coin_cc_is_cl = xtrue; then 3058 use_pkgconfig=no 3059 else 3060 use_pkgconfig=yes 3061 fi]) 3024 3062 3025 3063 if test $use_pkgconfig = yes ; then 3026 3064 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then 3027 AC_ PATH_TOOL([PKG_CONFIG], [pkg-config])3065 AC_CHECK_TOOL([PKG_CONFIG], [pkg-config]) 3028 3066 fi 3029 3067 if test -n "$PKG_CONFIG"; then
Note: See TracChangeset
for help on using the changeset viewer.