Changeset 373
- Timestamp:
- Jun 20, 2007 4:42:01 PM (14 years ago)
- Location:
- stable/0.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.5/coin.m4
r352 r373 508 508 fi 509 509 510 # It seems that we need to cleanup something here for the Windows 511 case "$CXX" in 512 cl* | */cl* | CL* | */CL* ) 513 sed -e 's/^void exit (int);//' confdefs.h >> confdefs.hh 514 mv confdefs.hh confdefs.h 515 ;; 516 esac 517 510 518 # Autoconf incorrectly concludes that cl recognises -g. It doesn't. 511 519 case "$CXX" in … … 564 572 # The MT and MTd options are mutually exclusive 565 573 coin_opt_cxxflags='-MT -O2' 566 coin_add_cxxflags='-nologo -EHsc -GR -wd4996 '574 coin_add_cxxflags='-nologo -EHsc -GR -wd4996 -D_CRT_SECURE_NO_DEPRECATE' 567 575 coin_dbg_cxxflags='-MTd' 568 576 ;; … … 923 931 cl* | */cl* | CL* | */CL*) 924 932 coin_opt_cflags='-MT -O2' 925 coin_add_cflags='-nologo -wd4996 '933 coin_add_cflags='-nologo -wd4996 -D_CRT_SECURE_NO_DEPRECATE' 926 934 coin_dbg_cflags='-MTd' 927 935 ;; -
stable/0.5/headers/configall_system_msc.h
r352 r373 63 63 64 64 /* Define to 1 if you have the <cstdlib> header file. */ 65 /* #undef HAVE_CSTDLIB */ 65 #define HAVE_CSTDLIB 1 66 67 /* Define to 1 if you have the <cstring> header file. */ 68 #define HAVE_CSTRING 1 66 69 67 70 /* Define to 1 if you have the <ctime> header file. */ … … 72 75 73 76 /* Define to 1 if you have the <dlfcn.h> header file. */ 74 /* #define HAVE_DLFCN_H */ 77 /* #undef HAVE_DLFCN_H */ 78 79 /* Define to 1 if function drand48 is available */ 80 /* #undef HAVE_DRAND48 */ 75 81 76 82 /* Define to 1 if you have the <float.h> header file. */ … … 89 95 #define HAVE_MEMORY_H 1 90 96 97 /* Define to 1 if function rand is available */ 98 #define HAVE_RAND 1 99 91 100 /* Define to 1 if you have the <stdarg.h> header file. */ 92 101 /* #undef HAVE_STDARG_H */ 93 102 94 103 /* Define to 1 if you have the <stdint.h> header file. */ 95 /* # defineHAVE_STDINT_H */104 /* #undef HAVE_STDINT_H */ 96 105 97 106 /* Define to 1 if you have the <stdio.h> header file. */ … … 100 109 /* Define to 1 if you have the <stdlib.h> header file. */ 101 110 #define HAVE_STDLIB_H 1 111 112 /* Define to 1 if function std::rand is available */ 113 #define HAVE_STD__RAND 1 102 114 103 115 /* Define to 1 if you have the <strings.h> header file. */
Note: See TracChangeset
for help on using the changeset viewer.