pcre/pcre-8.21-multilib.patch
Andreas Jaeger fd7121c9e0 Accepting request 227257 from home:scarabeus_iv
- Add automake and autoconf as explicit deps as we run autoreconf

- Add patch pcre-8.21-multilib.patch to fix RPATH issues.
  * The patch is taken from RedHat.

- Clean up with the spec cleaner. Use -j1 in tests as it is not
  really thread safe

- Version bump to 8.34:
  * warning fixes
  * perl fixes
  * unocode6.3.0 support
  * gconv support

OBS-URL: https://build.opensuse.org/request/show/227257
OBS-URL: https://build.opensuse.org/package/show/Base:System/pcre?expand=0&rev=54
2014-03-28 11:57:24 +00:00

38 lines
752 B
Diff

From 1d5ce3e2e6341b01609aefab20786a8638fee17a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
Date: Tue, 6 Dec 2011 18:44:11 +0100
Subject: [PATCH] Fix multilib
Do not set RPATH nor add explicit -L path to compiler.
---
pcre-config.in | 12 ------------
1 files changed, 0 insertions(+), 12 deletions(-)
diff --git a/pcre-config.in b/pcre-config.in
index ccbf210..aeee182 100644
--- a/pcre-config.in
+++ b/pcre-config.in
@@ -16,19 +16,7 @@ if test $# -eq 0; then
fi
libR=
-case `uname -s` in
- *SunOS*)
- libR=" -R@libdir@"
- ;;
- *BSD*)
- libR=" -Wl,-R@libdir@"
- ;;
-esac
-
libS=
-if test @libdir@ != /usr/lib ; then
- libS=-L@libdir@
-fi
while test $# -gt 0; do
case "$1" in
--
1.7.7.4