diff options
author | tron <tron> | 2001-08-06 16:25:44 +0000 |
---|---|---|
committer | tron <tron> | 2001-08-06 16:25:44 +0000 |
commit | 4e7db2f5a87db2f807202f9dbe757de244535f66 (patch) | |
tree | a09f8c03cdc300686b0e293b7a5afb0419dd7dd9 /finance | |
parent | 9fab487dff6a9224438518f56451c4aea6e8eca4 (diff) | |
download | pkgsrc-4e7db2f5a87db2f807202f9dbe757de244535f66.tar.gz |
Provide an empty "wctype.h" on NetBSD 1.5.x systems which is enough to
make this package build. This fixes PR pkg/13617 by myself.
Diffstat (limited to 'finance')
-rw-r--r-- | finance/gnucash/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/finance/gnucash/Makefile b/finance/gnucash/Makefile index eea05550ede..88450847c05 100644 --- a/finance/gnucash/Makefile +++ b/finance/gnucash/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2001/08/01 23:50:19 mjl Exp $ +# $NetBSD: Makefile,v 1.13 2001/08/06 16:25:44 tron Exp $ DISTNAME= gnucash-1.6.1 CATEGORIES= finance @@ -43,6 +43,9 @@ CPPFLAGS+= -I${WRKSRC}/include post-extract: ${MKDIR} ${WRKSRC}/include ${LN} -s /usr/include/db.h ${WRKSRC}/include/db_185.h +.if !exists(/usr/include/wctype.h) + ${TOUCH} ${WRKSRC}/include/wctype.h +.endif .endif .include "../../mk/bsd.pkg.mk" |