diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2017-10-15 22:05:04 +0800 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2017-10-15 22:05:04 +0800 |
commit | b1fac01e5ea47d8b96439769d8282a08268ebc05 (patch) | |
tree | e10af9226ae3e4aaf6056c5404ecbe82b840fedd /math | |
parent | 03b94a52f90cc44b06a8c468ef565553eeaaa38e (diff) | |
download | freebsd-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/Makefile | 2 |
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 |