Skip to content

Commit

Permalink
Merge 4dc528e into a7bde08
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkorp committed Sep 13, 2016
2 parents a7bde08 + 4dc528e commit c8b6c29
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ matrix:
env: export NODE_VERSION="5.8" TARGET_ARCH="ia32"
sudo: required
- os: linux
env: export NODE_VERSION="6.2" TARGET_ARCH="ia32"
env: export NODE_VERSION="6.3" TARGET_ARCH="ia32"
sudo: required

git:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ environment:
- nodejs_version: "0.12"
- nodejs_version: "4.1"
- nodejs_version: "5.8"
- nodejs_version: "6.2"
- nodejs_version: "6.3"

matrix:
fast_finish: true
Expand Down
3 changes: 2 additions & 1 deletion generate/templates/templates/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
],

"variables": {
"coverage%": 0
"coverage%": 0,
'use_openssl_def': 0
},

"sources": [
Expand Down
3 changes: 2 additions & 1 deletion vendor/libgit2.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"library%": "static_library",
"openssl_enable_asm%": 0, # only supported with the Visual Studio 2012 (VC11) toolchain.
"gcc_version%": 0,
"is_clang%": 0
"is_clang%": 0,
"use_openssl_def": 0
},
"targets": [
{
Expand Down
3 changes: 2 additions & 1 deletion vendor/libssh2/win32/libssh2_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#define HAVE_SELECT

#ifdef _MSC_VER
#if _MSC_VER < 1900
#define snprintf _snprintf
#if _MSC_VER < 1500
#define vsnprintf _vsnprintf
Expand All @@ -33,10 +34,10 @@
#else
#define strncasecmp strnicmp
#define strcasecmp stricmp
#endif
#endif /* _MSC_VER */

/* Enable newer diffie-hellman-group-exchange-sha1 syntax */
#define LIBSSH2_DH_GEX_NEW 1

#endif /* LIBSSH2_CONFIG_H */

0 comments on commit c8b6c29

Please sign in to comment.