]> granicus.if.org Git - php/log
php
25 years agoFix for Solaris incapability
Sascha Schumann [Thu, 30 Dec 1999 15:05:04 +0000 (15:05 +0000)]
Fix for Solaris incapability

25 years agoAppend liblber to satisfy symbols in libldap
Sascha Schumann [Thu, 30 Dec 1999 14:49:17 +0000 (14:49 +0000)]
Append liblber to satisfy symbols in libldap

25 years agoLet m4 decide what to do
Sascha Schumann [Thu, 30 Dec 1999 14:48:26 +0000 (14:48 +0000)]
Let m4 decide what to do

25 years agoRemove second {}, that shouldn't be there
Sascha Schumann [Thu, 30 Dec 1999 14:47:32 +0000 (14:47 +0000)]
Remove second {}, that shouldn't be there

25 years agoFix define.
Sascha Schumann [Thu, 30 Dec 1999 13:19:56 +0000 (13:19 +0000)]
Fix define.

This should be the last one, my earlier search didn't find macro names
contain numbers.

25 years agofix AC_DEFINE
Thies C. Arntzen [Thu, 30 Dec 1999 12:27:09 +0000 (12:27 +0000)]
fix AC_DEFINE

25 years agoDefine to 1
Sascha Schumann [Thu, 30 Dec 1999 08:03:55 +0000 (08:03 +0000)]
Define to 1

25 years agoProper protection for GNU make's parallel build
Sascha Schumann [Thu, 30 Dec 1999 07:15:43 +0000 (07:15 +0000)]
Proper protection for GNU make's parallel build

25 years agoPropagate error condition correctly
Sascha Schumann [Thu, 30 Dec 1999 06:16:55 +0000 (06:16 +0000)]
Propagate error condition correctly

25 years agoEase include file selection. Let's see which cpps support this construct.
Sascha Schumann [Thu, 30 Dec 1999 06:09:46 +0000 (06:09 +0000)]
Ease include file selection. Let's see which cpps support this construct.

25 years agoRebuild config.h.in whenever configure changes
Sascha Schumann [Thu, 30 Dec 1999 06:07:56 +0000 (06:07 +0000)]
Rebuild config.h.in whenever configure changes

25 years agoAdd distclean target
Sascha Schumann [Thu, 30 Dec 1999 05:53:27 +0000 (05:53 +0000)]
Add distclean target

25 years agoThis should enable people to use ALLOC_ZVAL() in code outside the php4.dll
Zeev Suraski [Thu, 30 Dec 1999 05:25:44 +0000 (05:25 +0000)]
This should enable people to use ALLOC_ZVAL() in code outside the php4.dll

25 years agoWhoops, defining them to empty values generates many parse errors.
Sascha Schumann [Thu, 30 Dec 1999 04:52:19 +0000 (04:52 +0000)]
Whoops, defining them to empty values generates many parse errors.
Defaulting to 1.

25 years agoGet rid of config.h.stub. Note that you should embed a comment about
Sascha Schumann [Thu, 30 Dec 1999 04:07:46 +0000 (04:07 +0000)]
Get rid of config.h.stub. Note that you should embed a comment about
what the respective define does into the AC_DEFINE macro. I.e.

AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])

25 years agoWe build in regex as well, create empty .deps
Sascha Schumann [Thu, 30 Dec 1999 03:23:05 +0000 (03:23 +0000)]
We build in regex as well, create empty .deps

25 years agoLet genfiles work in the new environment
Sascha Schumann [Thu, 30 Dec 1999 03:13:21 +0000 (03:13 +0000)]
Let genfiles work in the new environment

25 years agoIntegration of -ng changes. Changes:
Sascha Schumann [Thu, 30 Dec 1999 02:59:53 +0000 (02:59 +0000)]
Integration of -ng changes. Changes:

