From: Felix Janda Date: Thu, 6 Oct 2016 02:11:03 +0000 (-0400) Subject: Rename configure.in to configure.ac X-Git-Tag: libpcap-1.8.1~4^2 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/3ba9e0a8e0b496dc2cdaeec6ea7712d251ebe5b9 Rename configure.in to configure.ac configure.ac is the preferred name for the configure script source since autoconf-2.59. The name configure.in is deprecated, and support for it is planned to be removed from automake-2.0. --- diff --git a/INSTALL.txt b/INSTALL.txt index e43915f6..f305aa2b 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -16,7 +16,7 @@ does support packet capture but libpcap does not support that particular type. (If you have HP-UX, see below.) If your system uses a packet capture not supported by libpcap, please send us patches; don't forget to include an autoconf fragment suitable for use in -configure.in. +configure.ac. It is possible to override the default packet capture type, although the circumstance where this works are limited. For example if you have @@ -300,7 +300,7 @@ config.guess - autoconf support config.h.in - autoconf input config.sub - autoconf support configure - configure script (run this first) -configure.in - configure script source +configure.ac - configure script source dlpisubs.c - DLPI-related functions for pcap-dlpi.c and pcap-libdlpi.c dlpisubs.h - DLPI-related function declarations etherent.c - /etc/ethers support routines diff --git a/Makefile-devel-adds b/Makefile-devel-adds index 7bf6420c..fea63bbc 100644 --- a/Makefile-devel-adds +++ b/Makefile-devel-adds @@ -2,12 +2,12 @@ # Auto-regenerate configure script or Makefile when things change. # From autoconf.info . Works best with GNU Make. # -${srcdir}/configure: configure.in aclocal.m4 +${srcdir}/configure: configure.ac aclocal.m4 cd ${srcdir} && autoconf # autoheader might not change config.h.in, so touch a stamp file. ${srcdir}/config.h.in: ${srcdir}/stamp-h.in -${srcdir}/stamp-h.in: configure.in aclocal.m4 +${srcdir}/stamp-h.in: configure.ac aclocal.m4 cd ${srcdir} && autoheader echo timestamp > ${srcdir}/stamp-h.in diff --git a/Makefile.in b/Makefile.in index 58958b90..9a752f89 100644 --- a/Makefile.in +++ b/Makefile.in @@ -265,7 +265,7 @@ EXTRA_DIST = \ config.h.in \ config.sub \ configure \ - configure.in \ + configure.ac \ dlpisubs.c \ dlpisubs.h \ fad-getad.c \ diff --git a/README.sita b/README.sita index ee7a4268..014d51d9 100644 --- a/README.sita +++ b/README.sita @@ -12,7 +12,7 @@ These additions/extensions have been made to PCAP to allow it to capture packets from a SITA ACN device (and potentially others). To enable its support you need to ensure that the distribution has -a correct configure.in file; that can be created if neccessay by +a correct configure.ac file; that can be created if neccessay by using the normal autoconf procedure of: aclocal diff --git a/config.h.in b/config.h.in index 20945edb..e85b2a3f 100644 --- a/config.h.in +++ b/config.h.in @@ -1,4 +1,4 @@ -/* config.h.in. Generated from configure.in by autoheader. */ +/* config.h.in. Generated from configure.ac by autoheader. */ /* Enable optimizer debugging */ #undef BDEBUG diff --git a/configure.in b/configure.ac similarity index 100% rename from configure.in rename to configure.ac