diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-05-01 09:53:37 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-05-01 09:53:37 -0300 |
commit | 4dc4e96c8a4fb7e34ecae3a39ef0f3f3fb275e97 (patch) | |
tree | 73da4d4d6d0fa1b4c6761a63ac3674aead8b12e3 /platform/windows | |
parent | 5ab65f0eadec6a67eda622787206a01c8af2cf7e (diff) |
-OpenSSL Fixes
Diffstat (limited to 'platform/windows')
-rw-r--r-- | platform/windows/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index a52a37b024..d1c5e96d32 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -117,7 +117,7 @@ def configure(env): env.Append(CCFLAGS=['/DGLES2_ENABLED'])
env.Append(CCFLAGS=['/DGLES1_ENABLED'])
env.Append(CCFLAGS=['/DGLEW_ENABLED'])
- env.Append(LIBS=['winmm','opengl32','dsound','kernel32','ole32','user32','gdi32','wsock32', 'shell32'])
+ env.Append(LIBS=['winmm','opengl32','dsound','kernel32','ole32','user32','gdi32','wsock32', 'shell32','advapi32'])
env.Append(LIBPATH=[os.getenv("WindowsSdkDir")+"/Lib"])
if (os.getenv("DXSDK_DIR")):
|