summaryrefslogtreecommitdiff
path: root/ext/gd/php3_gd.h
Commit message (Collapse)AuthorAgeFilesLines
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-041-114/+0
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* @Fix some warnings when compiling in maintainer-mode (Stig)Stig Bakken1999-12-011-0/+3
| | | | | | | | | | @Made mysql and gd work as shared extensions again (Stig) - Fixed some warnings in maintainer-mode. - Made mysql and gd work as shared extensions again by defining COMPILE_DL if PIC is defined. # We need a better solution for building .so extensions than this # PIC/COMPILE_DL hack!
* Add PNG support. Tested with gd 1.7.3.Sascha Schumann1999-10-171-0/+3
|
* This should fix TTF support - untestedRasmus Lerdorf1999-08-191-1/+1
|
* HAVE_FREETYPE_H isn't defined anywhere. HAVE_LIBTTF should be sufficientSascha Schumann1999-08-171-1/+1
|
* Symbol work.Andrey Hristov1999-07-271-5/+6
|
* Added check for freetype.hZeev Suraski1999-07-231-1/+6
|
* - run ext sources through conv_protoSascha Schumann1999-05-211-41/+41
| | | | | - add necessary phpext_*_ptr
* A few other minor fixesZeev Suraski1999-05-091-1/+1
|
* * added --enable-thread-safety switchStig Bakken1999-05-031-2/+2
| | | | | * now generating internal_functions.c
* * Get the Apache module to compile againZeev Suraski1999-04-261-1/+1
| | | | | | * Get rid of php3_rqst, use SG(server_context) instead (there's still Apache-specific code, but it nuked a global)
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+102
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.