aboutsummaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authorGuido Falsi <madpilot@FreeBSD.org>2017-10-15 22:05:04 +0800
committerGuido Falsi <madpilot@FreeBSD.org>2017-10-15 22:05:04 +0800
commitb1fac01e5ea47d8b96439769d8282a08268ebc05 (patch)
treee10af9226ae3e4aaf6056c5404ecbe82b840fedd /math
parent03b94a52f90cc44b06a8c468ef565553eeaaa38e (diff)
downloadfreebsd-ports-gnome-b1fac01e5ea47d8b96439769d8282a08268ebc05.tar.gz
freebsd-ports-gnome-b1fac01e5ea47d8b96439769d8282a08268ebc05.tar.zst
freebsd-ports-gnome-b1fac01e5ea47d8b96439769d8282a08268ebc05.zip
Retire WITHOUT_DEBUG flag.
The flag has partial support across the tree, and the same effect can be obtained by using ".undef WITH_DEBUG". Reviewed by: mat, rene Approved by: portmgr (rene) Differential Revision: https://reviews.freebsd.org/D12548
Diffstat (limited to 'math')
-rw-r--r--math/msieve/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/msieve/Makefile b/math/msieve/Makefile
index ab86090d7197..bb8a00a7ad11 100644
--- a/math/msieve/Makefile
+++ b/math/msieve/Makefile
@@ -28,7 +28,7 @@ OPTIONS_DEFAULT= OPTIMIZED_CFLAGS
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
CFLAGS+= -O3 -ffast-math
-.if defined(WITHOUT_DEBUG) || !defined(WITH_DEBUG)
+.if !defined(WITH_DEBUG)
CFLAGS+= -fomit-frame-pointer -DNDEBUG
.endif
.endif