summaryrefslogtreecommitdiff
path: root/ext/standard/exec.c
Commit message (Collapse)AuthorAgeFilesLines
* Kill a warningRasmus Lerdorf1999-09-041-1/+1
|
* *** empty log message ***Zeev Suraski1999-09-041-1/+1
|
* Fixed bug #2105Andrey Hristov1999-08-181-5/+8
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-12/+12
| | | | | php3_compat.h)
* exec() can now properly handle lines longer than (EXEC_INPUT_BUF-2) bytes.Mike Gerdts1999-07-201-3/+41
| | | | | | | Lines being returned via the array that that contain only "\n" now are trimmed down to "" to be consistent with exec's whitespace trimming behavior for all other lines.
* License updateZeev Suraski1999-07-161-20/+9
|
* - Fix for exec to use APIAndi Gutmans1999-06-011-7/+4
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-4/+4
|
* * Get the Apache module to compile againZeev Suraski1999-04-261-2/+5
| | | | | | * Get rid of php3_rqst, use SG(server_context) instead (there's still Apache-specific code, but it nuked a global)
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-5/+4
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+0
|
* moved fdf, hyperwave, informix and some smaller filesStig Bakken1999-04-221-1/+1
|
* More thread safety workZeev Suraski1999-04-211-0/+1
|
* Make Win32 happy with the recent changes.Zeev Suraski1999-04-181-1/+1
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+388
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.