pkgsrc/devel/zzuf/options.mk
bjs 76d2dcbfa1 Import zzuf-0.12.
zzuf is a transparent application input fuzzer. It works by intercepting
file operations and changing random bits in the program's input. zzuf's
behaviour is deterministic, making it easy to reproduce bugs.

For instructions and examples on how to use zzuf, see the manual page.
2008-12-09 06:56:52 +00:00

15 lines
378 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2008/12/09 06:56:52 bjs Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.zzuf
PKG_SUPPORTED_OPTIONS= debug
PKG_SUGGESTED_OPTIONS= debug
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
. if ${MACHINE_ARCH} == "x86_64" # XXX Is this correct?
CFLAGS+= -fno-omit-frame-pointer
. endif
BUILDLINK_TRANSFORM+= rm:-fomit-frame-pointer
.endif