diff options
author | nork <nork@FreeBSD.org> | 2003-10-25 15:26:11 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-10-25 15:26:11 +0000 |
commit | ae1bd00115e3dcb7375cbda9d7ef90fa8b9e2519 (patch) | |
tree | 2431bb5f5174dd30ea2d7edddd56ccdc49ebe508 /databases | |
parent | 353d7cfbbc353dee4c018bbcf24659e5caeb9677 (diff) | |
download | FreeBSD-ports-ae1bd00115e3dcb7375cbda9d7ef90fa8b9e2519.zip FreeBSD-ports-ae1bd00115e3dcb7375cbda9d7ef90fa8b9e2519.tar.gz |
Move CXXFLAGS out of BUILD_OPTIMIZED section, since they
are always recommended.
PR: ports/58509
Submitted by: Alex Dupre <sysadmin@alexdupre.com> (maintainer)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/mysql40-server/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/mysql40-server/Makefile b/databases/mysql40-server/Makefile index 5e3dadd..52110d0 100644 --- a/databases/mysql40-server/Makefile +++ b/databases/mysql40-server/Makefile @@ -89,11 +89,11 @@ CFLAGS+= -O3 -fno-omit-frame-pointer .if ${OSVERSION} > 500000 || (defined(USE_GCC) && (${USE_GCC} == 3.0 || ${USE_GCC} == 3.1 || ${USE_GCC} == 3.2 || ${USE_GCC} == 3.3)) CFLAGS+= -fno-gcse .endif +.endif CXXFLAGS+= ${CFLAGS} -felide-constructors -fno-rtti .if ${OSVERSION} >= 400002 CXXFLAGS+= -fno-exceptions .endif -.endif # MySQL-Server part .if !defined(CLIENT_ONLY) |