]> granicus.if.org Git - php/log
php
22 years ago- TIFF support for GetImageSize
Marcus Boerger [Mon, 4 Mar 2002 17:17:41 +0000 (17:17 +0000)]
- TIFF support for GetImageSize
@ TIFF support for GetImageSize (Marcus)

22 years ago- disabled debug information
Marcus Boerger [Mon, 4 Mar 2002 17:09:24 +0000 (17:09 +0000)]
- disabled debug information
- added missing width/height from primary ifd for TIFF

22 years agotypos suck.
James Cox [Mon, 4 Mar 2002 17:09:09 +0000 (17:09 +0000)]
typos suck.

22 years agoStyle mismatch: Jon's catch
Jason Greene [Mon, 4 Mar 2002 15:02:23 +0000 (15:02 +0000)]
Style mismatch: Jon's catch

22 years agocygwin fix
Stanislav Malyshev [Mon, 4 Mar 2002 11:11:25 +0000 (11:11 +0000)]
cygwin fix

22 years agoSilence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).
Jon Parise [Mon, 4 Mar 2002 11:03:19 +0000 (11:03 +0000)]
Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).

22 years agoSilence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).
Jon Parise [Mon, 4 Mar 2002 10:58:00 +0000 (10:58 +0000)]
Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).

22 years ago- Fix a path and remove --with-imap
Derick Rethans [Mon, 4 Mar 2002 10:45:30 +0000 (10:45 +0000)]
- Fix a path and remove --with-imap

22 years agoPEAR_Config rewrite:
Stig Bakken [Mon, 4 Mar 2002 10:02:45 +0000 (10:02 +0000)]
PEAR_Config rewrite:

* Now supports (in theory) an arbitrary number of
  config "layers" (different sets of configuration data with a defined
  priority).
* Specify the type of config values so different frontends can make
  user-friendly configuration interfaces.  Valid types are currently
  "string", "integer", "file", "directory", "set" and "password".  The
  set type lets you specify a limited set of values that the config
  values must be selected from.  Password values are stored
  base64-encoded.
* Added phpdoc comments and some docs for config values.
* Added singleton method.
# configuration files still contain serialized data

22 years ago-addition to last change: php_image.h must be included now
Marcus Boerger [Mon, 4 Mar 2002 09:29:06 +0000 (09:29 +0000)]
-addition to last change: php_image.h must be included now

22 years agoChanging the Velocis extension to now be called Birdstep, due to a product/company...
James Cox [Mon, 4 Mar 2002 09:10:32 +0000 (09:10 +0000)]
Changing the Velocis extension to now be called Birdstep, due to a product/company change.
added aliases for Velocis to the birdstep functions.
# testing is both advised and encouraged!
@ The Velocis extension is no

22 years agoRestore use of inline
Sascha Schumann [Mon, 4 Mar 2002 08:37:44 +0000 (08:37 +0000)]
Restore use of inline

22 years agoRemove note, suppress warning
Sascha Schumann [Mon, 4 Mar 2002 08:28:57 +0000 (08:28 +0000)]
Remove note, suppress warning

22 years agoReduce operations in the ub_write loop.
Sascha Schumann [Mon, 4 Mar 2002 08:25:20 +0000 (08:25 +0000)]
Reduce operations in the ub_write loop.

22 years agoFree status line, initialize number_vec, correctly account for
Sascha Schumann [Mon, 4 Mar 2002 08:22:33 +0000 (08:22 +0000)]
Free status line, initialize number_vec, correctly account for
the number of bytes in the document, avoid strcpy/strlen.

22 years agoLet getimagesize() and read_exif_data() share the same constants to
Rasmus Lerdorf [Mon, 4 Mar 2002 07:21:30 +0000 (07:21 +0000)]
Let getimagesize() and read_exif_data() share the same constants to
promote a little bit of code reuse here on two very similar problems.

22 years ago-Updated test.txt and provided test.php
Marcus Boerger [Mon, 4 Mar 2002 06:26:07 +0000 (06:26 +0000)]
-Updated test.txt and provided test.php
# simply including test.txt
@Added test.php/txt to have a possibility to check ext/exif
@(Marcus)

22 years ago-Added TIFF support
Marcus Boerger [Mon, 4 Mar 2002 06:21:58 +0000 (06:21 +0000)]
-Added TIFF support
-Changed parameters after checking bugdatabase and discussion with
    Rasmus: 1st=Filename, 2nd=NeededSections
