History log of /PHP-8.3/configure.ac (Results 276 – 300 of 526)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 1517bc44 31-Oct-2019 Nikita Popov

Merge branch 'PHP-7.4'

* PHP-7.4:
Remove configure checks for supported instruction sets


# edccf32f 31-Oct-2019 Nikita Popov

Remove configure checks for supported instruction sets

These were checking whether the instruction set is supported by
the host CPU, however they were only used to condition on whether

Remove configure checks for supported instruction sets

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.

show more ...

# ad53bacf 29-Oct-2019 Nikita Popov

Fix bug #78681 by renaming libphp8.so to libphp.so

The major version number is no longer included.

# 393aa057 11-Oct-2019 Nikita Popov

Merge branch 'PHP-7.4'


# 3718a955 11-Oct-2019 Nikita Popov

Remove configure checks for ltp when using --enable-gcov

gcov builds can also be used with other tools like gcovr, so remove
the hard dependency on LTP.

# 33958ccb 10-Oct-2019 Dmitry Stogov

Revert "Fixed CLI/CGI/FPM build, when they are built together with Apache SAPI"

This reverts commit db094b4b2e5ef0f0c30f412ce3a2516e31e17da7.

# 26f45cb4 08-Oct-2019 Christoph M. Becker

7.3.12 is next

Revision tags: php-7.4.0RC2
# 50527aa4 17-Sep-2019 Dmitry Stogov

Merge branch 'PHP-7.4'

* PHP-7.4:
Fixed CLI/CGI/FPM build, when they are built together with Apache SAPI


# db094b4b 17-Sep-2019 Dmitry Stogov

Fixed CLI/CGI/FPM build, when they are built together with Apache SAPI

# c4e2ca60 13-Sep-2019 Nikita Popov

Various improvements to fuzzer SAPIs

Revision tags: php-7.2.23RC1, php-7.3.10RC1
# cf31210f 10-Sep-2019 Christoph M. Becker

PHP 7.3.10RC1 has been tagged

# aeaab8ee 09-Sep-2019 Florian Weimer

Port various autoconf bits to C99 compilers

C99 no longer has implicit function declarations and implicit ints.
Current GCC versions enable them as an extension, but this will
change

Port various autoconf bits to C99 compilers

C99 no longer has implicit function declarations and implicit ints.
Current GCC versions enable them as an extension, but this will
change in a future GCC version.

show more ...

Revision tags: php-7.4.0RC1
# 9bd0cce8 30-Aug-2019 Peter Kokot

Merge branch 'PHP-7.4'

* PHP-7.4:
Update NEWS
Fix #78460: PEAR installation failure


# 18a2f084 28-Aug-2019 Peter Kokot

Fix #78460: PEAR installation failure

When building PHP outside of the source tree:

mkdir custom-build-dir
cd custom-build-dir
../path/to/php-src/configure

Th

Fix #78460: PEAR installation failure

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

show more ...

Revision tags: php-7.1.32, php-7.2.22, php-7.3.9, php-7.4.0beta4, php-7.2.22RC1
# 5536105b 13-Aug-2019 Christoph M. Becker

Next will be 7.3.10

Revision tags: php-7.3.9RC1
# fe799791 13-Aug-2019 Christoph M. Becker

Bump version numbers

This should have been done four weeks ago already.

Revision tags: php-7.4.0beta2, php-7.1.31, php-7.2.21, php-7.3.8
# 452356af 24-Jul-2019 Peter Kokot

Merge branch 'PHP-7.4'

* PHP-7.4:
Remove outdated Libtool hack for macs


# 793dfa91 24-Jul-2019 Peter Kokot

Remove outdated Libtool hack for macs

This was once relevant for older versions of macs and autoconf 2.13.

Closes GH-4435

Revision tags: php-7.4.0beta1
# 605386e3 20-Jul-2019 Peter Kokot

Remove HAVE_LOCALE_H and locale.h check

This was a left over for supporting old code in PHP extensions out there.
Check is not needed anymore since this is part of C89+ standard.

Remove HAVE_LOCALE_H and locale.h check

This was a left over for supporting old code in PHP extensions out there.
Check is not needed anymore since this is part of C89+ standard.

Closes GH-4445

show more ...

# f33d1209 18-Jul-2019 Peter Kokot

Merge branch 'PHP-7.4'

* PHP-7.4:
Remove duplicate socklen_t check


# bbdbc265 18-Jul-2019 Peter Kokot

Remove duplicate socklen_t check

- Use Autoconf's default AC_CHECK_TYPES

Closes GH-4418

# b40be875 16-Jul-2019 Peter Kokot

Merge branch 'PHP-7.4'

* PHP-7.4:
Update changelog
Remove unused build checks


# 63d6a2b6 16-Jul-2019 Peter Kokot

Remove unused build checks

- 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

Remove unused build checks

- 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

show more ...

Revision tags: php-7.2.21RC1, php-7.3.8RC1
# 5284645f 14-Jul-2019 Peter Kokot

Merge branch 'PHP-7.4'

* PHP-7.4:
Remove usage of PHP_AIX_LDFLAGS


# 93b3d2f6 14-Jul-2019 Peter Kokot

Remove usage of PHP_AIX_LDFLAGS

These are currently not defined since their usage has been removed via
51ca2dba530883a8e07d6869e66ee6c5b3c978a6
and
53349d69ddf7a2ba128f0928fb3b37

Remove usage of PHP_AIX_LDFLAGS

These are currently not defined since their usage has been removed via
51ca2dba530883a8e07d6869e66ee6c5b3c978a6
and
53349d69ddf7a2ba128f0928fb3b376422611a3b

show more ...

1...<<11121314151617181920>>...22