19 lines
426 B
Makefile
19 lines
426 B
Makefile
# $NetBSD: options.mk,v 1.6 2014/12/14 15:57:44 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mtr
|
|
PKG_SUPPORTED_OPTIONS= gtk inet6
|
|
PKG_SUGGESTED_OPTIONS= inet6
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk)
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gtk
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|