diff options
author | mph <mph@FreeBSD.org> | 1998-05-18 06:52:35 +0800 |
---|---|---|
committer | mph <mph@FreeBSD.org> | 1998-05-18 06:52:35 +0800 |
commit | 9aaa74fd1f5f2a2d99520b2144dd77bc847b3280 (patch) | |
tree | f4219a8bdc99fc57ef5bdcd9e4a419f1011e47d2 /devel | |
parent | 4f0c1179aaac91cd39b016db742232ac3235ffd1 (diff) | |
download | freebsd-ports-gnome-9aaa74fd1f5f2a2d99520b2144dd77bc847b3280.tar.gz freebsd-ports-gnome-9aaa74fd1f5f2a2d99520b2144dd77bc847b3280.tar.zst freebsd-ports-gnome-9aaa74fd1f5f2a2d99520b2144dd77bc847b3280.zip |
This is part of the 1.2.2 upgrade. Somehow it got lost in the CVS
maneuverings.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libslang/files/patch-ad | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/devel/libslang/files/patch-ad b/devel/libslang/files/patch-ad new file mode 100644 index 000000000000..d65504de3b80 --- /dev/null +++ b/devel/libslang/files/patch-ad @@ -0,0 +1,26 @@ +--- configure.orig Sun May 17 18:49:16 1998 ++++ configure Sun May 17 18:50:22 1998 +@@ -1505,19 +1505,10 @@ + + + +-if test "$GCC" = yes; then +- ELF_CC="gcc" +- ELF_CFLAGS="-O2 -fno-strength-reduce -fPIC" +- ELF_LINK="gcc -shared -Wl,-soname#" +- ELF_LINK_CMD="\$(ELF_LINK),\$(ELFLIB_MAJOR)" +-else +- ELF_CC="cc" +- ELF_CFLAGS="-K pic" +- ELF_LINK="ld -G -z text" +- ELF_LINK_CMD="\$(ELF_LINK)" +-fi +- +- ++ELF_CC="\$(CC)" ++ELF_CFLAGS="\$(CFLAGS) -fPIC" ++ELF_LINK="\$(CC) -shared -Wl,-x" ++ELF_LINK_CMD="\$(ELF_LINK)" + + + |