From patchwork Fri Mar 15 15:05:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yegor Yefremov X-Patchwork-Id: 228068 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id D7E7F2C00B6 for ; Sat, 16 Mar 2013 02:30:01 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755319Ab3COP36 (ORCPT ); Fri, 15 Mar 2013 11:29:58 -0400 Received: from hhlx01.visionsystems.de ([62.145.30.242]:46179 "EHLO mail.visionsystems.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755395Ab3COP34 (ORCPT ); Fri, 15 Mar 2013 11:29:56 -0400 X-Greylist: delayed 1418 seconds by postgrey-1.27 at vger.kernel.org; Fri, 15 Mar 2013 11:29:56 EDT Received: from localhost (localhost [127.0.0.1]) by mail.visionsystems.de (Postfix) with ESMTP id 75FF32BF8DE; Fri, 15 Mar 2013 16:06:12 +0100 (CET) Received: from mail.visionsystems.de ([127.0.0.1]) by localhost (mail.visionsystems.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30459-03; Fri, 15 Mar 2013 16:05:57 +0100 (CET) Received: from visionsystems.de (kallisto.visionsystems.local [192.168.1.3]) by mail.visionsystems.de (Postfix) with ESMTP id 6D6FC2BF8DD; Fri, 15 Mar 2013 16:05:57 +0100 (CET) Received: from development1.visionsystems.local ([192.168.1.36]) by visionsystems.de with Microsoft SMTPSVC(6.0.3790.4675); Fri, 15 Mar 2013 16:05:56 +0100 From: yegorslists@googlemail.com To: netdev@vger.kernel.org Cc: stephen@networkplumber.org, buytenh@gnu.org, Yegor Yefremov Subject: [PATCH] rename configure.in to configure.ac Date: Fri, 15 Mar 2013 16:05:46 +0100 Message-Id: <1363359946-7703-1-git-send-email-yegorslists@googlemail.com> X-Mailer: git-send-email 1.7.7 X-OriginalArrivalTime: 15 Mar 2013 15:05:56.0613 (UTC) FILETIME=[9864AB50:01CE218E] X-Virus-Scanned: amavisd-new at visionsystems.de Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Yegor Yefremov Automake 1.14 will likely drop support for the long-deprecated 'configure.in' name for the Autoconf input file. Signed-off-by: Yegor Yefremov --- configure.ac | 27 +++++++++++++++++++++++++++ configure.in | 27 --------------------------- 2 files changed, 27 insertions(+), 27 deletions(-) create mode 100644 configure.ac delete mode 100644 configure.in diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..5e3f89b --- /dev/null +++ b/configure.ac @@ -0,0 +1,27 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT(bridge-utils, 1.5) +AC_CONFIG_HEADERS(libbridge/config.h) + +AC_ARG_WITH( linux-headers, [ --with-linux-headers Location of the linux headers to use], + KERNEL_HEADERS=$withval, KERNEL_HEADERS="/usr/src/linux/include") + +dnl Checks for programs. +AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_RANLIB + +dnl Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS(sys/ioctl.h sys/time.h) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST +AC_HEADER_TIME + +dnl Checks for library functions. +AC_CHECK_FUNCS(gethostname socket strdup uname) +AC_CHECK_FUNCS(if_nametoindex if_indextoname) + +AC_SUBST(KERNEL_HEADERS) + +AC_OUTPUT(doc/Makefile libbridge/Makefile brctl/Makefile Makefile bridge-utils.spec) diff --git a/configure.in b/configure.in deleted file mode 100644 index 5e3f89b..0000000 --- a/configure.in +++ /dev/null @@ -1,27 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -AC_INIT(bridge-utils, 1.5) -AC_CONFIG_HEADERS(libbridge/config.h) - -AC_ARG_WITH( linux-headers, [ --with-linux-headers Location of the linux headers to use], - KERNEL_HEADERS=$withval, KERNEL_HEADERS="/usr/src/linux/include") - -dnl Checks for programs. -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_RANLIB - -dnl Checks for header files. -AC_HEADER_STDC -AC_CHECK_HEADERS(sys/ioctl.h sys/time.h) - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_C_CONST -AC_HEADER_TIME - -dnl Checks for library functions. -AC_CHECK_FUNCS(gethostname socket strdup uname) -AC_CHECK_FUNCS(if_nametoindex if_indextoname) - -AC_SUBST(KERNEL_HEADERS) - -AC_OUTPUT(doc/Makefile libbridge/Makefile brctl/Makefile Makefile bridge-utils.spec)