18 lines
309 B
Makefile
18 lines
309 B
Makefile
|
# $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
|