diff options
author | reed <reed@pkgsrc.org> | 2004-12-17 18:20:32 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2004-12-17 18:20:32 +0000 |
commit | b3ebd23fddaa132ef2d1bd182837ca8da6447d55 (patch) | |
tree | ab0fc4da65b29c21264c85759b6572078b04dfa2 /databases | |
parent | 126d876ff2fcd9ac988ff57791b57a30bee4a7bd (diff) | |
download | pkgsrc-b3ebd23fddaa132ef2d1bd182837ca8da6447d55.tar.gz |
Patch for configure added so correct perl will be used.
Fixes error caused by using native perl:
configure: error: XML::Parser perl module is required for intltool
(Noticed on Mac OS X. Okay'd by minskim.)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/libgda/distinfo | 3 | ||||
-rw-r--r-- | databases/libgda/patches/patch-ad | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/databases/libgda/distinfo b/databases/libgda/distinfo index 7a3426abb69..55ce2a8129c 100644 --- a/databases/libgda/distinfo +++ b/databases/libgda/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.9 2004/04/20 16:15:48 jmmv Exp $ +$NetBSD: distinfo,v 1.10 2004/12/17 18:20:33 reed Exp $ SHA1 (libgda-1.0.4.tar.bz2) = 8ea2b59c9b35230a2e43a6495b148b5507f2e79b Size (libgda-1.0.4.tar.bz2) = 1112201 bytes SHA1 (patch-aa) = 72bb5daae7ad2d12e74256d443b1813d68fe86b3 SHA1 (patch-ab) = 833f31fd0c045ff7c15e0a4e0d76f50f389c7cf2 SHA1 (patch-ac) = 962381015f8df753b35c45935f90758c2c634efa +SHA1 (patch-ad) = 4534d447d4e6d0ead87b354bd2662d88387578bb diff --git a/databases/libgda/patches/patch-ad b/databases/libgda/patches/patch-ad new file mode 100644 index 00000000000..6130e20080f --- /dev/null +++ b/databases/libgda/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2004/12/17 18:20:32 reed Exp $ + +--- configure.orig Thu Dec 16 17:58:45 2004 ++++ configure Thu Dec 16 17:59:41 2004 +@@ -2046,7 +2046,7 @@ + echo "$as_me: error: perl 5.x required for intltool" >&2;} + { (exit 1); exit 1; }; } + fi +-if `perl -e "require XML::Parser" 2>/dev/null`; then ++if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then + : + else + { { echo "$as_me:$LINENO: error: XML::Parser perl module is required for intltool" >&5 |