aboutsummaryrefslogtreecommitdiff
path: root/openssl/trunk/crypto/bio/bss_dgram.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/trunk/crypto/bio/bss_dgram.c')
0 files changed, 0 insertions, 0 deletions
;sra@hactrn.net> 2015-07-10 02:15:16 +0000 committer Rob Austein <sra@hactrn.net> 2015-07-10 02:15:16 +0000 Update to OpenSSL 1.0.2d.' href='/sra/rpki.net/commit/openssl/update-snapshot.sh?id=14b094c2ad6ca3731615b1e43febd8fb6d4856f6'>14b094c2
d59d3e4d











14bba808

d59d3e4d

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34


           
                                                                   

                                             

                                            
                


                                   




                              
                                                                                                         











                              

                                                                                                         

                                 
#!/bin/sh -
# $Id$
#
# Fetch today's OpenSSL tarball and do everything needed to make it
# the current code other than the svn commit.

#version="1.0.0-stable-SNAP-$(date +%Y%m%d)"

version="1.0.2h"

tarball="openssl-${version}.tar.gz"

case $version in
  *SNAP*) directory=snapshot;;
  *)      directory=source;;
esac

/bin/test -f "${tarball}" || /usr/bin/fetch -m -p "ftp://ftp.openssl.org/${directory}/${tarball}" || exit

/bin/rm -f openssl

for i in *.tar.gz
do
  if [ "$i" != "$tarball" ]
  then
    /bin/rm -rf "${i%.tar.gz}"
    /usr/local/bin/svn rm "$i"
  fi
done

/usr/bin/awk -v version="$version" '/^VERSION = / {$NF = version} {print}' Makefile.in >Makefile.in.$$ &&
/bin/mv Makefile.in.$$ Makefile.in

/usr/local/bin/svn add "$tarball"