From 484feaae9157d8e4d91e81d305b9cd0ff6af0c91 Mon Sep 17 00:00:00 2001 From: kinichiro Date: Wed, 18 Jan 2017 20:37:44 +0900 Subject: Stop generating .def files by update.sh --- update.sh | 7 ------- 1 file changed, 7 deletions(-) (limited to 'update.sh') diff --git a/update.sh b/update.sh index 335c5af..9a9dd5e 100755 --- a/update.sh +++ b/update.sh @@ -148,9 +148,6 @@ $CP crypto/compat/b_win.c crypto/bio $CP crypto/compat/ui_openssl_win.c crypto/ui # add the libcrypto symbol export list grep '^[[:alpha:]]' < $libcrypto_src/Symbols.list > crypto/crypto.sym -echo EXPORTS > crypto/crypto.def -grep -v BIO_s_log crypto/crypto.sym >> crypto/crypto.def -cat crypto/crypto_win.list >> crypto/crypto.def # generate assembly crypto algorithms asm_src=$libcrypto_src @@ -206,8 +203,6 @@ for i in `awk '/SOURCES|HEADERS/ { print $3 }' tls/Makefile.am` ; do done # add the libtls symbol export list grep '^[[:alpha:]]' < $libtls_src/Symbols.list > tls/tls.sym -echo EXPORTS > tls/tls.def -cat tls/tls.sym >> tls/tls.def $CP_LIBC $libc_src/string/strsep.c tls $CP_LIBC $libc_src/string/strsep.c libtls-standalone/compat @@ -251,8 +246,6 @@ for i in `awk '/SOURCES|HEADERS/ { print $3 }' ssl/Makefile.am` ; do done # add the libssl symbol export list grep '^[[:alpha:]]' < $libssl_src/Symbols.list > ssl/ssl.sym -echo EXPORTS > ssl/ssl.def -cat ssl/ssl.sym >> ssl/ssl.def # copy libcrypto tests echo "copying tests" -- cgit v1.2.3-55-g6feb