summaryrefslogtreecommitdiff
path: root/ext/gd
Commit message (Collapse)AuthorAgeFilesLines
* forgot to move imeageellipse out of #ifdef HAVE_LIBGD20Marcus Boerger2002-07-281-29/+29
|
* reapply patch for imageellipse beeing wrappet to imagearc if missingMarcus Boerger2002-07-261-1/+1
| | | | | # derick: the rest of the patch wasn't removed
* Fix bug: #18479. Better error message what was not found.foobar2002-07-231-8/+10
|
* Remove evil quotesfoobar2002-07-171-1/+1
|
* Really fix it this time..foobar2002-07-131-0/+4
|
* Fixed the undefined reference to 'gdttf' errors when using bundled GD lib.foobar2002-07-131-1/+1
| | | | | # I removed that in the first place..don't remember why. :(
* adding patch from http://www.coupin.net/gd-freetype/ which makes images anti ↵James Cox2002-07-111-4/+4
| | | | | | | aliased (and therefore more readable). #this does actually work.
* - Fix GD build with GD 1.8.3Derick Rethans2002-06-291-1/+1
|
* make this build too.James Cox2002-06-291-8/+0
|
* removed these files from build.James Cox2002-06-291-8/+0
|
* t1lib.h needs to be included here now.foobar2002-06-281-0/+1
|
* Moved all gd.h related stuff to gd.cfoobar2002-06-282-18/+12
|
* Remove unnecessary #include'sfoobar2002-06-281-6/+0
|
* Remove unused files.foobar2002-06-283-585/+2
|
* Fix bug: #14735foobar2002-06-281-0/+1
|
* Fix bug: #17528, do not crash with empty string.foobar2002-06-281-1/+1
|
* - Fix bug: #17671foobar2002-06-281-2/+2
|
* Unify error messagesDerick Rethans2002-06-283-63/+63
|
* Consistency fix.foobar2002-06-271-9/+3
|
* - Fix buildDerick Rethans2002-06-261-1/+1
| | | | | | #- Please test next time! This file is never installed with a default gd # install
* map imageellipse to imagearc if missingMarcus Boerger2002-06-251-7/+9
| | | | | fix warnings
* imageellipse is removed in 2.01Marcus Boerger2002-06-252-3/+7
| | | | | #maybe someone reintroduces this one in bundled lib?
* - Make functions not exist when they are not available. This means you canDerick Rethans2002-06-242-223/+70
| | | | | now safely do function_exists() on all gd functions.
* Fix bug: #17130foobar2002-06-191-0/+4
|
* - Be more verbose which index causes the warning.Markus Fischer2002-06-151-2/+4
|
* - Don't forget to close the stream.Markus Fischer2002-06-151-0/+1
|
* Add gd_bundled to php_modules.dsw.Sebastian Bergmann2002-06-141-60/+60
|
* Use some more sane paths for win32 version.Edin Kadribasic2002-06-141-0/+6
|
* - Remove freetype.lib and HAVE_LIBTTF; we're always linking against freetype2Markus Fischer2002-06-141-4/+4
| | | | | anyway.
* - Initial MSVC makefile to create a php_gd2.dll based on the bundled libgd,Markus Fischer2002-06-131-0/+583
| | | | | | | works out of the box here with the right image libs and headers. # Edin, I think it's your turn now. Feel free to tweak it for your needs. # Could only compile Release_TS so far (no debug .lib files)
* Made phpinfo() show if we're using the bundled version of GDSander Roobol2002-06-092-1/+5
|
* Fixed detection of JPEG support in bundled version of GD.Sander Roobol2002-06-091-1/+1
|
* - Revert Ws thingy.Markus Fischer2002-06-061-1791/+2226
| | | | | # Lazy bastard :-)
* ws and indent fixesfoobar2002-06-051-2226/+1791
|
* - Fixes a segfault reported in #17584foobar2002-06-051-0/+1
|
* - Fixed the include paths for the needed libraries for bundled libgd.foobar2002-06-041-3/+7
| | | | | - Removed files which are not needed with libgd2 from the PHP_NEW_EXTENSION.
* Fixed bug: #17535foobar2002-06-041-2/+3
|
* - Made the bundled libgd actually work. Fixed bug: #17244foobar2002-06-041-24/+78
|
* fix copyresampled bug in bundled gd libRasmus Lerdorf2002-05-131-2/+2
|
* Wrong variable used here..foobar2002-04-231-1/+1
|
* Apply that patch I wrote ages ago that fixes some problems with true-colorWez Furlong2002-04-215-53/+116
| | | | | | vs palette based handling. Also implements the gdImageStringFTEx function.
* include the checks for various support libraries to --with-gd=php section. thejim winstead2002-04-201-0/+10
| | | | | | libgd stuff needs some additional checks to handle the presence/absence of things like libpng, but this helps when most things are included.
* s/.o/.c/jim winstead2002-04-201-1/+1
|
* s/==/=/Sascha Schumann2002-04-131-1/+1
|
* oopsRasmus Lerdorf2002-04-131-1/+1
|
* Initial commit of the built-in libgd based on GD-2.0.1Rasmus Lerdorf2002-04-1351-1/+34940
| | | | | | | | | This initial checkin has no changes to any of the libgd code so it can be used as a basis for diffs. It also will not build currently because of this. The PHP gd checks need to be incorporated along with a bit of other config magic. It also shouldn't break the build and will only take effect if you use --with-gd=php right now.
* fixed typeHarald Radi2002-04-111-1/+1
|
* *** empty log message ***Markus Fischer2002-03-211-1/+3
|
* - This is not needed herefoobar2002-03-201-1/+0
|
* Streams now make more use of the memory manager, so tracking downWez Furlong2002-03-171-2/+2
| | | | | | leaking streams should be easier. # I hate these big commits