blob: ea6bc51ff10b4784c5371f14f3c3f609d6241428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.2 2007/03/18 10:35:13 adrianp Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ap-modsecurity2
PKG_SUPPORTED_OPTIONS= xml
PKG_SUGGESTED_OPTIONS= xml
.include "../../mk/bsd.options.mk"
###
### Bring in support for libxml2
###
.if !empty(PKG_OPTIONS:Mxml)
. include "../../textproc/libxml2/buildlink3.mk"
MESSAGE_SRC+= ${WRKDIR}/.MESSAGE_SRC.xml
.endif
|