blob: b38502e4e8fa82ac065f3b69a208ae85f2900b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: options.mk,v 1.4 2009/12/08 12:45:42 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.finch
PKG_SUPPORTED_OPTIONS+= gstreamer debug
PKG_SUGGESTED_OPTIONS+= gstreamer
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mgstreamer)
. include "../../multimedia/gstreamer0.10/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
|