blob: 5018a52425a6613c2a00e869ea14586ce6b9a640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1.1.1 2008/02/26 11:47:35 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libotf
PKG_SUPPORTED_OPTIONS= x11
PKG_SUGGESTED_OPTIONS= x11
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mx11)
.include "../../mk/xaw.buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-x
.endif
|