diff options
author | agc <agc@pkgsrc.org> | 2004-09-16 11:14:53 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2004-09-16 11:14:53 +0000 |
commit | 92afa9f3fd1bd849d5f5c85faa314369032ef6a5 (patch) | |
tree | 45be2ba2205a401a60631d7c59c98d06b175607b /editors | |
parent | eaf120951f183b319e2333de945d113845c788a2 (diff) | |
download | pkgsrc-92afa9f3fd1bd849d5f5c85faa314369032ef6a5.tar.gz |
For just now, disable autoconf checks for grantpt(3) - fixes a bulk build
problem.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/xjed/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/xjed/Makefile b/editors/xjed/Makefile index e9150f6faaf..3a2fc6f62c5 100644 --- a/editors/xjed/Makefile +++ b/editors/xjed/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/02/10 07:17:38 reed Exp $ +# $NetBSD: Makefile,v 1.8 2004/09/16 11:14:53 agc Exp $ # PKGNAME= xjed-0.99.16 .include "../jed/Makefile.common" @@ -15,4 +15,11 @@ MESSAGE_SRC= ${.CURDIR}/../jed/MESSAGE PLIST_SRC= ${.CURDIR}/../jed/PLIST PLIST_SRC+= ${.CURDIR}/PLIST.xjed +.include "../../mk/bsd.prefs.mk" + +# XXX For just now disable grantpt(3) for NetBSD-2.0F and later +.if ${OPSYS} == "NetBSD" +CONFIGURE_ENV+= ac_cv_func_grantpt=no +.endif + .include "../../mk/bsd.pkg.mk" |