deps: upgrade openssl sources to 1.1.0i · nodejs/node@05e48fd · GitHub
Skip to content

Commit 05e48fd

Browse files
shigekirvagg
authored andcommitted
deps: upgrade openssl sources to 1.1.0i
This updates all sources in deps/openssl/openssl with openssl-1.1.0i. PR-URL: #22318 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
1 parent 88665b3 commit 05e48fd

406 files changed

Lines changed: 6034 additions & 2897 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

deps/openssl/openssl/.gitignore

Lines changed: 175 additions & 0 deletions

deps/openssl/openssl/.travis.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ matrix:
6161
sources:
6262
- ubuntu-toolchain-r-test
6363
compiler: gcc-5
64-
env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -DPEDANTIC"
64+
env: UBUNTU_GCC_HACK="yes" CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -DPEDANTIC"
6565
- os: linux
6666
addons:
6767
apt:
6868
packages:
6969
- binutils-mingw-w64
7070
- gcc-mingw-w64
7171
compiler: i686-w64-mingw32-gcc
72-
env: CONFIG_OPTS="no-pic" TESTS="-test_fuzz"
72+
env: CONFIG_OPTS="no-pic"
7373
- os: linux
7474
addons:
7575
apt:
@@ -85,7 +85,7 @@ matrix:
8585
- binutils-mingw-w64
8686
- gcc-mingw-w64
8787
compiler: x86_64-w64-mingw32-gcc
88-
env: CONFIG_OPTS="no-pic" TESTS="-test_fuzz"
88+
env: CONFIG_OPTS="no-pic"
8989
- os: linux
9090
addons:
9191
apt:
@@ -112,6 +112,10 @@ before_script:
112112
srcdir=.;
113113
top=.;
114114
fi
115+
- if [ -n "$UBUNTU_GCC_HACK" ]; then
116+
$CC -dumpspecs | sed "s/--push-state//g; s/--pop-state/--as-needed/g" > gcc-specs.txt;
117+
CC="$CC -specs=gcc-specs.txt";
118+
fi
115119
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
116120
export CROSS_COMPILE=${CC%%gcc}; unset CC;
117121
$srcdir/Configure mingw $CONFIG_OPTS -Wno-pedantic-ms-format;
@@ -186,7 +190,7 @@ script:
186190
fi
187191
- if [ -n "$DESTDIR" ]; then
188192
mkdir "../$DESTDIR";
189-
if $make install install_docs DESTDIR="../$DESTDIR"; then
193+
if $make install DESTDIR="../$DESTDIR"; then
190194
echo -e '+\057\057\057\057\057 MAKE INSTALL_DOCS OK';
191195
else
192196
echo -e '+\057\057\057\057\057 MAKE INSTALL_DOCS FAILED'; false;

deps/openssl/openssl/CHANGES

Lines changed: 85 additions & 10 deletions

0 commit comments

Comments
 (0)