From patchwork Thu May 10 15:27:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jozsef Kadlecsik X-Patchwork-Id: 158332 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 65421B6F9F for ; Fri, 11 May 2012 01:27:21 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759186Ab2EJP1T (ORCPT ); Thu, 10 May 2012 11:27:19 -0400 Received: from smtp-in.kfki.hu ([148.6.0.26]:45953 "EHLO smtp1.kfki.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758575Ab2EJP1S (ORCPT ); Thu, 10 May 2012 11:27:18 -0400 Received: from localhost (localhost [127.0.0.1]) by smtp1.kfki.hu (Postfix) with ESMTP id 11A201880C4; Thu, 10 May 2012 17:27:17 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at smtp1.kfki.hu Received: from smtp1.kfki.hu ([127.0.0.1]) by localhost (smtp1.kfki.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KQbF0OOlRAOY; Thu, 10 May 2012 17:27:16 +0200 (CEST) Received: from blackhole.kfki.hu (blackhole.kfki.hu [148.6.0.114]) by smtp1.kfki.hu (Postfix) with ESMTP id 982C61880BF; Thu, 10 May 2012 17:27:16 +0200 (CEST) Received: by blackhole.kfki.hu (Postfix, from userid 1000) id 743532080A4; Thu, 10 May 2012 17:27:16 +0200 (CEST) Date: Thu, 10 May 2012 17:27:16 +0200 (CEST) From: Jozsef Kadlecsik To: Neutron Soutmun cc: Jan Engelhardt , netfilter@vger.kernel.org, netfilter-devel@vger.kernel.org Subject: Re: [ANNOUNCE] ipset 6.12 released In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Hi, On Thu, 10 May 2012, Neutron Soutmun wrote: > > However, I'll find the solution for the build system when the > > --disable-dependency-tracking is being parse. > > The attached file is a patch to solve the > --disable-dependency-tracking is being parse issue and also fixes the > ipset does not build out of the source tree as the configure script > could not check for the lib/ipset_*.c. What about the next much simpler patch to force dependency tracking? AC_PROG_LIBTOOL It seems to solve the issue just fine. Best regards, Jozsef - E-mail : kadlec@blackhole.kfki.hu, kadlecsik.jozsef@wigner.mta.hu PGP key : http://www.kfki.hu/~kadlec/pgp_public_key.txt Address : Wigner Research Centre for Physics, Hungarian Academy of Sciences H-1525 Budapest 114, POB. 49, Hungary --- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/configure.ac b/configure.ac index d9a71d3..af8fe0b 100644 --- a/configure.ac +++ b/configure.ac @@ -145,6 +145,9 @@ AM_CONDITIONAL([ENABLE_SHARED], [test "x$enable_shared" = xyes]) dnl Checks for programs : ${CFLAGS=""} +dnl Enable dependency tracking unconditionally +: ${enable_dependency_tracking=yes} + AC_PROG_CC AM_PROG_CC_C_O