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 | e0bb94b23e193f76014a4be031872b76c511ca61 (patch) | |
tree | ee7dc072584d32f9bdb9531e50a11bfb7390f9fa /x11/xdm | |
parent | 3bbac7b9a26a4ad9c6fd86d20b6e1b77f48ce161 (diff) | |
download | pkgsrc-e0bb94b23e193f76014a4be031872b76c511ca61.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" |