summaryrefslogtreecommitdiff
path: root/ext/iconv
Commit message (Collapse)AuthorAgeFilesLines
* - Plain path passed to PHP_INSTALL_HEADERS needs to have trailing /foobar2005-06-201-1/+1
|
* Fixed bug #33268 (iconv_strlen() works only with a parameter of < 3 in length)Ilia Alshanetsky2005-06-081-1/+2
|
* - Added PHP_INSTALL_HEADERS() macrofoobar2005-05-071-0/+1
| | | | | | | - Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir"
* - Add test case for iconv_mime_encode().Moriyoshi Koizumi2005-03-231-0/+10
|
* - Add sanity check in iconv_mime_encode(). Leaving the third parameterMoriyoshi Koizumi2005-03-231-55/+58
| | | | | unspecified would yield bus error.
* - Fixed all buildconf warnings + cross-compiling issuesfoobar2005-02-241-0/+4
|
* fix Konstantin's last name Chugeuv -> ChuguevAntony Dovgal2005-01-101-2/+2
|
* - MF43: Install the iconv extension headers to <installpath>/ext/iconv so thatDerick Rethans2004-12-062-15/+18
| | | | | external extensions can use them.
* Fixed compilation when PHP is built in separate directory.Ilia Alshanetsky2004-11-241-7/+7
|
* - We need to install the headers too.Derick Rethans2004-11-231-7/+7
|
* Only dllexport during the compilation of iconv.cEdin Kadribasic2004-11-232-0/+5
|
* - Export "php_iconv_string()".Derick Rethans2004-11-232-17/+17
|
* Test was fixed.Dmitry Stogov2004-11-221-1/+1
|
* Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/libJoe Orton2004-11-031-1/+1
| | | | | to support multi-ABI platforms.
* fix compile warningAntony Dovgal2004-08-131-1/+1
|
* Move iconv exports to the iconv extensionFrank M. Kromann2004-08-042-0/+9
|
* - Fix possible leaks / segfaults in persistent filterMoriyoshi Koizumi2004-07-201-13/+48
|
* - Fix a bug in iconv stream filter that prevents pending buckets from beingMoriyoshi Koizumi2004-07-191-13/+13
| | | | | processed on flush operation (same issue pollita fixed several days ago).
* - Fixed text.Derick Rethans2004-07-141-1/+1
|
* - Enable iconv by defaultDerick Rethans2004-04-141-1/+1
|
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-171-2/+2
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Prevent a character from being wrongly doubled in the buffer.Moriyoshi Koizumi2004-01-061-1/+1
|
* Just laugh at me :)Moriyoshi Koizumi2003-12-271-1/+1
|
* - Add missing sanity check.Moriyoshi Koizumi2003-12-271-0/+4
|
* - Supply some comments. Hope those help when you have to debug this dead beef.Moriyoshi Koizumi2003-12-241-35/+50
| | | | | | | | - Fix iconv_mime_decode() to correctly handle "malformed" headers :) - Fix iconv_mime_decode() bug, that the result is mangled when ICONV_MIME_CONTINUE_ON_ERROR is enabled and the function encounters an unconvertable encoded chunk.
* Those are not structures :-)Moriyoshi Koizumi2003-12-231-2/+2
|
* Fixed compiler warnings.Ilia Alshanetsky2003-12-231-6/+9
|
* - Fix multibyte handling errors in iconv_mime_encode() when quoted-printableMoriyoshi Koizumi2003-12-221-32/+75
| | | | | | | encoding scheme is used. - Fix segfault that occurs in iconv_mime_encode() when input_charset or output_charset parameter is not specified in the associative array.
* export libxml2 and iconv symbolsRob Richards2003-12-081-2/+2
| | | | | extensions no longer link against either of those
* Fix iconv stream filter to properly handle multibyte characters thatMoriyoshi Koizumi2003-12-081-118/+147
| | | | | span at the alignment of a hunk.
* Add missing iconv_close() callMoriyoshi Koizumi2003-12-061-0/+1
|
* Use Rob's static libxml+libiconv library; new build no longerWez Furlong2003-12-051-2/+3
| | | | | | | requires libxml2.dll or iconv.dll at runtime. Since we have iconv built in, enable iconv extension by default too.
* A trivial implement for dos-like platformsMoriyoshi Koizumi2003-12-051-3/+3
|
* Add regression test for iconv stream filtersMoriyoshi Koizumi2003-12-052-0/+42
|
* Add a missing markerMoriyoshi Koizumi2003-12-051-0/+1
|
* fix zts buildWez Furlong2003-12-052-14/+15
|
* Type-punning is evil.Moriyoshi Koizumi2003-12-041-2/+7
|
* Add iconv stream filter.Moriyoshi Koizumi2003-12-041-1/+332
| | | | | | | | | | | | # a quick synopsis: # # <?php # stream_filter_append(STDIN, 'convert.iconv.UTF-8/ISO-8859-15'); # # fpassthru(STDIN); # ?> #
* This should solve a few problems with static vs. shared builds for ↵Wez Furlong2003-12-031-1/+0
| | | | | | | extensions (such as mssql) that require certain CFLAGS to be defined, but not pull in other flags that would affect DLL linkage. Also fix the iconv file; MSVC doesn't seem to like the #include SYMBOL syntax.
* Add a win32 build script. Not tested, but should work :)Moriyoshi Koizumi2003-12-031-0/+16
|
* Fix test so it fits the expected behaviourMoriyoshi Koizumi2003-12-021-1/+1
|
* all '_' (underscores) should be replaced by '\x20' (whitespaces)Moriyoshi Koizumi2003-12-021-1/+1
| | | | | | in encoding. # should I bump API version?
* Add regression test for iconv_mime_decode_headers()Moriyoshi Koizumi2003-12-021-0/+89
|
* Loosen error check. There's no reason to forbid a single '=' occurrenceMoriyoshi Koizumi2003-12-011-14/+11
| | | | | | | in an unencoded string. Fix white space handing. Meaningful spaces have got stripped wrongly before this patch.
* Allow iconv_mime_decode_headers() to handle multiple occurence of a header.Moriyoshi Koizumi2003-12-011-1/+20
|
* Update test.Moriyoshi Koizumi2003-12-011-1/+20
|
* Forgot about this oneMoriyoshi Koizumi2003-12-011-0/+1
|
* Add iconv_mime_decode_headers() to parse multiple MIME headers.Moriyoshi Koizumi2003-12-011-21/+108
| | | | | A few trivial fixes.