summaryrefslogtreecommitdiff
path: root/ext/pdf
Commit message (Collapse)AuthorAgeFilesLines
* Added missing safe_mode checks and corrected a typo in stdout check.Ilia Alshanetsky2003-05-211-0/+5
|
* Added missing safe_mode & open_basedir checks.Ilia Alshanetsky2003-05-201-1/+25
|
* emalloc -> safe_emallocIlia Alshanetsky2003-04-301-1/+1
|
* - fixed some prototypes and foldingUwe Steinmann2003-02-041-7/+4
|
* - fixed prototype of pdf_get_buffer()Uwe Steinmann2003-02-041-1/+1
|
* Changed php_error to php_error_docref.Ilia Alshanetsky2003-01-191-13/+14
|
* Removed pointless memory allocation checks.Ilia Alshanetsky2003-01-181-3/+1
|
* Fixed bug #21651 (crash in pdf_open_memory_image() when inserting aIlia Alshanetsky2003-01-161-1/+1
| | | | | non truecolor image).
* Bump year.Sebastian Bergmann2002-12-312-2/+2
|
* Fixed a bug that caused a crash in pdf_open_memory_image(), when a truecolorIlia Alshanetsky2002-12-031-8/+21
| | | | | | | image was loaded, it now checks if the image is truecolor and performs the appropriate calculations (fixed bug #20785). Changed E_WARNING back to E_ERROR.
* Fixed a crash bug that can occur due to PDF_delete() being called more thenIlia Alshanetsky2002-12-021-2/+1
| | | | | once and E_ERROR occurring during the shutdown sequence.
* MFB: Fix for bug: #20412foobar2002-11-141-8/+8
|
* - Prevent resetting the PHP_*_DIR variables if already set.foobar2002-10-211-8/+13
|
* --with-zlib-dir was missing. Needed for phpize buildsfoobar2002-10-171-0/+4
|
* Make these all work with persistent streams too.Wez Furlong2002-09-251-9/+9
|
* @- Added --disable-all configure option. (Jani)foobar2002-09-041-6/+4
|
* Fix the build when bundled gd library is usedfoobar2002-08-301-0/+4
|
* include PDFLIB_SHARED_LIBADD in the pdflib test, or it fails withAnil Madhavapeddy2002-08-181-1/+1
| | | | | unresolved symbols on OpenBSD
* - Fix the shared problem. (the previous patch really didn't fix anything)foobar2002-06-291-20/+15
|
* remember the value of ext_shared passed into the --with-pdflib, since itAnil Madhavapeddy2002-06-281-0/+3
| | | | | | | gets overwritten by future PHP_ARG_WITH checks in the same m4 fragment from wilfried@openbsd.org
* getting rid of the warn_not_available aliasHartmut Holzgraefe2002-03-221-20/+0
|
* *** empty log message ***Markus Fischer2002-03-211-1/+1
|
* change * formattingWez Furlong2002-03-161-1/+1
|
* the 'setup' script was removed more than two years ago.jim winstead2002-03-161-7/+0
| | | | | these can be safely removed from the 4.2 branch, too.
* New PHP streams...Wez Furlong2002-03-151-2/+10
|
* extension converted automatically to PHP_NEW_EXTENSION. Manually confirmedSascha Schumann2002-03-122-8/+1
|
* Please welcome the new build system.Sascha Schumann2002-03-071-3/+6
| | | | | | | | | | If you encounter any problems, please make sure to email sas@php.net directly. An introduction can be found on http://schumann.cx/buildv5.txt
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* typo fixfoobar2001-12-041-1/+1
|
* - Let's not default to any set of extra libraries. This way any kind offoobar2001-12-031-3/+1
| | | | | builds of pdflib work. And this configure stays simple.
* This is better way to configure. PDFlib 3/4 can be compiled with external ↵foobar2001-11-305-143/+99
| | | | libs too..
* Fixed some problems in configuring e.g. shared module.foobar2001-11-132-18/+18
|
* - oops :)Derick Rethans2001-11-081-1/+1
|
* - Let it also work with pdflib 3 againDerick Rethans2001-11-082-3/+3
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* added new configure option --with-pdflib3Rainer Schaaf2001-10-091-29/+70
| | | | | | | | | | Therefore --with-pdflib will only work with PDFlib 4.x from now on, if one wants to build PHP with PDFlib V3.x he has to use the new option --with-pdflib3. This makes configuration of PDFlib much easier, as no additional libraries are needed anymore. This is possible, because PDFlib has built in libraries for tiff/jpg/zlib since V4.
* fixed PDF_get_value for parametersRainer Schaaf2001-10-081-0/+9
| | | | | | | | | - capheight - ascender - descender had to ajust modifier by PDFLIB_FONT_OFFSET
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-4/+4
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* proto fixes "double" -> "float"Hartmut Holzgraefe2001-09-211-55/+55
|
* fix resource destructionDaniel Beulshausen2001-09-101-4/+2
|
* - Fix for bug #13230Derick Rethans2001-09-101-5/+1
|
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* Fixes commit / link problems with certain compilers.foobar2001-09-051-4/+4
| | | | | | # Please use PHP_CHECK_LIBRARY() always instead of AC_CHECK_LIB # if you need to pass extra libs/libpaths to the test.
* Added two new functions:Ulf Wendel2001-08-212-0/+27
| | | | | | | | | | | | | int pdf_get_minorversion() int pdf_get_majorversion() Both functions are taken from the C-Library. You should be able to determine the API version of the extension/library using pdf_get_value() or pdf_get_parameter() but these functions need a pdf object to work on. This means that you have to create an pdf object before you can find out the API version. Using pdf_get_minorversion() and pdf_get_majorversion() there's no need for this.
* Further work on autoconf-2.5x supportSascha Schumann2001-08-211-6/+6
|
* TSRM fixHarald Radi2001-08-072-2/+1
|
* some more eliminate-fetches-or-escalate-them-at-leastSascha Schumann2001-08-051-2/+3
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-46/+78
| | | | | - whitespace fixes
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-1/+1
|