diff options
author | tnn <tnn@pkgsrc.org> | 2009-10-25 12:15:54 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-10-25 12:15:54 +0000 |
commit | a3ca25b55e1786361588d0e954b667ef0326c9f4 (patch) | |
tree | ee7dc072584d32f9bdb9531e50a11bfb7390f9fa /x11/xdm | |
parent | fbf6f2d7a5d56c0a35171e165fa7bf54813bef8f (diff) | |
download | pkgsrc-a3ca25b55e1786361588d0e954b667ef0326c9f4.tar.gz |
More build fixes for non-GNU cpp(1) which usually doesn't grok -undef.
From Alexander Nasonov in PR pkg/39879.
Diffstat (limited to 'x11/xdm')
-rw-r--r-- | x11/xdm/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11/xdm/Makefile b/x11/xdm/Makefile index 2dda12eae58..b616799fc34 100644 --- a/x11/xdm/Makefile +++ b/x11/xdm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2008/11/10 17:21:39 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2009/10/25 12:15:54 tnn Exp $ DISTNAME= xdm-1.1.6 PKGREVISION= 2 @@ -53,6 +53,11 @@ CONFIGURE_ARGS+= --with-random-device=/dev/urandom CONFIGURE_ARGS+= --with-default-vt=vt05 .endif +.include "../../mk/compiler.mk" +.if empty(PKGSRC_COMPILER:Mgcc) +CONFIGURE_ENV+= ac_cv_path_RAWCPP="cc -E -Uunix -" +.endif + .include "options.mk" .include "../../x11/libXaw/buildlink3.mk" |