~ubuntu-branches/ubuntu/precise/openssl098/precise

« back to all changes in this revision

Viewing changes to shlib/sun.sh

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2011-03-23 19:50:31 UTC
  • Revision ID: james.westby@ubuntu.com-20110323195031-6h9crj4bymhhr8b8
Tags: upstream-0.9.8o
ImportĀ upstreamĀ versionĀ 0.9.8o

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
FLAGS="-DTERMIO -O3 -DB_ENDIAN -fomit-frame-pointer -mv8 -Wall -Iinclude"
 
2
SHFLAGS="-DPIC -fpic"
 
3
 
 
4
gcc -c -Icrypto $SHFLAGS -fpic $FLAGS -o crypto.o crypto/crypto.c
 
5
ld -G -z text -o libcrypto.so crypto.o
 
6
 
 
7
gcc -c -Issl $SHFLAGS $FLAGS -o ssl.o ssl/ssl.c
 
8
ld -G -z text -o libssl.so ssl.o