mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 20:07:50 -04:00
14 lines
337 B
Makefile
14 lines
337 B
Makefile
# $NetBSD: options.mk,v 1.1 2013/07/14 14:55:16 rodent Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.libosip
|
|
PKG_SUPPORTED_OPTIONS= debug
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug --enable-trace
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-debug --disable-trace
|
|
.endif
|