blob: fd4fa1f898bfa38e7a19c935837e4a8dd0e7b9c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.2 2005/10/05 13:29:49 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.LPRng-core
PKG_SUPPORTED_OPTIONS= lprng-priv-ports lprng-suid
PKG_SUGGESTED_OPTIONS= lprng-suid
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mlprng-priv-ports)
CONFIGURE_ARGS+= --enable-priv_ports
.endif
.if empty(PKG_OPTIONS:Mlprng-suid)
CONFIGURE_ARGS+= --disable-setuid
.endif
|