diff options
author | marino <marino@pkgsrc.org> | 2012-08-07 14:54:36 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-08-07 14:54:36 +0000 |
commit | d10eb31f81efba638c257413aac3eab259b3f92f (patch) | |
tree | 2b27047b4ba7713403988d6f14e5815ccb8359c5 /editors/xjed | |
parent | 7cb824b26fef5297ef004c8645a7bd30e8821bb7 (diff) | |
download | pkgsrc-d10eb31f81efba638c257413aac3eab259b3f92f.tar.gz |
editors/xjed: Fix DragonFly build
DragonFly needs same hack as NetBSD - there's no strops.h header.
Diffstat (limited to 'editors/xjed')
-rw-r--r-- | editors/xjed/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editors/xjed/Makefile b/editors/xjed/Makefile index fdc9777b317..8b6a189301f 100644 --- a/editors/xjed/Makefile +++ b/editors/xjed/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2010/01/29 20:05:22 joerg Exp $ +# $NetBSD: Makefile,v 1.15 2012/08/07 14:54:36 marino Exp $ # PKGNAME= xjed-0.99.16 PKGREVISION= 1 @@ -21,7 +21,8 @@ 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" +# Also for Dragonfly, there's no strops.h header +.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" CONFIGURE_ENV+= ac_cv_func_grantpt=no .endif |