diff options
author | obrien <obrien@FreeBSD.org> | 2004-12-06 08:15:43 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-12-06 08:15:43 +0800 |
commit | b1c00e33a64140687eb1dd9b62b9d27ad0163f5a (patch) | |
tree | e61228a599808fea770ef1e8f0adcb97f812ff3b /devel/asis-gpl | |
parent | 071b22bb5a9af35bf69f5f832ccb13c45e1d28cd (diff) | |
download | freebsd-ports-gnome-b1c00e33a64140687eb1dd9b62b9d27ad0163f5a.tar.gz freebsd-ports-gnome-b1c00e33a64140687eb1dd9b62b9d27ad0163f5a.tar.zst freebsd-ports-gnome-b1c00e33a64140687eb1dd9b62b9d27ad0163f5a.zip |
If built on a machine with GCC 3.2 or later; assume the machine has CPUTYPE
set to something GCC 2.8 / GNAT Ada won't understand.
Diffstat (limited to 'devel/asis-gpl')
-rw-r--r-- | devel/asis-gpl/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/asis-gpl/Makefile b/devel/asis-gpl/Makefile index bc6cb3958caa..052581b1c021 100644 --- a/devel/asis-gpl/Makefile +++ b/devel/asis-gpl/Makefile @@ -20,6 +20,11 @@ COMMENT= GNAT implementation of the Ada Semantic Interface Specification BUILD_DEPENDS= adagcc:${PORTSDIR}/lang/gnat +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500039 +WITHOUT_CPU_CFLAGS= yes +.endif USE_GMAKE= yes MAKEFILE= "${FILESDIR}/Makefile.bsd" MAKE_ARGS= GMAKE=${GMAKE} PORTVERSION=${PORTVERSION} \ @@ -46,4 +51,4 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/tools/gnatstub/README ${DOCSDIR}/README.gnatstub .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |