summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Update version in 7.4 branchDerick Rethans2020-11-071-1/+1
|
* Merge branch 'PHP-7.3' into PHP-7.4Nikita Popov2020-10-051-5/+6
|\ | | | | | | | | * PHP-7.3: Fix -Wimplicit-function-declaration in configure
| * Fix -Wimplicit-function-declaration in configureNikita Popov2020-10-051-5/+6
| | | | | | | | As this is an error with xcode 12, see bug #80171.
| * 7.3.24 is nextChristoph M. Becker2020-09-151-1/+1
| |
| * 7.3.23 is nextChristoph M. Becker2020-08-181-1/+1
| |
| * 7.3 is now 7.3.22-devChristoph M. Becker2020-07-211-1/+1
| |
| * 7.3 is now 7.3.21-devChristoph M. Becker2020-06-231-1/+1
| |
| * 7.3.20 will be nextChristoph M. Becker2020-05-261-1/+1
| |
| * Bump versionChristoph M. Becker2020-04-281-1/+1
| |
| * Next is 7.3.18Christoph M. Becker2020-03-311-1/+1
| |
| * Next is 7.3.17Christoph M. Becker2020-03-031-1/+1
| |
| * Next is 7.3.16Christoph M. Becker2020-02-041-1/+1
| |
| * Bump versionChristoph M. Becker2020-01-071-1/+1
| |
| * Next is 7.3.14Christoph M. Becker2019-12-031-1/+1
| |
| * 7.3.13 is nextChristoph M. Becker2019-11-051-1/+1
| |
| * 7.3.12 is nextChristoph M. Becker2019-10-081-1/+1
| |
| * PHP 7.3.10RC1 has been taggedChristoph M. Becker2019-09-101-1/+1
| |
| * Next will be 7.3.10Christoph M. Becker2019-08-131-1/+1
| |
| * Bump version numbersChristoph M. Becker2019-08-131-1/+1
| | | | | | | | This should have been done four weeks ago already.
| * Next is 7.3.8Christoph M. Becker2019-06-111-1/+1
| |
| * Prepare 7.3.7-devChristoph M. Becker2019-05-141-1/+1
| |
| * Prepare main branch for PHP 7.3.6Christoph M. Becker2019-04-161-1/+1
| |
| * Prepare main branch for PHP 7.3.5Christoph M. Becker2019-03-191-1/+1
| |
| * Prepare main branch for PHP 7.3.4Christoph M. Becker2019-02-191-1/+1
| |
* | Prepare for 7.4.11Derick Rethans2020-08-181-1/+1
| |
* | Prepare for 7.4.10Derick Rethans2020-07-211-1/+1
| |
* | PHP-7.4 is now 7.4.9-devDerick Rethans2020-06-231-1/+1
| |
* | Allow defining of uname value for reproducible buildsJelle van der Waa2020-06-071-1/+2
| | | | | | | | | | | | | | | | | | | | | | Extend configure.ac to accept PHP_UNAME as env variable to set the value of the PHP_UNAME define in a reproducible manner. This allows distributions to set a fixed value for php_uname and keep the default behaviour if PHP_UNAME is not set. Motivation: https://reproducible-builds.org/ Closes GH-5671.
* | Bump versionChristoph M. Becker2020-05-191-1/+1
| | | | | | | | Seems that has been forgotten.
* | Properly detect CRC32 APIs on aarch64 from configureOndřej Surý2020-05-141-0/+6
| | | | | | | | | | | | | | The CRC32 APIs are optional for armv8-a. They became mandatory since armv8.1-a. Closes GH-5564.
* | The 7.4 branch is now for 7.4.6Derick Rethans2020-03-311-1/+1
| |
* | Check for sys/auxv.h before using it.Peter Seiderer2020-03-101-0/+1
| | | | | | | | | | | | | | | | | | Fixes aarch64 compile with uclibc-ng (does not provide sys/auxv.h header file). Closes GH-5248. Signed-off-by: Peter Seiderer <ps.report@gmx.net>
* | PHP-7.4 is now 7.4.5-devDerick Rethans2020-03-031-1/+1
| |
* | Don't use VLA in mysqlnd authNikita Popov2020-02-181-14/+0
| | | | | | | | | | We use alloca instead of VLA. This should also allow building this code on Windows.
* | Fixed bug #79092 (Building with clang+lld-9 results in a broken PHP binary)Dmitry Stogov2020-01-291-7/+36
| |
* | Fix #79086: Bump version not appliedChristoph M. Becker2020-01-091-1/+1
| | | | | | | | We must not forget to update the version in configure.ac as well.
* | PHP-7.4 is now 7.4.2-devDerick Rethans2019-12-101-1/+1
| |
* | PHP-7.4 is now 7.4.1-devDerick Rethans2019-11-151-1/+1
| |
* | Fix #78788: ./configure generates invalid php_version.hmax2019-11-071-6/+6
| | | | | | | | | | Change $SED to "${SED}" such that the IFS is not used to split the output of that variable.
* | Revert "Remove configure checks for supported instruction sets"Nikita Popov2019-11-041-0/+6
| | | | | | | | | | | | | | | | This reverts commit edccf32f7f36a8bc759b9482737e0c3efcb3a005. This was reported to cause issues for as yet unknown reasons in bug #78769. As this was intended as code cleanup, revert this from 7.4 at least. May reapply it to master later.
* | Remove configure checks for supported instruction setsNikita Popov2019-10-311-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | These were checking whether the instruction set is supported by the host CPU, however they were only used to condition on whether this instruction set is targeted at all. It would still use dynamic dispatch (e.g. based on ifunc resolvers) to select the actual implementation. Whether the target is guaranteed to support the instruction set without dispatch is determined based on pre-defined macros like __SSE2__. This removes the configure-time builtin cpu checks to remove confusion. Additionally this allows targeting an architecture that is newer than the host architecture.
* | Remove configure checks for ltp when using --enable-gcovNikita Popov2019-10-111-49/+1
| | | | | | | | | | gcov builds can also be used with other tools like gcovr, so remove the hard dependency on LTP.
* | Revert "Fixed CLI/CGI/FPM build, when they are built together with Apache SAPI"Dmitry Stogov2019-10-101-3/+1
| | | | | | | | This reverts commit db094b4b2e5ef0f0c30f412ce3a2516e31e17da7.
* | Fixed CLI/CGI/FPM build, when they are built together with Apache SAPIDmitry Stogov2019-09-171-1/+3
| |
* | Fix #78460: PEAR installation failurePeter Kokot2019-08-301-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When building PHP outside of the source tree: mkdir custom-build-dir cd custom-build-dir ../path/to/php-src/configure The directories need to be manually created including the pear directory so the pear installation PHAR file doesn't need to be downloaded from the remote location. Closes GH-4639
* | Remove outdated Libtool hack for macsPeter Kokot2019-07-241-8/+0
| | | | | | | | | | | | This was once relevant for older versions of macs and autoconf 2.13. Closes GH-4435
* | Remove duplicate socklen_t checkPeter Kokot2019-07-181-1/+9
| | | | | | | | | | | | - Use Autoconf's default AC_CHECK_TYPES Closes GH-4418
* | Remove unused build checksPeter Kokot2019-07-161-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - yp_get_default_domain was part of ext/yp - functions checks produce HAVE_function_name symbols. These checks are currently not used in php-src neither in the extensions out there. - Removed symbols because they are not used in the code: - HAVE_GCVT - HAVE_PUTENV - HAVE_PUTENV - HAVE_SETVBUF - HAVE_TEMPNAM - HAVE_SIN (sin is also defined in C89 standard) - HAVE_SETSOCKOPT - HAVE_LOCKF - HAVE_ISASCII - HAVE_YP_GET_DEFAULT_DOMAIN (and other yp extension related unused checks) - HAVE_LINK - HAVE_USLEEP is already defined in Windows configuration header - HAVE_LIBBIND has not been used in php-src for a while anymore - HAVE_GETHOSTNAME is duplicated in Windows configuration header Closes GH-4417
* | Remove usage of PHP_AIX_LDFLAGSPeter Kokot2019-07-141-2/+0
| | | | | | | | | | | | | | These are currently not defined since their usage has been removed via 51ca2dba530883a8e07d6869e66ee6c5b3c978a6 and 53349d69ddf7a2ba128f0928fb3b376422611a3b
* | Remove duplicate PTHREADS template definePeter Kokot2019-07-141-2/+0
| | | | | | | | | | | | The undef PTHREADS converts to define if thread safety is configured. This step is already done by pthreads m4 macros from TSRM so this now removes duplicated PTHREADS defines from php_config.h.