History log of /PHP-7.1/acinclude.m4 (Results 401 – 425 of 483)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# c2279a02 16-May-2000 Sascha Schumann

s/normal/SUSV2/


Revision tags: php-4.0RC2
# 62d55047 08-May-2000 Thies C. Arntzen

AC_ADD_LIBRARY_WITH_PATH now always prepends new libraries.


# 3ee9304c 08-May-2000 Thies C. Arntzen

support empty libpath in AC_ADD_LIBRARY_WITH_PATH
make sure the link-order for shared and static builds are the same


# b345acb5 07-May-2000 Sascha Schumann

Never tell link editor to libc. Some systems use thread-safe
replacements for libc in Pthreads mode.


# dc91d470 04-May-2000 Sascha Schumann

Remove trailing slash(es) from pathnames


# d0f3764e 04-May-2000 Sascha Schumann

Change reentrancy API to always use the php prefix.

Check for the declaration of reentrant functions, so that we can use
them in non-ZTS mode on all platforms.


# b6e4841e 04-May-2000 Sascha Schumann

Determine first whether we will use ZTS mode or not.

This is important, because the system checks will yield different
results depending on whether POSIX threads are enabled or not.

Determine first whether we will use ZTS mode or not.

This is important, because the system checks will yield different
results depending on whether POSIX threads are enabled or not.

We also use PTHREADS_CFLAGS only in ZTS mode now. Using these flags
in non-ZTS mode causes complete build failures on some platforms
(i.e. FreeBSD 2.2.x). This will cause harmless warnings on some
platforms (i.e. Solaris 2).

show more ...


# cae3b7df 02-May-2000 Sascha Schumann

Pear Changes:

Store EXTENSION_DIR in php-config

Ignore errors during header installation

Automatically enable modules in self-contained mode

Create empty .

Pear Changes:

Store EXTENSION_DIR in php-config

Ignore errors during header installation

Automatically enable modules in self-contained mode

Create empty .deps in builddir

show more ...


# 0b516602 02-May-2000 Sascha Schumann

Add shared-libadd option to AC_ADD_LIBRARY_WITH_PATH.

This lets you replace

if test "$ext_shared" = "yes"; then
FOO_SHARED_LIBADD="-R$LIBDIR -L$LIBDIR -l$LIB"
else

Add shared-libadd option to AC_ADD_LIBRARY_WITH_PATH.

This lets you replace

if test "$ext_shared" = "yes"; then
FOO_SHARED_LIBADD="-R$LIBDIR -L$LIBDIR -l$LIB"
else
AC_ADD_LIBRARY_WITH_PATH($LIB, $LIBDIR)
fi

with

AC_ADD_LIBRARY_WITH_PATH($LIB, $LIBDIR, FOO_SHARED_LIBADD)

show more ...


# 113b8773 01-May-2000 Sascha Schumann

Use GCC's --print-libgcc-file-name flag to find libgcc's path.

Obtained from: mod_ssl


# a481fddf 01-May-2000 Sascha Schumann

Improved in-tree shared libraries build system

The following new/revived shared modules are available now:

... MySQL (*)
... PCRE (*)
... Session
... SWF

Improved in-tree shared libraries build system

The following new/revived shared modules are available now:

... MySQL (*)
... PCRE (*)
... Session
... SWF

(*) capable of using bundled library or external library

All changes:

The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now.
This effectively means that all extensions have to use dynlib.

ext/mysql/config.m4 was revamped.
Uses LIB_BUILD for building bundled library.

ext/pcre/config.m4 was revamped.
Uses LIB_BUILD for building bundled library.

ext/ext_skel was changed to reflect that more modules should be
compileable as shared module.

ext/Makefile.in has been simplified enormously.

Dependencies are now stored in the build tree.

Empty dependencies are not generated by buildconf anymore. They
are now dynamically created during the build process.

Implicit rules for .S were removed.

The NO_RECURSION feature was removed.

"libs.mk" has been added to all cvsignore files in ext.

show more ...


# 06e504d3 13-Apr-2000 Martin Kraemer

Test for EBCDIC platform


# 179672a9 01-Apr-2000 Sascha Schumann

Fix the HPUX 10.20 check for non-standard reentrant time functions


# 1e31b775 30-Mar-2000 Sascha Schumann

* Add --enable-libgcc which explicitly links against libgcc.

* Some cleanup and increased use of PHP_ARG_[ENABLE|WITH]


# 1f822b98 27-Mar-2000 Sascha Schumann

Welcome PHP_ARG_ENABLE and PHP_ARG_WITH. They are there to replace the common
AC_MSG_CHECKING, AC_ARG_[ENABLE,WITH], AC_MSG_RESULT trio.


Revision tags: PHP-4.0-RC1
# a2d42419 26-Mar-2000 Sascha Schumann

Revamp session's config.m4 and reenable support for mm. The shared memory
module works now successfully again under Apache and other web servers.


# 1aba4ea9 11-Mar-2000 Kristian Köhntopp

- Added additional DEFER macro.
- First stab at porting the recode module. Still having problems
with the _ex() functions, they core - why?


# f6460bfe 09-Mar-2000 Sascha Schumann

VPATH builds were broken, if the user specified the path to configure
using an absolute path. With this change, absolute and relative paths
are accepted and processed correctly.


# 77fb7d2b 07-Mar-2000 Sascha Schumann

Write configuration parameters into `config.nice', so you can redo the
same configuration with exactly one command.


# 3bfe29fd 03-Mar-2000 Sascha Schumann

Support HP-UX 10.x non-standard time-related reentrant functions


# c5977f65 29-Feb-2000 Sascha Schumann

AD_ADD_LIBRARY_DEFER allows people to add libraries in a deferred way
(needed for imap and recode)


Revision tags: php-4.0b4pl1, php-4.0b4, php-4.0b4_rc1, BEFORE_SAPI_POST_PATCH_17_FEB_2000
# 883c62b5 12-Feb-2000 Sascha Schumann

$ext_src_base is the source dir of the extension


# 6d0ab616 10-Feb-2000 Zeev Suraski

SAPIfication, Episode VI: Return of the SAPI
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except f

SAPIfication, Episode VI: Return of the SAPI
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except for the Apache SAPI module.
- No server specific code is in any of the base PHP code.

Still left to be done:
- Eliminate any references to APACHE from the few remaining modules.
- Move request_info.c's logic to SAPI
- Modify the regex function names, and globals, so that we can always
include them, without having to fear any interference with Apache;
Always use the bundled regex library

show more ...


Revision tags: BEFORE_SAPIFICATION_FEB_10_2000
# aa50e636 10-Feb-2000 Sascha Schumann

Set ext_base, a common prefix to the per-extension build directory
(ext/<ext-name> for in-tree builds, "" for rest)


# b4864206 02-Feb-2000 Andrei Zmievski

Remove crud.


1...<<11121314151617181920