Changeset 16
- Timestamp:
- May 18, 2006 6:23:07 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/coin.m4
r14 r16 136 136 # A useful makefile conditional that is always false 137 137 AM_CONDITIONAL(ALWAYS_FALSE, false) 138 139 # A makefile conditional that is set to true if140 138 ]) # AC_COIN_SRCDIR_INIT 141 139 … … 193 191 194 192 AC_DEFUN([AC_COIN_PROG_CXX], 195 [AC_LANG_PUSH(C++) 193 [AC_REQUIRE([AC_COIN_PROG_CC]) #Let's try if that overcomes configuration problem with VC++ 6.0 194 AC_LANG_PUSH(C++) 196 195 197 196 AC_ARG_VAR(CXXDEFS,[Additional -D flags to be used when compiling C++ code.]) … … 246 245 cl | */cl) 247 246 coin_opt_cxxflags='-O2' 248 coin_add_cxxflags='-nologo - GX-GR -MT'247 coin_add_cxxflags='-nologo -EHsc -GR -MT' 249 248 coin_dbg_cxxflags='-Yd' 250 249 ;; … … 432 431 AC_DEFUN([AC_COIN_PROG_CC], 433 432 [AC_LANG_PUSH(C) 433 434 # For consistency, we set the C compiler to the same value of the C++ 435 # compiler, if the C++ is set, but the C compiler isn't (only for CXX=cl) 436 if test x"$CXX" != x; then 437 case $CXX in 438 cl*) 439 if test x"$CC" = x; then 440 CC="$CXX" 441 AC_MSG_WARN([C++ compiler name provided as $CXX, but CC is unset. Setting CC to $CXX]) 442 fi 443 ;; 444 esac 445 fi 434 446 435 447 AC_ARG_VAR(CDEFS,[Additional -D flags to be used when compiling C code.]) -
trunk/headers/configall_system_msc.h
r15 r16 9 9 10 10 /* Define to 1 if you have the <memory.h> header file. */ 11 /* #define HAVE_MEMORY_H */ 11 #define HAVE_MEMORY_H 1 12 12 13 13 /* Define to 1 if you have the <stdint.h> header file. */ … … 15 15 16 16 /* Define to 1 if you have the <stdlib.h> header file. */ 17 /* #define HAVE_STDLIB_H */ 17 #define HAVE_STDLIB_H 1 18 18 19 19 /* Define to 1 if you have the <strings.h> header file. */ … … 21 21 22 22 /* Define to 1 if you have the <string.h> header file. */ 23 /* #define HAVE_STRING_H */ 23 #define HAVE_STRING_H 1 24 24 25 25 /* Define to 1 if you have the <sys/stat.h> header file. */ 26 /* #define HAVE_SYS_STAT_H */ 26 #define HAVE_SYS_STAT_H 1 27 27 28 28 /* Define to 1 if you have the <sys/types.h> header file. */ 29 /* #define HAVE_SYS_TYPES_H */ 29 #define HAVE_SYS_TYPES_H 1 30 30 31 31 /* Define to 1 if you have the <unistd.h> header file. */ … … 33 33 34 34 /* Define to 1 if you have the ANSI C header files. */ 35 /* #define STDC_HEADERS */ 35 #define STDC_HEADERS 1 36
Note: See TracChangeset
for help on using the changeset viewer.