blob: bde6e8277355efd927687ebfa8ac95f9a0c596d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: options.mk,v 1.1.1.1 2009/01/04 01:11:55 adrianp Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.openvas-server
PKG_SUPPORTED_OPTIONS= x11
.include "../../mk/bsd.options.mk"
###
### X11 support
###
.if !empty(PKG_OPTIONS:Mx11)
USE_X11=YES
CONFIGURE_ARGS+= --with-x
.else
CONFIGURE_ARGS+= --without-x
.endif
|