d75651d4d8
Based on PR#44274, with some fixes. Changes from zzuf 0.12 to 0.13 * various fixes for Linux, FreeBSD, OS X and OpenBSD libc calls. * network host filtering support. * support for memory limits on OS X. * massive testsuite improvements. * support most cat options in zzcat, which is now fully programmable.
15 lines
377 B
Makefile
15 lines
377 B
Makefile
# $NetBSD: options.mk,v 1.2 2010/12/25 11:00:51 obache 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
|