- added support for externally built modules,
- improved support for in-tree shared modules,
- fixed diversion bugs,
- configure displays some informative messages,
- faster static build
  (libtool isn't used anymore for compiling non-PIC objects),
- dependencies comparable to automake's without requiring GNU make or GCC,
- working make clean for non-GNU makes.

25 years agoMacro syntax has changed
Sascha Schumann [Thu, 30 Dec 1999 02:21:21 +0000 (02:21 +0000)]
Macro syntax has changed

25 years agoRewrite TSRM_CHECK_GCC_ARG to cache its result
Sascha Schumann [Thu, 30 Dec 1999 02:19:39 +0000 (02:19 +0000)]
Rewrite TSRM_CHECK_GCC_ARG to cache its result

25 years agoChangeLog update
<changelog@php.net> [Thu, 30 Dec 1999 02:08:57 +0000 (02:08 +0000)]
ChangeLog update

25 years agoSolaris' sed does not like this expression. Since -O0 is the default,
Sascha Schumann [Thu, 30 Dec 1999 01:13:42 +0000 (01:13 +0000)]
Solaris' sed does not like this expression. Since -O0 is the default,
we can also omit it.

25 years agoLet check succeed on systems which don't need special flags for pthreads.
Sascha Schumann [Thu, 30 Dec 1999 00:48:45 +0000 (00:48 +0000)]
Let check succeed on systems which don't need special flags for pthreads.
Also change the message to be more informative.

25 years agoDon't search for config.h.stubs in sapi
Sascha Schumann [Wed, 29 Dec 1999 21:25:01 +0000 (21:25 +0000)]
Don't search for config.h.stubs in sapi

25 years agoGet rid of some config.h.stubs. Comments are placed into AC_DEFINE()
Sascha Schumann [Wed, 29 Dec 1999 21:24:43 +0000 (21:24 +0000)]
Get rid of some config.h.stubs. Comments are placed into AC_DEFINE()

25 years ago- Change var_reset() to set bool(0) instead of string("")
Zeev Suraski [Wed, 29 Dec 1999 17:29:26 +0000 (17:29 +0000)]
- Change var_reset() to set bool(0) instead of string("")

Authors should go over their code and change it to use var_reset() instead of manually
setting it to string(""), in case they're interested in the false value.

25 years agotime_t is an int under Linux... this should always work.
Zeev Suraski [Wed, 29 Dec 1999 17:22:47 +0000 (17:22 +0000)]
time_t is an int under Linux... this should always work.

25 years agoChangeLog update
<changelog@php.net> [Wed, 29 Dec 1999 02:09:03 +0000 (02:09 +0000)]
ChangeLog update

25 years agoMake sapi_module static. This is was the majority of SAPI modules uses.
Sascha Schumann [Tue, 28 Dec 1999 23:48:39 +0000 (23:48 +0000)]
Make sapi_module static. This is was the majority of SAPI modules uses.
I wonder how this has worked up to now..

25 years agoFix -Wall warnings
Sascha Schumann [Tue, 28 Dec 1999 20:50:34 +0000 (20:50 +0000)]
Fix -Wall warnings

25 years agoFix warnings
Sascha Schumann [Tue, 28 Dec 1999 20:33:02 +0000 (20:33 +0000)]
Fix warnings

25 years agoMove include into source file
Sascha Schumann [Tue, 28 Dec 1999 18:47:59 +0000 (18:47 +0000)]
Move include into source file

25 years agoAdd neccessary includes
Sascha Schumann [Tue, 28 Dec 1999 18:45:10 +0000 (18:45 +0000)]
Add neccessary includes

25 years ago*** empty log message ***
Thies C. Arntzen [Tue, 28 Dec 1999 15:23:24 +0000 (15:23 +0000)]
*** empty log message ***

25 years agonot too bad: i can see phpinfo()!
Thies C. Arntzen [Tue, 28 Dec 1999 14:09:58 +0000 (14:09 +0000)]
not too bad: i can see phpinfo()!

25 years agoshut up
Thies C. Arntzen [Tue, 28 Dec 1999 13:59:17 +0000 (13:59 +0000)]
shut up

25 years agoSAPI module for phttpd - found at ftp://ftp.netuse.de/pub/phttpd/, ftp://ftp.signum...
Thies C. Arntzen [Tue, 28 Dec 1999 13:58:52 +0000 (13:58 +0000)]
SAPI module for phttpd - found at ftp://ftp.netuse.de/pub/phttpd/, ftp://ftp.signum.se/pub/phttpd/
(DOES NOT WORK YET!!)

25 years agonon-ZTS fix
Thies C. Arntzen [Tue, 28 Dec 1999 12:14:18 +0000 (12:14 +0000)]
non-ZTS fix

25 years agonew constant: SQL_NULL
Thies C. Arntzen [Tue, 28 Dec 1999 12:05:48 +0000 (12:05 +0000)]
new constant: SQL_NULL
new macros: RETURN_SQLNULL,RETVAL_SQLNULL,IS_SQLNULL

25 years agoRemove unneccessary include to make stand-alone build work
Sascha Schumann [Tue, 28 Dec 1999 07:54:21 +0000 (07:54 +0000)]
Remove unneccessary include to make stand-alone build work

25 years agoMove .PHONY special target to the end
Sascha Schumann [Tue, 28 Dec 1999 05:38:43 +0000 (05:38 +0000)]
Move .PHONY special target to the end

25 years agoChangeLog update
<changelog@php.net> [Tue, 28 Dec 1999 02:09:03 +0000 (02:09 +0000)]
ChangeLog update

25 years agoNEWS update
<changelog@php.net> [Tue, 28 Dec 1999 02:08:58 +0000 (02:08 +0000)]
NEWS update

25 years agoBeginning work to get PHP 4 to work with Apache 2.0. This change detects
Ryan Bloom [Mon, 27 Dec 1999 23:42:46 +0000 (23:42 +0000)]
Beginning work to get PHP 4 to work with Apache 2.0.  This change detects
Apache 2.0 properly.
# This is extremely experimental because neither project is release
# quality yet.  I expect this to drive bugs out of Apache 2.0's configure
# process as well as provide a useful version of PHP for Apache 2.0, so it
# may take some time for this to become stable.  I will commit changes to
# PHP as needed although more modifications will be on the Apache side.

25 years agoFix
Zeev Suraski [Mon, 27 Dec 1999 22:03:25 +0000 (22:03 +0000)]
Fix

25 years ago@- Fixed -c support in the standalone CGI binary (Zeev)
Zeev Suraski [Mon, 27 Dec 1999 21:21:26 +0000 (21:21 +0000)]
@- Fixed -c support in the standalone CGI binary (Zeev)
Fixed -c support in the standalone CGI binary (Zeev)

25 years ago- Get rid of warning
Andi Gutmans [Mon, 27 Dec 1999 19:17:40 +0000 (19:17 +0000)]
- Get rid of warning

25 years ago- Generalize the fast cache mechanism
Zeev Suraski [Mon, 27 Dec 1999 19:07:33 +0000 (19:07 +0000)]
- Generalize the fast cache mechanism
- Add the HashTable struct to the fast cache mechanism

25 years ago- Make zend_internal_function allocate a full zend_function structure so
Andi Gutmans [Mon, 27 Dec 1999 17:29:35 +0000 (17:29 +0000)]
- Make zend_internal_function allocate a full zend_function structure so
  that we don't get memory overruns and Thies doesn't get angry :)

