Re: port DNS/UNBOUND

2012-07-21 Thread Sergey Matveychuk
20.07.2012 10:36, Chris Rees пишет: On 20 July 2012 05:07, Sunpoet Hsieh sunp...@sunpoet.net wrote: Hi, You can use .if empty(PORT_OPTIONS:Mfoo) to check if option foo is off. Try this: .if empty(PORT_OPTIONS:MTHREADS) CONFIGURE_ARGS+=--without-pthreads .endif Quite correct, and I've filed

Re: port DNS/UNBOUND

2012-07-20 Thread Chris Rees
On 20 July 2012 05:07, Sunpoet Hsieh sunp...@sunpoet.net wrote: Hi, You can use .if empty(PORT_OPTIONS:Mfoo) to check if option foo is off. Try this: .if empty(PORT_OPTIONS:MTHREADS) CONFIGURE_ARGS+=--without-pthreads .endif Quite correct, and I've filed such in a PR.

port DNS/UNBOUND

2012-07-19 Thread Alexey Kouznetsov
Hello! After port was moved to new NGoptions this is inpossible to compile port with threads enabled. make always adds --without-pthreads undepended on setings in make config At Makefile we have .if empty(${PORT_OPTIONS:MTHREADS}) CONFIGURE_ARGS+=--without-pthreads .endif and resulted

Re: port DNS/UNBOUND

2012-07-19 Thread Mark Felder
Hi Alexy, Can you submit a PR with an appropriate patch? Thanks! ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org

Re: port DNS/UNBOUND

2012-07-19 Thread Sunpoet Hsieh
Hi, You can use .if empty(PORT_OPTIONS:Mfoo) to check if option foo is off. Try this: .if empty(PORT_OPTIONS:MTHREADS) CONFIGURE_ARGS+=--without-pthreads .endif Regards, sunpoet On Thu, Jul 19, 2012 at 10:46 PM, Alexey Kouznetsov ale...@kouznetsov.com wrote: Hello! After port was moved to