diff options
author | Rob Austein <sra@hactrn.net> | 2015-07-10 02:15:16 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-07-10 02:15:16 +0000 |
commit | 14b094c2ad6ca3731615b1e43febd8fb6d4856f6 (patch) | |
tree | 92f263bc2669ef820c94c5c3f3d2730db544bfa2 /openssl | |
parent | 94b0f91257ce1a56b3da72a864db626f07702655 (diff) |
Update to OpenSSL 1.0.2d.
svn path=/trunk/; revision=6075
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/Makefile.in | 2 | ||||
-rw-r--r-- | openssl/openssl-1.0.1m.tar.gz | bin | 4533406 -> 0 bytes | |||
-rw-r--r-- | openssl/openssl-1.0.2d.tar.gz | bin | 0 -> 5295447 bytes | |||
-rwxr-xr-x | openssl/update-snapshot.sh | 4 |
4 files changed, 3 insertions, 3 deletions
diff --git a/openssl/Makefile.in b/openssl/Makefile.in index 56ad42fc..cef8d434 100644 --- a/openssl/Makefile.in +++ b/openssl/Makefile.in @@ -1,6 +1,6 @@ # $Id$ -VERSION = 1.0.1m +VERSION = 1.0.2d OPENSSL_CONFIG_COMMAND = @OPENSSL_CONFIG_COMMAND@ OPENSSL_BUILD_DIRECTORY = ${abs_builddir}/openssl diff --git a/openssl/openssl-1.0.1m.tar.gz b/openssl/openssl-1.0.1m.tar.gz Binary files differdeleted file mode 100644 index 57e7446d..00000000 --- a/openssl/openssl-1.0.1m.tar.gz +++ /dev/null diff --git a/openssl/openssl-1.0.2d.tar.gz b/openssl/openssl-1.0.2d.tar.gz Binary files differnew file mode 100644 index 00000000..ec5b1937 --- /dev/null +++ b/openssl/openssl-1.0.2d.tar.gz diff --git a/openssl/update-snapshot.sh b/openssl/update-snapshot.sh index ef5895e7..1ff08bbb 100755 --- a/openssl/update-snapshot.sh +++ b/openssl/update-snapshot.sh @@ -6,7 +6,7 @@ #version="1.0.0-stable-SNAP-$(date +%Y%m%d)" -version="1.0.1m" +version="1.0.2d" tarball="openssl-${version}.tar.gz" @@ -15,7 +15,7 @@ case $version in *) directory=source;; esac -/usr/bin/fetch -m -p "ftp://ftp.openssl.org/${directory}/${tarball}" || exit +/bin/test -f "${tarball}" || /usr/bin/fetch -m -p "ftp://ftp.openssl.org/${directory}/${tarball}" || exit /bin/rm -f openssl |