blob: f31c488c2f24c38e3e3701b77bc1dd65117cea6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: options.mk,v 1.1 2010/04/18 18:22:43 jmmv Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gamin
PKG_SUPPORTED_OPTIONS= debug
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
CONFIGURE_ARGS+= --enable-debug-api
.endif
|