summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2015-11-11 15:08:15 -0500
committerJoe Watkins <krakjoe@php.net>2017-01-27 06:07:40 +0000
commit2fe9208ee3d21f8d25b1b350819cb79432647af1 (patch)
tree154e202c1874357419a0b3ce659cb5f2d9d3724d /TSRM
parent68801c9a308e49c5e801ac894673e68e448b31c4 (diff)
downloadphp-git-2fe9208ee3d21f8d25b1b350819cb79432647af1.tar.gz
Use modern autotools name of configure.ac instead of configure.in
configure.ac was introduced in 2001 with automake-1.15 and autoconf-2.50 to replace the file named configure.in. Autotools is preparing to remove configure.in in Automake 2.0. All new software should be using configure.ac. This also fixes Bug #69770 where extensions are creating configure.in Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/build.mk6
-rw-r--r--TSRM/configure.ac (renamed from TSRM/configure.in)2
2 files changed, 4 insertions, 4 deletions
diff --git a/TSRM/build.mk b/TSRM/build.mk
index f5756af72c..f98109fa06 100644
--- a/TSRM/build.mk
+++ b/TSRM/build.mk
@@ -30,14 +30,14 @@ $(LT_TARGETS):
$(makefile_in_files): $(makefile_am_files)
automake -a -i $(AMFLAGS) $(makefile_files)
-aclocal.m4: configure.in acinclude.m4
+aclocal.m4: configure.ac acinclude.m4
aclocal
-$(config_h_in): configure.in
+$(config_h_in): configure.ac
# explicitly remove target since autoheader does not seem to work
# correctly otherwise (timestamps are not updated)
@rm -f $@
autoheader
-configure: aclocal.m4 configure.in
+configure: aclocal.m4 configure.ac
autoconf
diff --git a/TSRM/configure.in b/TSRM/configure.ac
index 6f10f5ab13..8bf35d33b0 100644
--- a/TSRM/configure.in
+++ b/TSRM/configure.ac
@@ -1,6 +1,6 @@
dnl $Id$
dnl
-dnl Minimalistic configure.in for TSRM.
+dnl Minimalistic configure.ac for TSRM.
dnl
AC_INIT(TSRM.c)