From e3812169fa785d9f7632bf8a82b4e9775fb7fbd6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 5 Dec 2015 21:36:34 +0000 Subject: [PATCH 1/1] Update to work with jessie's automake (tested with automake 1.14) And provide autogen.sh --- autogen.sh | 3 +++ configure.in => configure.ac | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100755 autogen.sh rename configure.in => configure.ac (95%) diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..39441f7 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,3 @@ +#!/bin/sh +set -e +autoreconf --install diff --git a/configure.in b/configure.ac similarity index 95% rename from configure.in rename to configure.ac index c802424..04072f1 100644 --- a/configure.in +++ b/configure.ac @@ -22,9 +22,9 @@ # and files which end up included in innduct are licence-compatible # with GPLv3. If not then please let me know. -Ian Jackson.) -AC_INIT(duct.c) +AC_INIT([innduct], [1.0], [duct.c]) AC_CONFIG_AUX_DIR(autoconf-aux) -AM_INIT_AUTOMAKE(innduct, 1.0) +AM_INIT_AUTOMAKE([]) AC_PROG_CC -- 2.30.2