aboutsummaryrefslogtreecommitdiffstats
path: root/package/pcre/patches
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-09-06 21:16:40 +0000
committerNicolas Thill <nico@openwrt.org>2005-09-06 21:16:40 +0000
commit4ce387cbb88c6c6ecd71cc73d02e4fbe9c5308c2 (patch)
tree5c71e33673f60259c60119c6c520b2e495e45754 /package/pcre/patches
parent0b15c5cf6e585f57b2f9b32a3a50737f78f75b00 (diff)
downloadupstream-4ce387cbb88c6c6ecd71cc73d02e4fbe9c5308c2.tar.gz
upstream-4ce387cbb88c6c6ecd71cc73d02e4fbe9c5308c2.tar.bz2
upstream-4ce387cbb88c6c6ecd71cc73d02e4fbe9c5308c2.zip
remove -L/usr/lib in pcre-config,
standardize Makefile git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1864 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/pcre/patches')
-rw-r--r--package/pcre/patches/750-pcre_config_cross.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/pcre/patches/750-pcre_config_cross.patch b/package/pcre/patches/750-pcre_config_cross.patch
new file mode 100644
index 0000000000..c61a7f5a1e
--- /dev/null
+++ b/package/pcre/patches/750-pcre_config_cross.patch
@@ -0,0 +1,27 @@
+diff -ruN pcre-5.0-old/pcre-config.in pcre-5.0-new/pcre-config.in
+--- pcre-5.0-old/pcre-config.in 2004-09-13 16:20:00.000000000 +0200
++++ pcre-5.0-new/pcre-config.in 2005-09-04 16:34:39.000000000 +0200
+@@ -18,6 +18,10 @@
+ libR=" -R@libdir@"
+ ;;
+ esac
++libS=
++if test @libdir@ != /usr/lib ; then
++ libS=-L@libdir@
++fi
+
+ while test $# -gt 0; do
+ case "$1" in
+@@ -52,10 +56,10 @@
+ echo $includes
+ ;;
+ --libs-posix)
+- echo -L@libdir@$libR -lpcreposix -lpcre
++ echo $libS$libR -lpcreposix -lpcre
+ ;;
+ --libs)
+- echo -L@libdir@$libR -lpcre
++ echo $libS$libR -lpcre
+ ;;
+ *)
+ echo "${usage}" 1>&2