]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Rename configure.in to configure.ac
authorAlexander Barton <alex@barton.de>
Mon, 24 Sep 2012 18:40:31 +0000 (20:40 +0200)
committerAlexander Barton <alex@barton.de>
Mon, 24 Sep 2012 18:40:31 +0000 (20:40 +0200)
This fixes

  automake: warning: autoconf input should be named 'configure.ac',
  not 'configure.in'

when running the autogen.sh script.

.gitignore
Makefile.am
autogen.sh

index 4ccaedf1989368a69fc13c2bd30d6d204b0ea2e5..e7ab75802c8ad942e1c9b14cf048733aeb2f2ffb 100644 (file)
@@ -10,7 +10,7 @@ build-stamp-ngircd*
 config.log
 config.status
 configure
-configure.in
+configure.ac
 configure.lineno
 cscope.out
 debian
index 1edd751bff8f214537d95e5e51baa14dd6558f1d..43b37e751cb9df778a7bd641fac10b714c6ce470 100644 (file)
@@ -1,6 +1,6 @@
 #
 # ngIRCd -- The Next Generation IRC Daemon
-# Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors
+# Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@ clean-local:
 
 maintainer-clean-local:
        rm -rf autom4te.cache
-       rm -f Makefile.in Makefile aclocal.m4 configure
+       rm -f Makefile.in Makefile aclocal.m4 configure configure.ac
        rm -f ar-lib mkinstalldirs missing depcomp install-sh
        rm -f config.log debian
 
index 47c476c79632ef5a3d02b6181b78b8a7905f40de..6c2a8dd16b2c94fa7caced4af559bb1e1f76a315 100755 (executable)
@@ -162,13 +162,13 @@ AM_MAKEFILES="src/ipaddr/Makefile.ng src/ngircd/Makefile.ng src/testsuite/Makefi
 if [ "$AM_MAJOR" -eq "1" -a "$AM_MINOR" -lt "12" ]; then
        # automake < 1.12 => automatic de-ANSI-fication support available
        echo "Enabling de-ANSI-fication support (automake $AM_VERSION) ..."
-       sed -e "s|^__ng_PROTOTYPES__|AM_C_PROTOTYPES|g" configure.ng >configure.in
+       sed -e "s|^__ng_PROTOTYPES__|AM_C_PROTOTYPES|g" configure.ng >configure.ac
        DEANSI_START=""
        DEANSI_END=""
 else
        # automake >= 1.12 => no de-ANSI-fication support available
        echo "Disabling de-ANSI-fication support (automake $AM_VERSION) ..."
-       sed -e "s|^__ng_PROTOTYPES__|AC_C_PROTOTYPES|g" configure.ng >configure.in
+       sed -e "s|^__ng_PROTOTYPES__|AC_C_PROTOTYPES|g" configure.ng >configure.ac
        DEANSI_START="#"
        DEANSI_END="    # disabled by ./autogen.sh script"
 fi