From 5525b8125f3d25db9377545af3d8109f1857dc4e Mon Sep 17 00:00:00 2001 From: edwin Date: Thu, 23 Dec 2004 01:39:18 +0000 Subject: devel/asis: must build without -fno-strict-aliasing ASIS is build using the GCC that comes from the GNAT port, which is a 2.8.1-based compiler that neither supports nor needs -fno-strict-aliasing, which is now present in the system default CFLAGS value. To allow this port to build on a recent -CURRENT, this CFLAGS setting thus needs to be overridden by the port's Makefile. PR: ports/75376 Submitted by: Thomas Quinot --- devel/asis-gpl/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'devel/asis-gpl') diff --git a/devel/asis-gpl/Makefile b/devel/asis-gpl/Makefile index 052581b1c021..5f8a1cc5bd12 100644 --- a/devel/asis-gpl/Makefile +++ b/devel/asis-gpl/Makefile @@ -25,6 +25,7 @@ BUILD_DEPENDS= adagcc:${PORTSDIR}/lang/gnat .if ${OSVERSION} >= 500039 WITHOUT_CPU_CFLAGS= yes .endif +CFLAGS= -O2 -pipe USE_GMAKE= yes MAKEFILE= "${FILESDIR}/Makefile.bsd" MAKE_ARGS= GMAKE=${GMAKE} PORTVERSION=${PORTVERSION} \ -- cgit