Add schannel support (win32 only)

Fix a couple compile warnings.
Extend features timeout to 5 seconds.
This commit is contained in:
James Canete
2007-11-05 02:30:04 +00:00
parent f45380bb23
commit 1f453d2ecf
5 changed files with 552 additions and 7 deletions

View File

@@ -47,6 +47,7 @@ Sources = Split("""
util.c
thread.c
snprintf.c
tls_schannel.c
oocontext.cpp
oostanza.cpp
""")
@@ -71,7 +72,9 @@ Examples = Split("""
env = Environment()
if env['CC'] == 'gcc':
env.Append(CCFLAGS=["-g", "-Wall"])
if env['CC'] == 'cl':
env.Append(CCFLAGS=["/MDd", "/ZI"])
expatenv = env.Copy()
# feature defs
expatenv.Append(CCFLAGS=" -DXML_DTD")