25 years ago*** empty log message ***
Zeev Suraski [Mon, 27 Dec 1999 17:24:33 +0000 (17:24 +0000)]
*** empty log message ***

25 years agoAdd cache statistics support
Zeev Suraski [Mon, 27 Dec 1999 16:42:59 +0000 (16:42 +0000)]
Add cache statistics support

25 years agoFormat fix.
Andrei Zmievski [Mon, 27 Dec 1999 14:18:30 +0000 (14:18 +0000)]
Format fix.

25 years agofix UMR in ZTS mode
Thies C. Arntzen [Mon, 27 Dec 1999 11:22:57 +0000 (11:22 +0000)]
fix UMR in ZTS mode

25 years agoBuild correctly on systems which lack localtime_r
Sascha Schumann [Mon, 27 Dec 1999 10:52:46 +0000 (10:52 +0000)]
Build correctly on systems which lack localtime_r

25 years agoSave a few lines while checking for -pthread[s]?
Sascha Schumann [Mon, 27 Dec 1999 09:54:12 +0000 (09:54 +0000)]
Save a few lines while checking for -pthread[s]?

25 years agoChangeLog update
<changelog@php.net> [Mon, 27 Dec 1999 02:09:03 +0000 (02:09 +0000)]
ChangeLog update

25 years ago- Enable the new zval cache on debug too. No real reason not to, and it keeps
Zeev Suraski [Sun, 26 Dec 1999 23:20:18 +0000 (23:20 +0000)]
- Enable the new zval cache on debug too.  No real reason not to, and it keeps
  the code cleaner.
- ZTS compile fixes

25 years agoFix buglet
Zeev Suraski [Sun, 26 Dec 1999 22:50:08 +0000 (22:50 +0000)]
Fix buglet

25 years agoAdd missing file
Zeev Suraski [Sun, 26 Dec 1999 22:41:20 +0000 (22:41 +0000)]
Add missing file

25 years agoCache results of crypt capability checks
Sascha Schumann [Sun, 26 Dec 1999 22:35:55 +0000 (22:35 +0000)]
Cache results of crypt capability checks

25 years ago*** empty log message ***
Zeev Suraski [Sun, 26 Dec 1999 21:58:46 +0000 (21:58 +0000)]
*** empty log message ***

