blob: 7f57442590515cc74df995298f7430a1ae0ef677 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.2 2015/06/06 17:11:43 youri Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.rlwrap
PKG_SUPPORTED_OPTIONS= debug
PKG_SUGGESTED_OPTIONS= # empty
.include "../../mk/bsd.options.mk"
###
### debug option
###
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
|