summaryrefslogtreecommitdiff
path: root/devel/autoconf
diff options
context:
space:
mode:
authorjoerg <joerg>2014-03-06 15:41:50 +0000
committerjoerg <joerg>2014-03-06 15:41:50 +0000
commit7f32b51b7d2374c2116ad5071909894511e6507d (patch)
tree3ef2120b1fde6d63695c00138f01bd6b22e3a20a /devel/autoconf
parent3689a1b51bd2bae4b1995cbf082275a513b20811 (diff)
downloadpkgsrc-7f32b51b7d2374c2116ad5071909894511e6507d.tar.gz
Rpath is a linker option, so prefix it with -Wl. Bump revision.
Diffstat (limited to 'devel/autoconf')
-rw-r--r--devel/autoconf/Makefile4
-rw-r--r--devel/autoconf/distinfo3
-rw-r--r--devel/autoconf/patches/patch-lib_autoconf_fortran.m416
3 files changed, 20 insertions, 3 deletions
diff --git a/devel/autoconf/Makefile b/devel/autoconf/Makefile
index 72efe2f0ac1..3c96a7ddfc9 100644
--- a/devel/autoconf/Makefile
+++ b/devel/autoconf/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.86 2013/10/02 07:25:56 wiz Exp $
+# $NetBSD: Makefile,v 1.87 2014/03/06 15:41:50 joerg Exp $
#
# When updating this package, please update mk/gnu-config/config.guess,
# mk/gnu-config/config.sub, and mk/gnu-config/missing as well.
DISTNAME= autoconf-2.69
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=autoconf/}
diff --git a/devel/autoconf/distinfo b/devel/autoconf/distinfo
index 6faa062d5ff..b21e65e47e6 100644
--- a/devel/autoconf/distinfo
+++ b/devel/autoconf/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.27 2012/04/26 20:40:51 wiz Exp $
+$NetBSD: distinfo,v 1.28 2014/03/06 15:41:50 joerg Exp $
SHA1 (autoconf-2.69.tar.gz) = 562471cbcb0dd0fa42a76665acf0dbb68479b78a
RMD160 (autoconf-2.69.tar.gz) = 7b7d711535827826f32f5847095233e1e9925a29
Size (autoconf-2.69.tar.gz) = 1927468 bytes
SHA1 (patch-aa) = 481aec3f9d8c4b523ff27db50fccf6d219f36ffe
+SHA1 (patch-lib_autoconf_fortran.m4) = 4ac5fd71faf537b9839734a17da8d9890522252e
diff --git a/devel/autoconf/patches/patch-lib_autoconf_fortran.m4 b/devel/autoconf/patches/patch-lib_autoconf_fortran.m4
new file mode 100644
index 00000000000..84333336560
--- /dev/null
+++ b/devel/autoconf/patches/patch-lib_autoconf_fortran.m4
@@ -0,0 +1,16 @@
+$NetBSD: patch-lib_autoconf_fortran.m4,v 1.1 2014/03/06 15:41:50 joerg Exp $
+
+--- lib/autoconf/fortran.m4.orig 2014-02-24 14:06:39.000000000 +0000
++++ lib/autoconf/fortran.m4
+@@ -692,6 +692,11 @@ while test $[@%:@] != 1; do
+ done
+ ;;
+ -[[lLR]]*)
++ case $ac_arg in
++ -R*)
++ ac_arg="-Wl,$ac_arg"
++ ;;
++ esac
+ _AC_LIST_MEMBER_IF($ac_arg, $ac_cv_[]_AC_LANG_ABBREV[]_libs, ,
+ ac_cv_[]_AC_LANG_ABBREV[]_libs="$ac_cv_[]_AC_LANG_ABBREV[]_libs $ac_arg")
+ ;;