diff options
author | Brian Evans <grknight@gentoo.org> | 2015-11-11 15:08:15 -0500 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2017-01-27 06:07:40 +0000 |
commit | 2fe9208ee3d21f8d25b1b350819cb79432647af1 (patch) | |
tree | 154e202c1874357419a0b3ce659cb5f2d9d3724d /.gitignore | |
parent | 68801c9a308e49c5e801ac894673e68e448b31c4 (diff) | |
download | php-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 '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 81e339a82f..4013490325 100644 --- a/.gitignore +++ b/.gitignore @@ -173,6 +173,7 @@ tests/*/*/*.sh # Extension specifc ignores ext/*/configure.in +ext/*/configure.ac ext/*/ltmain.sh ext/*/libs.mk ext/*/build @@ -213,6 +214,7 @@ ext/mssql/Makefile.global ext/mssql/acinclude.m4 ext/mssql/config.sub ext/mssql/configure.in +ext/mssql/configure.ac ext/mssql/ltmain.sh ext/mysql/weztest.sqlite ext/oci8/tests/*.tmp |