diff options
author | Kevin B Kenny <kennykb@acm.org> | 2008-04-06 00:52:09 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2008-04-06 00:52:09 (GMT) |
commit | e93902262cb7ce6834f3551a61a4d57bbdd98a52 (patch) | |
tree | 4a42b0741ff400d2bcb762503fad51d5698da6c9 /win/configure | |
parent | 7acf5b3af3b7d98e8b6e35ba4b5d829748d9ff69 (diff) | |
download | tcl-e93902262cb7ce6834f3551a61a4d57bbdd98a52.zip tcl-e93902262cb7ce6834f3551a61a4d57bbdd98a52.tar.gz tcl-e93902262cb7ce6834f3551a61a4d57bbdd98a52.tar.bz2 |
* tests/chanio.test (chan-io-53.9):
* tests/io.test (io-53.9): Made test cleanup robust against
the possibility of slow process shutdown on Windows.
* win/tcl.m4: Added -D_CRT_SECURE_NO_DEPRECATE and
-DCRT_NONSTDC_NO_DEPRECATE to the MSVC compilation flags
so that the compilation doesn't barf on perfectly reasonable
Posix system calls.
* win/configure: Manually patched (don't have the right autoconf
to hand).
Diffstat (limited to 'win/configure')
-rwxr-xr-x | win/configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/configure b/win/configure index afe600c..7f72b09 100755 --- a/win/configure +++ b/win/configure @@ -4122,6 +4122,9 @@ _ACEOF MAKE_EXE="\${CC} -Fe\$@" LIBPREFIX="" + CFLAGS_DEBUG="${CFLAGS_DEBUG} -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE" + CFLAGS_OPTIMIZE="${CFLAGS_OPTIMIZE} -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE" + EXTRA_CFLAGS="" CFLAGS_WARNING="-W3" LDFLAGS_DEBUG="-debug:full" |