blob: 6b7b0c446ef422e9255a1ab15c88fb4fa7a63942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1 2013/06/03 01:35:22 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xf86-video-newport
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
|