blob: 2e3f1d49cd5a2658f6336e94a0bb021a24bf003a (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $NetBSD: options.mk,v 1.1 2008/07/30 09:53:36 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.liboil
PKG_SUPPORTED_OPTIONS= debug
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
|