Skip to content

Commit f4ab43c

Browse files
John Haleytbranyen
authored andcommitted
Trying to get openssh building
1 parent abec2e1 commit f4ab43c

2 files changed

Lines changed: 18 additions & 8 deletions

File tree

vendor/libgit2.gyp

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"dependencies": [
1515
"zlib",
1616
"http_parser",
17-
"libssh2"
17+
"libssh2",
18+
"openssl.gyp:openssl"
1819
],
1920
"sources": [
2021
"libgit2/src/array.h",
@@ -335,9 +336,7 @@
335336
"include_dirs": [
336337
"libgit2/include",
337338
"libgit2/src",
338-
"libgit2/deps/regex",
339-
"libssh2/include",
340-
"libssh2/src"
339+
"libgit2/deps/regex"
341340
],
342341
"direct_dependent_settings": {
343342
"include_dirs": [
@@ -451,8 +450,15 @@
451450
"include_dirs": [
452451
"libssh2/src",
453452
"libssh2/win32",
454-
"libssh2/include",
453+
"libssh2/include"
455454
],
455+
"direct_dependent_settings": {
456+
"include_dirs": [
457+
"libssh2/src",
458+
"libssh2/win32",
459+
"libssh2/include"
460+
]
461+
}
456462
}],
457463
]
458464
},

vendor/openssl.gyp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44
{
5-
"includes": [
6-
"common.gypi",
7-
],
5+
"variables": {
6+
"target_arch%": "x86",
7+
"library%": "static_library",
8+
"openssl_enable_asm%": 0, # only supported with the Visual Studio 2012 (VC11) toolchain.
9+
"gcc_version%": 0,
10+
"is_clang%": 0,
11+
},
812
"targets": [
913
{
1014
"target_name": "openssl",

0 commit comments

Comments
 (0)