summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/cryptlib/files/cryptlib-3.3.2-ld.patch')
-rw-r--r--dev-libs/cryptlib/files/cryptlib-3.3.2-ld.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-libs/cryptlib/files/cryptlib-3.3.2-ld.patch b/dev-libs/cryptlib/files/cryptlib-3.3.2-ld.patch
deleted file mode 100644
index e54f88f..0000000
--- a/dev-libs/cryptlib/files/cryptlib-3.3.2-ld.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- tools/buildsharedlib.sh
-+++ tools/buildsharedlib.sh
-@@ -115,13 +115,13 @@
- *)
- if [ `$LD -v 2>&1 | grep -c gcc` -gt 0 -a \
- `gcc -Wl,-Bsymbolic 2>&1 | grep -c unrecognized` = 0 ] ; then
-- $LD -shared -Wl,-Bsymbolic -o $LIBNAME `cat $LINKFILE` `./tools/getlibs.sh autodetect` ;
-+ $LD -shared $LDFLAGS -Wl,-soname,$LIBNAME -Wl,-Bsymbolic -o $LIBNAME `cat $LINKFILE` `./tools/getlibs.sh autodetect` ;
- else
-- $LD -shared -o $LIBNAME `cat $LINKFILE` `./tools/getlibs.sh autodetect` ;
-+ $LD -shared $LDFLAGS -Wl,-soname,$LIBNAME -o $LIBNAME `cat $LINKFILE` `./tools/getlibs.sh autodetect` ;
- fi
- if [ `which objdump` -a `objdump -p $LIBNAME | grep -c TEXTREL` -gt '0' ] ; then
- echo "Warning: Shared library still contains TEXTREL records." ;
- fi
-- strip $LIBNAME ;;
-+ ;;
- esac
- rm -f $LINKFILE