121d00ed27
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
19 lines
465 B
Makefile
19 lines
465 B
Makefile
# $NetBSD: options.mk,v 1.3 2019/11/03 09:14:18 rillig Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.Tix
|
|
PKG_SUPPORTED_OPTIONS= threads debug
|
|
PKG_SUGGESTED_OPTIONS= threads
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-symbols
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mthreads)
|
|
CONFIGURE_ARGS+= --enable-threads
|
|
. include "../../mk/pthread.buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-threads
|
|
.endif
|