diff options
author | tnn <tnn@pkgsrc.org> | 2009-09-22 19:34:05 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-09-22 19:34:05 +0000 |
commit | e087b6c54ea971e2d8ebcf22c6fb00682ae8647e (patch) | |
tree | 8ba4f171e06723a9d6e9fc45b9000d7dd651d62c /x11/libXt | |
parent | 7952d4e3c9768b91bb8442d05e1eae10731ea1b4 (diff) | |
download | pkgsrc-e087b6c54ea971e2d8ebcf22c6fb00682ae8647e.tar.gz |
Invoke the C preprocessor in a portable manner on all non-GCC compilers.
This is PR pkg/39879.
Diffstat (limited to 'x11/libXt')
-rw-r--r-- | x11/libXt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/libXt/Makefile b/x11/libXt/Makefile index b689335f3ab..d2f38b4552a 100644 --- a/x11/libXt/Makefile +++ b/x11/libXt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2009/07/18 10:28:47 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2009/09/22 19:34:05 tnn Exp $ # DISTNAME= libXt-1.0.6 @@ -34,7 +34,7 @@ MAKE_ENV+= CC_FOR_BUILD=${NATIVE_CC:Q} CPPFLAGS_FOR_BUILD=-I${PREFIX}/include CPPFLAGS.OSF1+= -pthread # Required by compiler if including pthread.h .include "../../mk/compiler.mk" -.if !empty(PKGSRC_COMPILER:Mhp) +.if empty(PKGSRC_COMPILER:Mgcc) CONFIGURE_ENV+= ac_cv_path_RAWCPP="cc -E -Uunix -" .endif |