mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00

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>
18 lines
397 B
Text
18 lines
397 B
Text
dnl Process this file with autoconf to produce a configure script.
|
|
AC_INIT(doc/bcmath.1)
|
|
AM_INIT_AUTOMAKE("bcmath", "0.2")
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
|
AC_PROG_RANLIB
|
|
AC_PROG_MAKE_SET
|
|
|
|
AC_CHECK_HEADERS(stdarg.h stddef.h stdlib.h string.h limits.h unistd.h lib.h)
|
|
AC_C_CONST
|
|
AC_TYPE_SIZE_T
|
|
AC_CHECK_TYPE(ptrdiff_t, size_t)
|
|
|
|
AC_OUTPUT(Makefile src/Makefile doc/Makefile)
|
|
|