summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-21 23:55:33 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-21 23:55:33 +0000
commitab39f80ffc7ba8e57517eaaa622f55fa76747e7d (patch)
tree15f2250acd2e4dd589ded255f257e0bfb03feebf /sys-libs/zlib/files
parentVersion bump. (diff)
downloadhistorical-ab39f80ffc7ba8e57517eaaa622f55fa76747e7d.tar.gz
historical-ab39f80ffc7ba8e57517eaaa622f55fa76747e7d.tar.bz2
historical-ab39f80ffc7ba8e57517eaaa622f55fa76747e7d.zip
Generate DT_SONAME in the shared lib on BSD hosts #123571 by Diego Pettenò.
Package-Manager: portage-2.1_pre4-r1
Diffstat (limited to 'sys-libs/zlib/files')
-rw-r--r--sys-libs/zlib/files/zlib-1.2.3-bsd-soname.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys-libs/zlib/files/zlib-1.2.3-bsd-soname.patch b/sys-libs/zlib/files/zlib-1.2.3-bsd-soname.patch
new file mode 100644
index 000000000000..4c98b9814482
--- /dev/null
+++ b/sys-libs/zlib/files/zlib-1.2.3-bsd-soname.patch
@@ -0,0 +1,15 @@
+Generate a DT_SONAME on *BSD machines
+
+http://bugs.gentoo.org/123571
+
+--- configure
++++ configure
+@@ -80,7 +80,7 @@
+ SFLAGS="${CFLAGS-"-O3"} -fPIC"
+ CFLAGS="$cflags"
+ case `(uname -s || echo unknown) 2>/dev/null` in
+- Linux | linux | GNU | GNU/*)
++ Linux | linux | GNU | GNU/* | *BSD | DragonFly)
+ LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1"}
+ MAPFILE=${MAPFILE-"-Wl,--version-script,mapfile"};;
+ CYGWIN* | Cygwin* | cygwin* | OS/2* )