mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
20 lines
467 B
Makefile
20 lines
467 B
Makefile
# $NetBSD: options.mk,v 1.1 2012/08/28 11:46:32 he 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
|