diff options
author | ben <ben@pkgsrc.org> | 2005-12-31 14:40:38 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2005-12-31 14:40:38 +0000 |
commit | d71da55403c14423dffd07bdd95b33669f0bd984 (patch) | |
tree | 2c124f50f9474a15721a49659ced638e0fad819e /textproc/groff | |
parent | 2e521ca2531843093c52202ce9b49bf35227b272 (diff) | |
download | pkgsrc-d71da55403c14423dffd07bdd95b33669f0bd984.tar.gz |
When building on Interix, add Xext to X_EXTRA_LIBS. The xditview
program requires Xaw, which requires the Xlib shape routines, which on
Interix are in Xext. http://www.faqs.org/faqs/x-faq/part6/section-27.html
Diffstat (limited to 'textproc/groff')
-rw-r--r-- | textproc/groff/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/groff/Makefile b/textproc/groff/Makefile index 7badb6ec5b3..2548d27ae81 100644 --- a/textproc/groff/Makefile +++ b/textproc/groff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2005/12/09 20:40:56 wiz Exp $ +# $NetBSD: Makefile,v 1.32 2005/12/31 14:40:38 ben Exp $ # DISTNAME= groff-1.19.2 @@ -24,6 +24,10 @@ INFO_FILES= groff .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "Interix" +CONFIGURE_ENV+= X_EXTRA_LIBS=-lXext +.endif + .if defined(PAPERSIZE) CONFIGURE_ENV+= PAGE=${PAPERSIZE:Q} .endif |