Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Jul 2012 01:25:54 +0200
From:      Phil Stone <phil.stone@gmx.com>
To:        freebsd-ports@freebsd.org
Subject:   unbound-1.4.17 fails to compile with threads support
Message-ID:  <PC1952012071701255405936064a687@Obelix>

next in thread | raw e-mail | index | archive | help
It seems that port dns/unbound compiles without threads support
regadless of port options.

In dns/unbound/Makefile:91

.if empty(${PORT_OPTIONS:MTHREADS})
CONFIGURE_ARGS+=--without-pthreads
.endif

sets --without-pthreads regadless of THREADS option.

Changing to:

.if !${PORT_OPTIONS:MTHREADS}
CONFIGURE_ARGS+=--without-pthreads
.endif

provides the correct behavior.

Best Regards,
Phil




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?PC1952012071701255405936064a687>