summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1998-09-22 18:40:36 +0000
committerSteve Price <steve@FreeBSD.org>1998-09-22 18:40:36 +0000
commitdb84801dd5c1c97326b2ed8c25b206c5753b841e (patch)
treea9d5081619380a8d27f8b619bc950cf96bfbdab5 /lang
parent1. Convert to ELF. (diff)
Only use -soname flag if building for an ELF world.
Noticed by: smace
Notes
Notes: svn path=/head/; revision=13327
Diffstat (limited to 'lang')
-rw-r--r--lang/tcl80/files/patch-ab10
1 files changed, 7 insertions, 3 deletions
diff --git a/lang/tcl80/files/patch-ab b/lang/tcl80/files/patch-ab
index 5f838cee4470..43f2075d98bd 100644
--- a/lang/tcl80/files/patch-ab
+++ b/lang/tcl80/files/patch-ab
@@ -1,11 +1,15 @@
--- configure.orig Tue Nov 25 10:31:42 1997
-+++ configure Wed Sep 16 21:30:16 1998
-@@ -3782,14 +3782,18 @@
++++ configure Tue Sep 22 13:29:15 1998
+@@ -3782,14 +3782,22 @@
echo "$ac_t""yes" 1>&6
SHLIB_CFLAGS="-fpic"
- SHLIB_LD="ld -Bshareable -x"
-+ SHLIB_LD="ld -Bshareable -x -soname \$@"
++ if [ "$PORTOBJFORMAT" = "elf" ]; then
++ SHLIB_LD="ld -shared -x -soname \$@"
++ else
++ SHLIB_LD="ld -Bshareable -x"
++ fi
SHLIB_LD_LIBS=""
SHLIB_SUFFIX=".so"
DL_OBJS="tclLoadDl.o"