diff options
author | wiz <wiz@pkgsrc.org> | 2012-05-10 10:49:49 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-05-10 10:49:49 +0000 |
commit | 37d5deee789c2d2a08f5c9acaf570ac366613e22 (patch) | |
tree | 37f3c64614ea27d3174f82c8dc7943e5dd5cce1f /filesystems/fuse-ext2/patches | |
parent | a9e3aec384f5e89d3d8092f1d22d52acbd0c1203 (diff) | |
download | pkgsrc-37d5deee789c2d2a08f5c9acaf570ac366613e22.tar.gz |
Fix build with automake-1.2.
While here, add missing INSTALLATION_DIRS line (or perhaps it's a
Makefile dependency issue, but this fixes it).
Diffstat (limited to 'filesystems/fuse-ext2/patches')
-rw-r--r-- | filesystems/fuse-ext2/patches/patch-aa | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/filesystems/fuse-ext2/patches/patch-aa b/filesystems/fuse-ext2/patches/patch-aa index 3872cd80a9d..084fb8dbcb5 100644 --- a/filesystems/fuse-ext2/patches/patch-aa +++ b/filesystems/fuse-ext2/patches/patch-aa @@ -1,10 +1,17 @@ -$NetBSD: patch-aa,v 1.1.1.1 2011/07/09 15:27:11 tron Exp $ +$NetBSD: patch-aa,v 1.2 2012/05/10 10:49:49 wiz Exp $ +Make automake-1.12 happy. Add NetBSD support. --- configure.ac.orig 2009-12-24 12:38:06.000000000 +0000 -+++ configure.ac 2011-07-09 13:54:03.000000000 +0100 -@@ -15,6 +15,7 @@ ++++ configure.ac +@@ -11,10 +11,13 @@ AC_PROG_CC + AC_PROG_INSTALL + AC_PROG_LIBTOOL + AC_PATH_PROG(CHMOD, chmod, :) ++AM_PROG_AR ++AM_PROG_CC_C_O + case $target_os in *linux*) arch=linux;; *darwin*) arch=darwin;; @@ -12,7 +19,7 @@ Add NetBSD support. *) arch=unknown;; esac -@@ -137,7 +138,7 @@ +@@ -137,7 +140,7 @@ AC_CHECK_FUNCS([ \ ]) # Checks for libraries @@ -21,7 +28,7 @@ Add NetBSD support. AC_MSG_CHECKING([if FUSE on this system is too new for us]) AC_EGREP_CPP([fuse_version_yes], [ -@@ -193,6 +194,7 @@ +@@ -193,6 +196,7 @@ AC_SUBST(pkgconfigdir) AM_CONDITIONAL(LINUX, test "$arch" = linux) AM_CONDITIONAL(DARWIN, test "$arch" = darwin) |