Build shared libaries for Unixware-7 and OpenUNIX-8 in old (pre 0.9.7)
style (Boyd Lynn Gerber <gerberb@zenez.com>).
This commit is contained in:
parent
a9ed4da8eb
commit
978ebf0141
48
shlib/svr5-shared-gcc.sh
Executable file
48
shlib/svr5-shared-gcc.sh
Executable file
@ -0,0 +1,48 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
major="0"
|
||||
minor="9.7"
|
||||
|
||||
slib=libssl
|
||||
sh_slib=$slib.so.$major.$minor
|
||||
|
||||
clib=libcrypto
|
||||
sh_clib=$clib.so.$major.$minor
|
||||
|
||||
FLAGS="-O3 -DFILIO_H -fomit-frame-pointer -pthread
|
||||
SHFLAGS="-DPIC -fPIC"
|
||||
|
||||
touch $sh_clib
|
||||
touch $sh_slib
|
||||
|
||||
echo collecting all object files for $clib.so
|
||||
OBJS=
|
||||
find . -name \*.o -print > allobjs
|
||||
for obj in `ar t libcrypto.a`
|
||||
do
|
||||
OBJS="$OBJS `grep $obj allobjs`"
|
||||
done
|
||||
|
||||
echo linking $clib.so
|
||||
gcc -G -o $sh_clib -h $sh_clib $OBJS -lnsl -lsocket
|
||||
|
||||
rm -f $clib.so
|
||||
ln -s $sh_clib $clib.so
|
||||
|
||||
echo collecting all object files for $slib.so
|
||||
OBJS=
|
||||
for obj in `ar t libssl.a`
|
||||
do
|
||||
OBJS="$OBJS `grep $obj allobjs`"
|
||||
done
|
||||
|
||||
echo linking $slib.so
|
||||
gcc -G -o $sh_slib -h $sh_slib $OBJS -L. -lcrypto
|
||||
|
||||
rm -f $slib.so
|
||||
ln -s $sh_slib $slib.so
|
||||
|
||||
mv libRSAglue.a libRSAglue.a.orig
|
||||
mv libcrypto.a libcrypto.a.orig
|
||||
mv libssl.a libssl.a.orig
|
||||
|
28
shlib/svr5-shared-installed
Executable file
28
shlib/svr5-shared-installed
Executable file
@ -0,0 +1,28 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
major="0"
|
||||
minor="9.7"
|
||||
|
||||
slib=libssl
|
||||
sh_slib=$slib.so.$major.$minor
|
||||
|
||||
clib=libcrypto
|
||||
sh_clib=$clib.so.$major.$minor
|
||||
|
||||
# If you want them in /usr/local/lib then change INSTALLTOP to point there.
|
||||
#INSTALLTOP=/usr/local/ssl/lib
|
||||
INSTALLTOP=/usr/local/lib
|
||||
|
||||
cp -p $sh_clib $INSTALLTOP
|
||||
cp -p $sh_slib $INSTALLTOP
|
||||
|
||||
PWD=`pwd`
|
||||
cd $INSTALLTOP
|
||||
rm -f $INSTALLTOP/$clib.so
|
||||
ln -s $INSTALLTOP/$sh_clib $clib.so
|
||||
|
||||
rm -f $INSTALLTOP/$slib.so
|
||||
ln -s $INSTALLTOP/$sh_slib $slib.so
|
||||
|
||||
cd $PWD
|
||||
|
48
shlib/svr5-shared.sh
Executable file
48
shlib/svr5-shared.sh
Executable file
@ -0,0 +1,48 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
major="0"
|
||||
minor="9.7"
|
||||
|
||||
slib=libssl
|
||||
sh_slib=$slib.so.$major.$minor
|
||||
|
||||
clib=libcrypto
|
||||
sh_clib=$clib.so.$major.$minor
|
||||
|
||||
FLAGS="-O -DFILIO_H -Kalloca -Kthread"
|
||||
SHFLAGS="-Kpic -DPIC"
|
||||
|
||||
touch $sh_clib
|
||||
touch $sh_slib
|
||||
|
||||
echo collecting all object files for $clib.so
|
||||
OBJS=
|
||||
find . -name \*.o -print > allobjs
|
||||
for obj in `ar t libcrypto.a`
|
||||
do
|
||||
OBJS="$OBJS `grep $obj allobjs`"
|
||||
done
|
||||
|
||||
echo linking $clib.so
|
||||
cc -G -o $sh_clib -h $sh_clib $OBJS -lnsl -lsocket
|
||||
|
||||
rm -f $clib.so
|
||||
ln -s $sh_clib $clib.so
|
||||
|
||||
echo collecting all object files for $slib.so
|
||||
OBJS=
|
||||
for obj in `ar t libssl.a`
|
||||
do
|
||||
OBJS="$OBJS `grep $obj allobjs`"
|
||||
done
|
||||
|
||||
echo linking $slib.so
|
||||
cc -G -o $sh_slib -h $sh_slib $OBJS -L. -lcrypto
|
||||
|
||||
rm -f $slib.so
|
||||
ln -s $sh_slib $slib.so
|
||||
|
||||
mv libRSAglue.a libRSAglue.a.orig
|
||||
mv libcrypto.a libcrypto.a.orig
|
||||
mv libssl.a libssl.a.orig
|
||||
|
Loading…
Reference in New Issue
Block a user