blob: 6365930d57f8f99fe42dac78062f682281b01a20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: options.mk,v 1.3 2014/08/08 21:24:51 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gstreamer
PKG_SUPPORTED_OPTIONS= gstreamer-gstcheck
PKG_OPTIONS_LEGACY_OPTS+= gstcheck:gstreamer-gstcheck
.include "../../mk/bsd.options.mk"
PLIST_VARS+= gstcheck
.if !empty(PKG_OPTIONS:Mgstreamer-gstcheck)
.include "../../devel/check/buildlink3.mk"
PLIST.gstcheck= yes
# don't worry if the "GstABI" check fails -- GstPlugin contains
# off_t and time_t which are system dependent
TEST_TARGET= check-torture
.else
CONFIGURE_ARGS+=--disable-check
.endif
|