diff options
author | dholland <dholland@pkgsrc.org> | 2011-07-26 16:05:27 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2011-07-26 16:05:27 +0000 |
commit | 4add9527a51b715e0a1258ba65674aa9d0394338 (patch) | |
tree | db346e675d77aad1add685e75d478300ad487cb4 /devel/imake | |
parent | f60ac5bfb594ea50c567bb3a9379b19bc2b5a438 (diff) | |
download | pkgsrc-4add9527a51b715e0a1258ba65674aa9d0394338.tar.gz |
When using clang, use devel/ucpp as the C preprocessor, as clang's cpp
destroys tabs in makefiles and thereby causes things to fail miserably.
Diffstat (limited to 'devel/imake')
-rw-r--r-- | devel/imake/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/devel/imake/Makefile b/devel/imake/Makefile index 225e1d68e27..72771939f81 100644 --- a/devel/imake/Makefile +++ b/devel/imake/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2010/05/21 22:10:11 schwarz Exp $ +# $NetBSD: Makefile,v 1.11 2011/07/26 16:05:27 dholland Exp $ DISTNAME= imake-1.0.3 CATEGORIES= x11 devel @@ -22,17 +22,24 @@ CONFIGURE_ENV+= HAS_PERL=no REPLACE_SH+= mkhtmlindex.sh .include "../../mk/compiler.mk" -.if empty(PKGSRC_COMPILER:Mgcc) +.if !empty(PKGSRC_COMPILER:Mclang) +# clang's cpp destroys whitespace, particularly hard tabs in makefiles, +# which is fatal for imake. +DEPENDS+=ucpp-[0-9]*:../../devel/ucpp +CONFIGURE_ENV+= ac_cv_path_RAWCPP="ucpp -s" + +.elif empty(PKGSRC_COMPILER:Mgcc) CONFIGURE_ENV+= ac_cv_path_RAWCPP="cc -E -Uunix -" -. if ${OPSYS} == "SunOS" +.endif + +# This required with some C preprocessors and not others, +# but is harmless when not required. SUBST_CLASSES+= xmkmf SUBST_MESSAGE.xmkmf= Fixing "xmkmf" script. SUBST_STAGE.xmkmf= post-build SUBST_FILES.xmkmf= xmkmf SUBST_SED.xmkmf= -e "s/^configdirspec= */configdirspec=/" -. endif -.endif .include "../../x11/xproto/buildlink3.mk" |