25 years agoIntroduce a zval-specific cache - 5-15% speed improvement
Zeev Suraski [Sun, 26 Dec 1999 21:56:59 +0000 (21:56 +0000)]
Introduce a zval-specific cache - 5-15% speed improvement

25 years agoMakefile.am: Add dummy target for dependencies
Sascha Schumann [Sun, 26 Dec 1999 21:45:53 +0000 (21:45 +0000)]
Makefile.am: Add dummy target for dependencies
acinclude.m4: Cache result of broken sprintf check

25 years agoChange ALLOC_ZVAL() semantics
Zeev Suraski [Sun, 26 Dec 1999 21:21:33 +0000 (21:21 +0000)]
Change ALLOC_ZVAL() semantics

25 years agonamespace protection
Zeev Suraski [Sun, 26 Dec 1999 20:45:42 +0000 (20:45 +0000)]
namespace protection

25 years agoChangeLog update
<changelog@php.net> [Sun, 26 Dec 1999 02:08:58 +0000 (02:08 +0000)]
ChangeLog update

25 years ago- Change uint32 to php_uint32 (PostgreSQL defines uint32, and perhaps other packages...
Zeev Suraski [Sun, 26 Dec 1999 00:18:44 +0000 (00:18 +0000)]
- Change uint32 to php_uint32 (PostgreSQL defines uint32, and perhaps other packages too)
- PostgreSQL finally compiles&links

25 years agoMake PostgreSQL compile again
Zeev Suraski [Sat, 25 Dec 1999 23:59:14 +0000 (23:59 +0000)]
Make PostgreSQL compile again

25 years agoinline functions cannot accept varargs
Zeev Suraski [Sat, 25 Dec 1999 23:52:00 +0000 (23:52 +0000)]
inline functions cannot accept varargs

25 years ago- Prepare Zend for the new $a{2} string offset syntax.
Andi Gutmans [Sat, 25 Dec 1999 16:46:32 +0000 (16:46 +0000)]
- Prepare Zend for the new $a{2} string offset syntax.

25 years ago- Get rid of two warnings
Andi Gutmans [Sat, 25 Dec 1999 09:06:55 +0000 (09:06 +0000)]
- Get rid of two warnings

25 years agoChangeLog update
<changelog@php.net> [Sat, 25 Dec 1999 02:09:05 +0000 (02:09 +0000)]
ChangeLog update

25 years agoNEWS update
<changelog@php.net> [Sat, 25 Dec 1999 02:09:00 +0000 (02:09 +0000)]
NEWS update

25 years agoUpdate .cvsignore, make build.mk more verbose
Sascha Schumann [Fri, 24 Dec 1999 23:29:39 +0000 (23:29 +0000)]
Update .cvsignore, make build.mk more verbose

25 years agoEnable dependencies for UNIX. Because this only works, if you use
Sascha Schumann [Fri, 24 Dec 1999 22:55:33 +0000 (22:55 +0000)]
Enable dependencies for UNIX. Because this only works, if you use
GNU make and GCC, you need to enable it manually by running

$ touch php4/want_dependencies

25 years agoUse __forceinline under Win32 (inlining under Win32 gives roughly 30% performance
Zeev Suraski [Fri, 24 Dec 1999 21:27:55 +0000 (21:27 +0000)]
Use __forceinline under Win32 (inlining under Win32 gives roughly 30% performance
increase)

25 years agophp3_realpath.c -> php_realpath.c
Zeev Suraski [Fri, 24 Dec 1999 20:47:35 +0000 (20:47 +0000)]
php3_realpath.c -> php_realpath.c

25 years agoFix warnings
Zeev Suraski [Fri, 24 Dec 1999 20:47:01 +0000 (20:47 +0000)]
Fix warnings

25 years agoShut gcc up
Zeev Suraski [Fri, 24 Dec 1999 20:19:37 +0000 (20:19 +0000)]
Shut gcc up

25 years ago- Move more stuff to ALLOC_ZVAL(). We need to add those FREE_ZVAL()'s now.
Andi Gutmans [Fri, 24 Dec 1999 17:39:27 +0000 (17:39 +0000)]
- Move more stuff to ALLOC_ZVAL(). We need to add those FREE_ZVAL()'s now.

25 years agoOptimize
Zeev Suraski [Fri, 24 Dec 1999 16:03:44 +0000 (16:03 +0000)]
Optimize

25 years agoAdd -rdynamic, if supported by gcc and static Apache build is used
Sascha Schumann [Fri, 24 Dec 1999 15:56:40 +0000 (15:56 +0000)]
Add -rdynamic, if supported by gcc and static Apache build is used

25 years agoRemove --enable-low-memory, and preserve LIBS from TSRM
Sascha Schumann [Fri, 24 Dec 1999 15:47:44 +0000 (15:47 +0000)]
Remove --enable-low-memory, and preserve LIBS from TSRM

25 years agoPut -pthreads? into CFLAGS; libtool still filters it out during shared
Sascha Schumann [Fri, 24 Dec 1999 15:44:58 +0000 (15:44 +0000)]
Put -pthreads? into CFLAGS; libtool still filters it out during shared
library linking; need to find a way to prevent that.

25 years ago- Use ALLOC_ZVAL() in PHP. Finding the places to put FREE_ZVAL(z) is much
Andi Gutmans [Fri, 24 Dec 1999 15:43:39 +0000 (15:43 +0000)]
- Use ALLOC_ZVAL() in PHP. Finding the places to put FREE_ZVAL(z) is much
  more tricky and I'm not sure how many places this is. zval allocations
  were only made directly in 11 places.

25 years ago- Create two new macro's. ALLOC_ZVAL() and FREE_ZVAL(z) and make Zend use
Andi Gutmans [Fri, 24 Dec 1999 15:22:11 +0000 (15:22 +0000)]
- Create two new macro's. ALLOC_ZVAL() and FREE_ZVAL(z) and make Zend use
  them.

25 years ago- Use function_add_ref() here too
Zeev Suraski [Fri, 24 Dec 1999 14:49:57 +0000 (14:49 +0000)]
- Use function_add_ref() here too

25 years ago- Beef up the INI file reader - it now supports PHP constants, as well as
Zeev Suraski [Fri, 24 Dec 1999 13:46:24 +0000 (13:46 +0000)]
- Beef up the INI file reader - it now supports PHP constants, as well as
  bitwise operators on them (no more error_reporting = 7, from now on you
  can use error_reporting = E_ALL & ~E_NOTICE
@- Improved the php.ini reader to support constants and bitwise operators (Zeev)

25 years agoChangeLog update
<changelog@php.net> [Fri, 24 Dec 1999 02:09:08 +0000 (02:09 +0000)]
ChangeLog update

25 years agoNEWS update
<changelog@php.net> [Fri, 24 Dec 1999 02:09:03 +0000 (02:09 +0000)]
NEWS update

25 years ago- Make the project compile again
Andi Gutmans [Thu, 23 Dec 1999 22:21:37 +0000 (22:21 +0000)]
- Make the project compile again

25 years agoFix a class inheritence leak, when using static varibles in a parent class member...
Zeev Suraski [Thu, 23 Dec 1999 19:23:36 +0000 (19:23 +0000)]
Fix a class inheritence leak, when using static varibles in a parent class member function

25 years agoThis one slipped away
Zeev Suraski [Thu, 23 Dec 1999 18:07:52 +0000 (18:07 +0000)]
This one slipped away

25 years agoRename option to match description string
Sascha Schumann [Thu, 23 Dec 1999 17:48:56 +0000 (17:48 +0000)]
Rename option to match description string

25 years agoclean up basic_functions
Thies C. Arntzen [Thu, 23 Dec 1999 15:18:56 +0000 (15:18 +0000)]
clean up basic_functions

25 years ago- require() of a dynamic expression now has the standard require() semantics
Zeev Suraski [Thu, 23 Dec 1999 15:03:25 +0000 (15:03 +0000)]
- require() of a dynamic expression now has the standard require() semantics
- Fixed a memory leak in require() of a dynamic expression

25 years agopval->zval
Thies C. Arntzen [Thu, 23 Dec 1999 14:59:01 +0000 (14:59 +0000)]
pval->zval

25 years ago@- strrev() no longer modifies arg1. (Thies)
Thies C. Arntzen [Thu, 23 Dec 1999 14:55:50 +0000 (14:55 +0000)]
@- strrev() no longer modifies arg1. (Thies)

25 years agoCompile zend_execute.c with special CFLAGS. For GCC, INLINE_CFLAGS
Sascha Schumann [Thu, 23 Dec 1999 13:29:26 +0000 (13:29 +0000)]
Compile zend_execute.c with special CFLAGS. For GCC, INLINE_CFLAGS
contains -O0 to disable optimizations. This can be disabled by using
the appropiate parameter.

25 years agokilled warning + added reminder
Thies C. Arntzen [Thu, 23 Dec 1999 12:52:12 +0000 (12:52 +0000)]
killed warning + added reminder