diff options
author | heinz <heinz@pkgsrc.org> | 2005-12-23 19:27:50 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2005-12-23 19:27:50 +0000 |
commit | a5f7c15ecbfef20be8ba349ceaa3cb46911df7db (patch) | |
tree | 5e825fdae886e89c275636e8b8414b650616abea | |
parent | 2f738381c715ec18c01f2b09b812c1b6a9e0ecf5 (diff) | |
download | pkgsrc-a5f7c15ecbfef20be8ba349ceaa3cb46911df7db.tar.gz |
According to the README, gcc < 3.2 is not supported. This fixes build
problems on NetBSD 1.6.2
Using nbpax allows extracting the archive correctly on NetBSD 1.6.2 (tar
in the base system has problems with long file names) and should not
concern other platforms since nbpax is part of the bootstrap.
-rw-r--r-- | devel/libsigc++2/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/libsigc++2/Makefile b/devel/libsigc++2/Makefile index dffb9f87724..f9b07e2fa51 100644 --- a/devel/libsigc++2/Makefile +++ b/devel/libsigc++2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2005/08/10 11:45:38 adam Exp $ +# $NetBSD: Makefile,v 1.14 2005/12/23 19:27:50 heinz Exp $ DISTNAME= libsigc++-2.0.16 PKGNAME= libsigc++2-2.0.16 @@ -15,6 +15,11 @@ USE_LIBTOOL= yes USE_TOOLS+= gm4 gmake GNU_CONFIGURE= yes +# supported according to the file README +GCC_REQD+= 3.2 +# use something that can extract long filenames in GNU format on NetBSD 1.6.x +EXTRACT_USING= nbpax + PKGCONFIG_OVERRIDE= sigc++-2.0.pc.in .include "../../mk/pthread.buildlink3.mk" |