blob: 073a87e7b757e48e4d5cf0aeee19bf037e192da6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.3 2013/04/08 11:17:18 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.irrd
PKG_SUPPORTED_OPTIONS= pthreads
PKG_SUGGESTED_OPTIONS= pthreads
.include "../../mk/bsd.options.mk"
# include support for pthreads
.if !empty(PKG_OPTIONS:Mpthreads)
CONFIGURE_ARGS+= --enable-thread
PTHREAD_AUTO_VARS= yes
.include "../../mk/pthread.buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-thread
.endif
|