blob: f990af00a21f4f3d444a538118af9bcffc3c6ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1 2015/07/02 03:37:49 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xf86-video-suntcx
PKG_SUPPORTED_OPTIONS= static
PKG_SUGGESTED_OPTIONS+= # blank
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mstatic)
CONFIGURE_ARGS+= --enable-static=yes
.else
CONFIGURE_ARGS+= --enable-static=no
.endif
|