diff options
author | markus <> | 2003-11-11 21:22:16 +0000 |
---|---|---|
committer | markus <> | 2003-11-11 21:22:16 +0000 |
commit | fd84abe5019daf5a6869e1d12702e3e11b7a81bc (patch) | |
tree | 03feb4834f445bfefefaf10e53418c5bb708c9c0 /src/lib/libcrypto/util | |
parent | 9cea7b85baecb1a02a3ea617de73d9693a9792eb (diff) | |
download | openbsd-fd84abe5019daf5a6869e1d12702e3e11b7a81bc.tar.gz openbsd-fd84abe5019daf5a6869e1d12702e3e11b7a81bc.tar.bz2 openbsd-fd84abe5019daf5a6869e1d12702e3e11b7a81bc.zip |
import 0.9.7c
Diffstat (limited to 'src/lib/libcrypto/util')
-rw-r--r-- | src/lib/libcrypto/util/extract-names.pl | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/util/libeay.num | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/util/pl/Mingw32.pl | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/util/point.sh | 6 |
4 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/libcrypto/util/extract-names.pl b/src/lib/libcrypto/util/extract-names.pl index d413a045cc..9f2ad5ef16 100644 --- a/src/lib/libcrypto/util/extract-names.pl +++ b/src/lib/libcrypto/util/extract-names.pl | |||
@@ -9,8 +9,8 @@ while(<STDIN>) { | |||
9 | } elsif ($name) { | 9 | } elsif ($name) { |
10 | if (/ - /) { | 10 | if (/ - /) { |
11 | s/ - .*//; | 11 | s/ - .*//; |
12 | s/[ \t,]+/ /g; | 12 | s/,[ \t]+/,/g; |
13 | push @words, split ' '; | 13 | push @words, split ','; |
14 | } | 14 | } |
15 | } | 15 | } |
16 | if (/^=head1 *NAME *$/) { | 16 | if (/^=head1 *NAME *$/) { |
diff --git a/src/lib/libcrypto/util/libeay.num b/src/lib/libcrypto/util/libeay.num index f5c8c0be8a..203c7713e7 100644 --- a/src/lib/libcrypto/util/libeay.num +++ b/src/lib/libcrypto/util/libeay.num | |||
@@ -2801,3 +2801,5 @@ BIO_indent 3242 EXIST::FUNCTION: | |||
2801 | BUF_strlcpy 3243 EXIST::FUNCTION: | 2801 | BUF_strlcpy 3243 EXIST::FUNCTION: |
2802 | OpenSSLDie 3244 EXIST::FUNCTION: | 2802 | OpenSSLDie 3244 EXIST::FUNCTION: |
2803 | OPENSSL_cleanse 3245 EXIST::FUNCTION: | 2803 | OPENSSL_cleanse 3245 EXIST::FUNCTION: |
2804 | ENGINE_setup_bsd_cryptodev 3246 EXIST:__FreeBSD__:FUNCTION:ENGINE | ||
2805 | ERR_release_err_state_table 3247 EXIST::FUNCTION:LHASH | ||
diff --git a/src/lib/libcrypto/util/pl/Mingw32.pl b/src/lib/libcrypto/util/pl/Mingw32.pl index 043a3a53ee..4bee638c4a 100644 --- a/src/lib/libcrypto/util/pl/Mingw32.pl +++ b/src/lib/libcrypto/util/pl/Mingw32.pl | |||
@@ -85,7 +85,7 @@ sub do_lib_rule | |||
85 | ($Name=$name) =~ tr/a-z/A-Z/; | 85 | ($Name=$name) =~ tr/a-z/A-Z/; |
86 | 86 | ||
87 | $ret.="$target: \$(${Name}OBJ)\n"; | 87 | $ret.="$target: \$(${Name}OBJ)\n"; |
88 | $ret.="\t\$(RM) $target\n"; | 88 | $ret.="\tif exist $target \$(RM) $target\n"; |
89 | $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n"; | 89 | $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n"; |
90 | $ret.="\t\$(RANLIB) $target\n\n"; | 90 | $ret.="\t\$(RANLIB) $target\n\n"; |
91 | } | 91 | } |
diff --git a/src/lib/libcrypto/util/point.sh b/src/lib/libcrypto/util/point.sh index ce7dcc56df..4790e08f8a 100644 --- a/src/lib/libcrypto/util/point.sh +++ b/src/lib/libcrypto/util/point.sh | |||
@@ -1,10 +1,10 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | rm -f $2 | 3 | rm -f "$2" |
4 | if test "$OSTYPE" = msdosdjgpp; then | 4 | if test "$OSTYPE" = msdosdjgpp; then |
5 | cp $1 $2 | 5 | cp "$1" "$2" |
6 | else | 6 | else |
7 | ln -s $1 $2 | 7 | ln -s "$1" "$2" |
8 | fi | 8 | fi |
9 | echo "$2 => $1" | 9 | echo "$2 => $1" |
10 | 10 | ||