# 3rd=Thumbnail, 4th=All
#   3rd and 4th parameter are currently diabled because the code
#   does not work correctly (will correct this in later versions).
#   Changing the parameters will not cause any problems because the
#   old parameter functions never found their way in documentation
#   and the they did not work...
@-Added TIFF support
@-Changed parameters after checking bugdatabase and discussion with Rasmus
@    1st=Filename, 2nd=NeededSections
@    If the 2nd parameter is not present or 0 or '' the function will return
@        a result array even if no data was read from file.
#        Personally i consider a default behaviour to generate no array if
#        no data is present as a bad idea because here we can generate as
#        much information as possible....
@    If the 2nd parameter is a string then that string describes which
@        sections have to be present in the file to generate a result array.
@        If none of the needed section is found the result will be false.
@        Section strings are "ANY_TAG","IFD0","COMMENT","EXIF","GPS","INTEROP"
@        "FPIX","APP12". Each string has to be separated by a colon. So
@        "COMMENT,EXIF" returns an array if either a comment or an Exif
@        section is present. "IFD0" is standard datastructure in a TIFF/JPEG
@        file that contains image information. "EXIF" is the Exif structure
@        of TIFF/JPEG (IFD0 subdirectory). "GPS", "INTEROP", "FPIX", "APP12"
@        are additional IFD0 subdirectories. The APP12 support is an
@  experimental Olympus support.
#        Do not worry this is no problem, it is safe.
@(Marcus)

22 years agoPatch 1 of 3 (2 in 3 still in progress) of sockets rework
Jason Greene [Mon, 4 Mar 2002 05:27:04 +0000 (05:27 +0000)]
Patch 1 of 3 (2 in 3 still in progress) of sockets rework
Abstracted string -> ipv4 value conversion which unifies all functions
Standardized Host Lookups
Fixed Broken host error values
Fixed error detection in sendmsg
Added some safety struct zeroing
Modified bind to consitentlyy use sockaddr_storage(not just for AF_UNIX)
#Note this could potentially break the build on other platforms, as I have
#not tested them yet (Will soon though)

22 years agoNEWS update
<changelog@php.net> [Mon, 4 Mar 2002 01:20:19 +0000 (01:20 +0000)]
NEWS update

22 years agoChangeLog update
<changelog@php.net> [Mon, 4 Mar 2002 01:19:24 +0000 (01:19 +0000)]
ChangeLog update

22 years agoAdded message regarding expected error messages for ./buildconf
Zak Greant [Sun, 3 Mar 2002 23:03:34 +0000 (23:03 +0000)]
Added message regarding expected error messages for ./buildconf

22 years ago(php_checkuid) Added case for root directory when mode is
James E. Flemer [Sun, 3 Mar 2002 21:12:49 +0000 (21:12 +0000)]
(php_checkuid) Added case for root directory when mode is
               not CHECKUID_ALLOW_ONLY_DIR.

22 years ago(php_checkuid) Added case for root directory when mode is
James E. Flemer [Sun, 3 Mar 2002 20:49:04 +0000 (20:49 +0000)]
(php_checkuid) Added case for root directory when mode is
               CHECKUID_ALLOW_ONLY_DIR.

22 years ago(PHP opendir) Added safe_mode checks on path.
James E. Flemer [Sun, 3 Mar 2002 20:46:57 +0000 (20:46 +0000)]
(PHP opendir) Added safe_mode checks on path.
@- Added safe_mode checks for opendir(). (jflemer)

22 years ago- Tidy up NEWS a little bit
Derick Rethans [Sun, 3 Mar 2002 19:09:55 +0000 (19:09 +0000)]
- Tidy up NEWS a little bit

22 years agoUpdated build instructions
Alex Waugh [Sun, 3 Mar 2002 14:25:59 +0000 (14:25 +0000)]
Updated build instructions

22 years agoNEWS update
<changelog@php.net> [Sun, 3 Mar 2002 01:21:04 +0000 (01:21 +0000)]
NEWS update

22 years agoChangeLog update
<changelog@php.net> [Sun, 3 Mar 2002 01:20:44 +0000 (01:20 +0000)]
ChangeLog update

