Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 5d59e1e

Browse files
committed
build: Refactor openssl stub library generation.
Replace uses of the the thirdparty "openssl" target with "openssl_stubs". This fixes a problem when compiling with MS Visual Studio 2010 Express Edition due to having two projects named "openssl" in the solution.
1 parent d0de9a6 commit 5d59e1e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

engine/engine-common.gyp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080

8181
'dependencies':
8282
[
83-
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl',
84-
83+
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
84+
8585
# Because our headers are so messed up...
8686
'../libfoundation/libfoundation.gyp:libFoundation',
8787
'../libgraphics/libgraphics.gyp:libGraphics',

engine/kernel-development.gyp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
'dependencies':
4848
[
4949
'kernel.gyp:kernel',
50-
51-
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl',
50+
51+
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
5252
'../thirdparty/libz/libz.gyp:libz',
5353
],
5454

engine/kernel.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
'../thirdparty/libgif/libgif.gyp:libgif',
2424
'../thirdparty/libjpeg/libjpeg.gyp:libjpeg',
25-
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl',
25+
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
2626
'../thirdparty/libpcre/libpcre.gyp:libpcre',
2727
'../thirdparty/libpng/libpng.gyp:libpng',
2828
'../thirdparty/libz/libz.gyp:libz',

revdb/revdb.gyp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
[
8585
'../libexternal/libexternal.gyp:libExternal',
8686
'../thirdparty/libmysql/libmysql.gyp:libmysql',
87-
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl',
87+
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
8888
'../thirdparty/libz/libz.gyp:libz',
8989
],
9090

@@ -142,7 +142,7 @@
142142
[
143143
'../libexternal/libexternal.gyp:libExternal',
144144
'../thirdparty/libmysql/libmysql.gyp:libmysql',
145-
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl',
145+
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
146146
'../thirdparty/libz/libz.gyp:libz',
147147
],
148148

@@ -321,7 +321,7 @@
321321
[
322322
'../libexternal/libexternal.gyp:libExternal',
323323
'../thirdparty/libpq/libpq.gyp:libpq',
324-
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl',
324+
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
325325
],
326326

327327
'include_dirs':
@@ -367,7 +367,7 @@
367367
[
368368
'../libexternal/libexternal.gyp:libExternal',
369369
'../thirdparty/libpq/libpq.gyp:libpq',
370-
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl',
370+
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
371371
],
372372

373373
'include_dirs':

thirdparty

0 commit comments

Comments
 (0)