0.71: The build-time check for the resolver library was improved. Binding to a specific interface was fixed. Incorrect display of multiple routes was fixed. Several minor bugs were fixed. v0.70 Antinio submitted a cumulative patch containing some nice improvements. He also submitted an automake patch that causes mtr to no longer compile on my system. I refuse to have mtr "in the dark" that I can't test-compile the dist. Add option for gtk support, and remove mtr-gtk package.
13 lines
306 B
Makefile
13 lines
306 B
Makefile
# $NetBSD: options.mk,v 1.1 2006/04/03 18:38:58 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mtr
|
|
PKG_SUPPORTED_OPTIONS= gtk
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk)
|
|
.include "../../x11/gtk/buildlink3.mk"
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gtk
|
|
.endif
|