22 years agoConsistency.
Sebastian Bergmann [Sat, 2 Mar 2002 22:26:17 +0000 (22:26 +0000)]
Consistency.

22 years agoAdd 'import statement' section.
Sebastian Bergmann [Sat, 2 Mar 2002 22:24:46 +0000 (22:24 +0000)]
Add 'import statement' section.

22 years ago- Initial patch to support importing from class scopes (for Stig).
Andi Gutmans [Sat, 2 Mar 2002 20:38:52 +0000 (20:38 +0000)]
- Initial patch to support importing from class scopes (for Stig).
- It isn't complete yet but I want to work on it from another machine. It
- shouldn't break anything else so just don't try and use it.
- The following is a teaser of something that already works:
<?php

class MyClass
{
function hello()
{
print "Hello, World\n";
}
class MyClass2
{
function hello()
{
print "Hello, World in MyClass2\n";
}
}
}

import function hello, class MyClass2 from MyClass;

MyClass2::hello();
hello();
?>

22 years ago- Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 parameters
Derick Rethans [Sat, 2 Mar 2002 19:53:11 +0000 (19:53 +0000)]
- Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 parameters
  are supplied, but you do not want to provide a row number yourself.
@- Make the 2nd parameter to pgsql_fetch_* support NULL in case 3
@  parameters are supplied, but you do not want to provide a row number
@  yourself. (Derick)

22 years agophp has no 'double', only 'float'
Hartmut Holzgraefe [Sat, 2 Mar 2002 17:08:09 +0000 (17:08 +0000)]
php has no 'double', only 'float'

22 years agotab/space mixture cleand up,
Hartmut Holzgraefe [Sat, 2 Mar 2002 16:49:06 +0000 (16:49 +0000)]
tab/space mixture cleand up,
editor config comments added,
minor proto fixes

22 years agotypo fix
Hartmut Holzgraefe [Sat, 2 Mar 2002 16:41:55 +0000 (16:41 +0000)]
typo fix

22 years agoFix another crash bug
Zeev Suraski [Sat, 2 Mar 2002 15:59:16 +0000 (15:59 +0000)]
Fix another crash bug

22 years agoenable ctype functions by default
Hartmut Holzgraefe [Sat, 2 Mar 2002 15:44:08 +0000 (15:44 +0000)]
enable ctype functions by default

22 years agoWrong brackets by rasmus...but sorry the fault was mine because i missed them...
Marcus Boerger [Sat, 2 Mar 2002 15:43:19 +0000 (15:43 +0000)]
Wrong brackets by rasmus...but sorry the fault was mine because i missed them...

i also decided to call the first working version 1.0a

by the way: currently i am working on tiff files and it looks like it may work

22 years agoFix version number
Zeev Suraski [Sat, 2 Mar 2002 14:33:25 +0000 (14:33 +0000)]
Fix version number

22 years agoFix a crash bug in the session module
Zeev Suraski [Sat, 2 Mar 2002 14:18:45 +0000 (14:18 +0000)]
Fix a crash bug in the session module

22 years ago- Fix warning message for join().
Derick Rethans [Sat, 2 Mar 2002 14:06:57 +0000 (14:06 +0000)]
- Fix warning message for join().

22 years ago- MFZE1
Derick Rethans [Sat, 2 Mar 2002 13:48:13 +0000 (13:48 +0000)]
- MFZE1

22 years ago- Fix CREDITS files
Derick Rethans [Sat, 2 Mar 2002 13:44:08 +0000 (13:44 +0000)]
- Fix CREDITS files

22 years ago- MFZE1
Derick Rethans [Sat, 2 Mar 2002 13:26:37 +0000 (13:26 +0000)]
- MFZE1

