From patchwork Fri May 15 18:40:31 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felix Janda X-Patchwork-Id: 472906 X-Patchwork-Delegate: pablo@netfilter.org 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 D9DA014016A for ; Sat, 16 May 2015 04:40:47 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932074AbbEOSkq (ORCPT ); Fri, 15 May 2015 14:40:46 -0400 Received: from mx02.posteo.de ([89.146.194.165]:45436 "EHLO mx02.posteo.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753507AbbEOSkq (ORCPT ); Fri, 15 May 2015 14:40:46 -0400 Received: from dovecot03.posteo.de (unknown [185.67.36.28]) by mx02.posteo.de (Postfix) with ESMTPS id 4AD8A25AF528 for ; Fri, 15 May 2015 20:40:45 +0200 (CEST) Received: from mail.posteo.de (localhost [127.0.0.1]) by dovecot03.posteo.de (Postfix) with ESMTPSA id 3lpJTT1P16z5vNH for ; Fri, 15 May 2015 20:40:44 +0200 (CEST) Date: Fri, 15 May 2015 20:40:31 +0200 From: Felix Janda To: netfilter-devel@vger.kernel.org Subject: [libnetfilter_log PATCH] Make it possible to build libipulog Message-ID: <20150515184031.GA16749@euler> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org commit a1b392b4156db984ab2b695a4a70d113f70cb9b8 had unintentionally disabled building of libipulog unconditionally Signed-off-by: Felix Janda --- configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 88ff7ab..c4cc662 100644 --- a/configure.ac +++ b/configure.ac @@ -25,9 +25,8 @@ case "$host" in esac AC_ARG_WITH([ipulog], - AC_HELP_STRING([--without-ipulog], [don't build libipulog compat library]), - [ipulog_skip=1], [ipulog_skip=0]) -AM_CONDITIONAL([BUILD_IPULOG], [test $ipulog_skip = 0]) + AC_HELP_STRING([--without-ipulog], [don't build libipulog compat library])) +AM_CONDITIONAL([BUILD_IPULOG], [test "x$with_ipulog" != xno]) dnl Dependencies PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 0.0.41])