From owner-freebsd-ports@FreeBSD.ORG Thu Jul 19 14:46:59 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 251CE106566C for ; Thu, 19 Jul 2012 14:46:59 +0000 (UTC) (envelope-from alexey@kouznetsov.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id D12748FC08 for ; Thu, 19 Jul 2012 14:46:58 +0000 (UTC) Received: by yhfs35 with SMTP id s35so3374554yhf.13 for ; Thu, 19 Jul 2012 07:46:58 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:date:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=usHltaaJhL9fT0UZlk23lf17aDcErdPOgeQu3Q/TWKQ=; b=k6UuNlSYdktWvXBpMX+fei2v66HYA3frqXUouqMReFgs9efosA9PfSxl9IL1zTUidp SkRLbwyjvickiVBWg9gcY10a8lmDLCQkBmUBjhmLn4o+j3p51wRfLCLVTnFyhPnJFtjD 4z+M4qJGiP+pJ8aOoMhnXTwwewhBK3D+tqn1XGDkRVYactLS6d/xXS+yuuZSxkLMqsWt 779KfWNRF5TRvYpbZXLOtauQMQ/d3wBDHs+ozlcK9o3q6/9cm7mmhW2doABf2wEoCBuL FHI6pELLNglUBQxJKTTC+kBT/qdqPkvA633HBX1aGe7q2RAGvtefgZdfbYIWmCDf0nWe c+zw== MIME-Version: 1.0 Received: by 10.50.158.233 with SMTP id wx9mr1740315igb.42.1342709217695; Thu, 19 Jul 2012 07:46:57 -0700 (PDT) Received: by 10.64.167.231 with HTTP; Thu, 19 Jul 2012 07:46:57 -0700 (PDT) Date: Thu, 19 Jul 2012 18:46:57 +0400 Message-ID: From: Alexey Kouznetsov To: Sergey Matveychuk X-Gm-Message-State: ALoCoQklbqDPri9Fmiwfww3OAnd4eNU0BeAv/0BCHNDk7dZReg4D1lzQJVCZ1KttMaVomMyEI0Cd Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org Subject: port DNS/UNBOUND X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jul 2012 14:46:59 -0000 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 configure with THREADS enabled from config.log: $ ./configure --with-ssl=/usr --disable-gost --disable-ecdsa --with-libevent=/usr/local --without-pthreads --prefix=/usr/local I changed this to .if !${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+=--without-pthreads .endif and as result I have not --without-pthreads in configure parameters anymore and unbound started as multithread program Could you, please, change the port ? Thank you /Alexey