22 years ago- Make GD functions only available if they really exist (Patch by
Derick Rethans [Sat, 2 Mar 2002 12:32:31 +0000 (12:32 +0000)]
- Make GD functions only available if they really exist (Patch by
  matslin@orakel.ntnu.no)

22 years agoAdd mbstring tests
Yasuo Ohgaki [Sat, 2 Mar 2002 10:44:57 +0000 (10:44 +0000)]
Add mbstring tests

22 years agoUse php.ini-dist as default config file for testing.
Yasuo Ohgaki [Sat, 2 Mar 2002 09:29:45 +0000 (09:29 +0000)]
Use php.ini-dist as default config file for testing.

22 years agoFix a couple of warnings
Rasmus Lerdorf [Sat, 2 Mar 2002 08:37:28 +0000 (08:37 +0000)]
Fix a couple of warnings

22 years agoImproved iconv usage with libc's iconv. No overrun. More efficient memory
Yasuo Ohgaki [Sat, 2 Mar 2002 07:04:59 +0000 (07:04 +0000)]
Improved iconv usage with libc's iconv. No overrun. More efficient memory
allocation.
Hopefully, all bugs reported for iconv will be resolved when users are using
libc iconv.
@Improved iconv with libc's iconv

22 years agoAdd more tests for iconv
Yasuo Ohgaki [Sat, 2 Mar 2002 07:00:40 +0000 (07:00 +0000)]
Add more tests for iconv

22 years ago* more cli test fixes
Stig Bakken [Sat, 2 Mar 2002 03:11:02 +0000 (03:11 +0000)]
* more cli test fixes

22 years ago* updated tests to work with cli
Stig Bakken [Sat, 2 Mar 2002 03:07:48 +0000 (03:07 +0000)]
* updated tests to work with cli

22 years agofix test
Stig Bakken [Sat, 2 Mar 2002 02:47:48 +0000 (02:47 +0000)]
fix test

22 years ago* work with sapi/cli
Stig Bakken [Sat, 2 Mar 2002 02:37:13 +0000 (02:37 +0000)]
* work with sapi/cli

22 years agoNEWS update
<changelog@php.net> [Sat, 2 Mar 2002 01:20:56 +0000 (01:20 +0000)]
NEWS update

22 years agoChangeLog update
<changelog@php.net> [Sat, 2 Mar 2002 01:20:39 +0000 (01:20 +0000)]
ChangeLog update

22 years agoAdded PHP_SAPI constant which contains the name of running SAPI.
Edin Kadribasic [Fri, 1 Mar 2002 19:29:35 +0000 (19:29 +0000)]
Added PHP_SAPI constant which contains the name of running SAPI.
@- Added PHP_SAPI constant which contains the name of running SAPI. (Edin)

22 years agoMFZE1
Andrei Zmievski [Fri, 1 Mar 2002 17:34:52 +0000 (17:34 +0000)]
MFZE1

22 years agoMFZE1
Andrei Zmievski [Fri, 1 Mar 2002 17:26:31 +0000 (17:26 +0000)]
MFZE1

22 years ago- Fix for Sun WorkShop 6 update 2 compiler (Bug #15812)
Derick Rethans [Fri, 1 Mar 2002 16:52:16 +0000 (16:52 +0000)]
- Fix for Sun WorkShop 6 update 2 compiler (Bug #15812)

22 years ago*** empty log message ***
Andrei Zmievski [Fri, 1 Mar 2002 16:13:33 +0000 (16:13 +0000)]
*** empty log message ***

22 years ago- Remove use of C++ reserved words namespace/this
Andi Gutmans [Fri, 1 Mar 2002 14:27:26 +0000 (14:27 +0000)]
- Remove use of C++ reserved words namespace/this

22 years ago- Fix bug in nested try/catch's
Andi Gutmans [Fri, 1 Mar 2002 14:04:51 +0000 (14:04 +0000)]
- Fix bug in nested try/catch's
- Infrastructure for implementing imports of methods.

22 years ago- Add support for returning NULL values from Interbase resultsets (Patch by
Derick Rethans [Fri, 1 Mar 2002 14:03:10 +0000 (14:03 +0000)]
- Add support for returning NULL values from Interbase resultsets (Patch by
  Daniela Mariaschi <mariaschi@libero.it>)

22 years ago- We haven't got the branch yet..
foobar [Fri, 1 Mar 2002 12:18:29 +0000 (12:18 +0000)]
- We haven't got the branch yet..
- Some typo fixes and correct grammar.

22 years agoFix compiler warnings and header file path.
Yasuo Ohgaki [Fri, 1 Mar 2002 12:01:53 +0000 (12:01 +0000)]
Fix compiler warnings and header file path.

22 years agoFix php_splice() to work with large values
Zeev Suraski [Fri, 1 Mar 2002 12:00:05 +0000 (12:00 +0000)]
Fix php_splice() to work with large values

22 years agoUpdate doc
Yasuo Ohgaki [Fri, 1 Mar 2002 11:52:04 +0000 (11:52 +0000)]
Update doc

22 years ago- Fix crash reported by Sebastian when destructor function causes a fatal
Andi Gutmans [Fri, 1 Mar 2002 10:26:10 +0000 (10:26 +0000)]
- Fix crash reported by Sebastian when destructor function causes a fatal
- error. I hope this does it and we don't find any other problems.

22 years agoAdded todo item for Java extention documentation.
Yasuo Ohgaki [Fri, 1 Mar 2002 10:24:13 +0000 (10:24 +0000)]
Added todo item for Java extention documentation.

22 years agoMerge TODO-4.2.txt into TODO.
Yasuo Ohgaki [Fri, 1 Mar 2002 10:02:48 +0000 (10:02 +0000)]
Merge TODO-4.2.txt into TODO.

22 years ago* code for install/uninstall/upgrade complete, not yet tested
Stig Bakken [Fri, 1 Mar 2002 09:43:18 +0000 (09:43 +0000)]
* code for install/uninstall/upgrade complete, not yet tested
# uses a new, un-committed version of PEAR_Config

22 years agoDo explicit test againt to FAILURE.
Yasuo Ohgaki [Fri, 1 Mar 2002 09:29:32 +0000 (09:29 +0000)]
Do explicit test againt to FAILURE.
# Thanks Rasmus.

22 years ago* output a reminder to set CVS tags after packaging
Stig Bakken [Fri, 1 Mar 2002 09:16:49 +0000 (09:16 +0000)]
* output a reminder to set CVS tags after packaging

22 years ago* use cli sapi to run tests
Stig Bakken [Fri, 1 Mar 2002 08:57:07 +0000 (08:57 +0000)]
* use cli sapi to run tests

22 years agoadd stuff here also.
Shane Caraveo [Fri, 1 Mar 2002 06:48:27 +0000 (06:48 +0000)]
add stuff here also.

22 years agoadd comment for IIS users
Shane Caraveo [Fri, 1 Mar 2002 06:34:08 +0000 (06:34 +0000)]
add comment for IIS users
fix some whitespace

22 years ago+Support for Photographer/Editor Copyright as associative array as this is a new...
Marcus Boerger [Fri, 1 Mar 2002 04:01:26 +0000 (04:01 +0000)]
+Support for Photographer/Editor Copyright as associative array as this is a new feature the change (optionally being an array) has to be mentioned in documentation.
+New function exif_headername can be used to read the internal Tag namelist (was mainly created for debugging purpose but maybe somone writes code to create/update exif headers here).
+An internal version number is present.
+A testpage is supplied test.txt describes how the test works.
+The oldfunction read_exif_data has got an alias exif_read_data

As the old version of this module is very buggy i decided to implement the testpage (test.txt) and to create the alias. The test script only works with the alias as the old version does not pass tests. By the way it seems a good way to prepend 'exif_' to all functions in the module.

22 years agoFix compiler warnings
Yasuo Ohgaki [Fri, 1 Mar 2002 03:31:01 +0000 (03:31 +0000)]
Fix compiler warnings

22 years agoAdded ob_get_status() to get array of buffers and it's status.
Yasuo Ohgaki [Fri, 1 Mar 2002 03:05:50 +0000 (03:05 +0000)]
Added ob_get_status() to get array of buffers and it's status.
(DO NOT document this function yet)

Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that may not be deleted.

php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for
if the buffer created may be deleted or not.

Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
deleted until script finshes.

Changed ob_*() function that have void return type to bool. All ob_*()
functions return TRUE for success, FALSE for failure.

@ - Added ob_get_status() to get array of buffers and it's status. (Yasuo)
@ - Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
@   buffers that may not be deleted. (Yasuo)
@ - Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
@   deleted until script finshes. (Yasuo)
@ - Changed ob_*() function that have void return type to bool. All ob_*()
@   functions return TRUE for success, FALSE for failure. (Yasuo)

22 years agodocument force-redirect in php.ini
Shane Caraveo [Fri, 1 Mar 2002 02:09:59 +0000 (02:09 +0000)]
document force-redirect in php.ini

22 years agoThis is much better. With FORCE_CGI_REDIRECT turned on by default for compilation,
Shane Caraveo [Fri, 1 Mar 2002 01:58:20 +0000 (01:58 +0000)]
This is much better.  With FORCE_CGI_REDIRECT turned on by default for compilation,
we can now define this in the ini file.  So it can be turned on for apache, turned
off for IIS which does not have a redirect issue.  Alternately, a different 'REDIRECT_STATUS'
environment var can be defined in case some web server out there needs it.

new ini vars
cgi.force_redirect 0|1
cgi.redirect_status_env ENV_VAR_NAME

22 years agoChangeLog update
<changelog@php.net> [Fri, 1 Mar 2002 01:19:05 +0000 (01:19 +0000)]
ChangeLog update

22 years agofix force redirect crash under multithreaded compile
Shane Caraveo [Fri, 1 Mar 2002 00:19:01 +0000 (00:19 +0000)]
fix force redirect crash under multithreaded compile

should be discused: fix redirect detection to only work with apache or netscape,
where we know they set an environment variable regarding redirect.  IIS has
no security issue here.  Don't know about other windows web servers.

22 years agoturn on force redirect for windows
Shane Caraveo [Fri, 1 Mar 2002 00:16:58 +0000 (00:16 +0000)]
turn on force redirect for windows

22 years ago- Fixed a typo. (caught by jtate@php.net)
foobar [Thu, 28 Feb 2002 23:25:18 +0000 (23:25 +0000)]
- Fixed a typo. (caught by jtate@php.net)

22 years agoChange fatal errors to warnings - fix bug #15797
Rasmus Lerdorf [Thu, 28 Feb 2002 23:08:48 +0000 (23:08 +0000)]
Change fatal errors to warnings - fix bug #15797

22 years ago- Make it a boolean
Derick Rethans [Thu, 28 Feb 2002 16:00:26 +0000 (16:00 +0000)]
- Make it a boolean

22 years agoFix proto for mcve_initconn
Brad House [Thu, 28 Feb 2002 14:58:48 +0000 (14:58 +0000)]
Fix proto for mcve_initconn

22 years agoInserted a note about CGI binary name change.
Edin Kadribasic [Thu, 28 Feb 2002 14:47:31 +0000 (14:47 +0000)]
Inserted a note about CGI binary name change.

22 years agoUpdating docs (Mc)
Marc Boeren [Thu, 28 Feb 2002 14:44:27 +0000 (14:44 +0000)]
Updating docs (Mc)

22 years agoChanged file to match CODING_STANDARDS except function names that match jhead.c proje...
Marcus Boerger [Thu, 28 Feb 2002 12:20:17 +0000 (12:20 +0000)]
Changed file to match CODING_STANDARDS except function names that match jhead.c project. I think it is acceptable using naming conventions of other projects when borrowing code.

22 years agoRemoved CWD from php_ini_search_path when using CLI SAPI.
Edin Kadribasic [Thu, 28 Feb 2002 12:12:39 +0000 (12:12 +0000)]
Removed CWD from php_ini_search_path when using CLI SAPI.

22 years agoUse {NULL, NULL, NULL} to terminate function entry.
Yasuo Ohgaki [Thu, 28 Feb 2002 12:10:36 +0000 (12:10 +0000)]
Use {NULL, NULL, NULL} to terminate function entry.
# It does not fix any bugs, since {0} works also.

22 years agoDefault name of CGI binary changed to php-cgi.
Edin Kadribasic [Thu, 28 Feb 2002 11:48:39 +0000 (11:48 +0000)]
Default name of CGI binary changed to php-cgi.
# Please note that this only applies when installing php with
# make install. The binary is still built as "php" in top build dir.

22 years agoAdded entry that I forgot when comitting the code (Mc)
Marc Boeren [Thu, 28 Feb 2002 08:46:10 +0000 (08:46 +0000)]
Added entry that I forgot when comitting the code (Mc)

22 years agoMaintain headers.
Sebastian Bergmann [Thu, 28 Feb 2002 08:29:35 +0000 (08:29 +0000)]
Maintain headers.

22 years agoRecommend ZEND_* macro over PHP_* macro as discussed in php-dev.
Yasuo Ohgaki [Thu, 28 Feb 2002 06:31:09 +0000 (06:31 +0000)]
Recommend ZEND_* macro over PHP_* macro as discussed in php-dev.

22 years agoFix headers.
Sebastian Bergmann [Thu, 28 Feb 2002 06:26:50 +0000 (06:26 +0000)]
Fix headers.