diff options
author | Rob Austein <sra@hactrn.net> | 2006-06-20 17:32:05 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-06-20 17:32:05 +0000 |
commit | eca4feb580cffd6af474f599efe3fe99505a525c (patch) | |
tree | 59fa47c6f197931d6da746cadf7ad37ff1ec4557 /openssl/vendor/current/shlib/sun.sh |
Importing OpenSSL 0.9.8b
svn path=/openssl/vendor/current/CHANGES; revision=1
Diffstat (limited to 'openssl/vendor/current/shlib/sun.sh')
-rw-r--r-- | openssl/vendor/current/shlib/sun.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/openssl/vendor/current/shlib/sun.sh b/openssl/vendor/current/shlib/sun.sh new file mode 100644 index 00000000..a890bbd3 --- /dev/null +++ b/openssl/vendor/current/shlib/sun.sh @@ -0,0 +1,8 @@ +FLAGS="-DTERMIO -O3 -DB_ENDIAN -fomit-frame-pointer -mv8 -Wall -Iinclude" +SHFLAGS="-DPIC -fpic" + +gcc -c -Icrypto $SHFLAGS -fpic $FLAGS -o crypto.o crypto/crypto.c +ld -G -z text -o libcrypto.so crypto.o + +gcc -c -Issl $SHFLAGS $FLAGS -o ssl.o ssl/ssl.c +ld -G -z text -o libssl.so ssl.o |