summaryrefslogtreecommitdiff
path: root/ext/recode
Commit message (Collapse)AuthorAgeFilesLines
* Removed ext/recodeChristoph M. Becker2019-07-128-422/+0
| | | | Cf. <https://wiki.php.net/rfc/unbundle_recode>.
* Use *.data for tests data filesPeter Kokot2019-05-172-2/+2
|
* Normalize comments in *nix build system m4 filesPeter Kokot2019-05-122-4/+0
| | | | | | | | | Normalization include: - Use dnl for everything that can be ommitted when configure is built in favor of the shell comment character # which is visible in the output. - Line length normalized to 80 columns - Dots for most of the one line sentences - Macro definitions include similar pattern header comments now
* Replace dirname(__FILE__) by __DIR__ in testsFabien Villepinte2019-03-151-2/+2
|
* Switch to use ZTS cacheDmitry Stogov2019-03-122-6/+8
|
* Add AS_HELP_STRING to *nix build configure optionsPeter Kokot2019-03-071-2/+4
| | | | | | | | The Autoconf's default AS_HELP_STRING macro can properly format help strings [1] so watching out if columns are aligned manually is not anymore. [1] https://www.gnu.org/software/autoconf/manual/autoconf.html#Pretty-Help-Strings
* Remove local variablesPeter Kokot2019-02-031-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Remove yearly range from copyright noticeZeev Suraski2019-01-302-2/+2
|
* Sync leading and final newlines in *.phpt sectionsPeter Kokot2018-10-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines in all *.phpt sections. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
* Replace obsolete AC_TRY_FOO with AC_FOO_IFELSEPeter Kokot2018-07-301-4/+3
| | | | | | | | | | | | | | | | | | | | | | | Autoconf 2.50 released in 2001 made several macros obsolete including the AC_TRY_RUN, AC_TRY_COMPILE and AC_TRY_LINK: http://git.savannah.gnu.org/cgit/autoconf.git/tree/ChangeLog.2 These macros should be replaced with the current AC_FOO_IFELSE instead: - AC_TRY_RUN with AC_RUN_IFELSE and AC_LANG_SOURCE - AC_TRY_LINK with AC_LINK_IFELSE and AC_LANG_PROGRAM - AC_TRY_COMPILE with AC_COMPILE_IFELSE and AC_LANG_PROGRAM PHP 5.4 to 7.1 require Autoconf 2.59+ version, PHP 7.2 and above require 2.64+ version, and the PHP 7.2 phpize script requires 2.59+ version which are all greater than above mentioned 2.50 version therefore systems should be well supported by now. This patch was created with the help of autoupdate script: autoupdate <file> Reference docs: - https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Obsolete-Macros.html - https://www.gnu.org/software/autoconf/manual/autoconf-2.59/autoconf.pdf
* Remove unused Git attributes identPeter Kokot2018-07-253-8/+2
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* Remove revision for recode from phpinfoPeter Kokot2018-06-021-3/+0
|
* year++Xinchen Hui2018-01-022-2/+2
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-022-2/+2
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-012-2/+2
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-012-2/+2
| |
| * bump yearXinchen Hui2015-01-152-2/+2
| |
* | Added two tests to check the main functionallity of recode extensionDaniel Persson2015-09-023-0/+71
| |
* | cleanup mod version macros and mod defs, round xAnatol Belski2015-03-232-1/+4
| |
* | int -> size_tRasmus Lerdorf2015-01-201-1/+1
| |
* | bump yearXinchen Hui2015-01-152-2/+2
| |
* | trailing whitespace removalStanislav Malyshev2015-01-102-13/+13
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-8/+8
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-192-2/+2
| |
* | first show to make 's' work with size_tAnatol Belski2014-08-271-1/+1
| |
* | Refactor MySQLi (incompleted, only compilable now)Xinchen Hui2014-05-111-1/+1
| |
* | recode update for phpngkrakjoe2014-05-081-3/+3
|/
* Bump yearXinchen Hui2014-01-032-2/+2
|
* Fix long-standing visual pain point: the misalignment of './configure help' ↵Christopher Jones2013-08-061-1/+1
| | | | | | text. Whitespace changes and a couple of grammar fixes.
* Happy New YearXinchen Hui2013-01-012-2/+2
|
* Remove extra ;Johannes Schlüter2012-06-221-1/+1
|
* Replace $Revision$ with $Id$ in keyword expansion enable filesDavid Soria Parra2012-03-201-1/+1
|
* - Year++Felipe Pena2012-01-012-2/+2
|
* - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
|
* - Year++Felipe Pena2011-01-012-2/+2
|
* - fix IsotoppPierre Joye2010-10-241-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-032-2/+2
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-312-2/+2
|
* MFH: hash_insert was renamed in MySQL 5.0 so we can safely use recode and mysqlJohannes Schlüter2008-12-011-1/+6
| | | | | with recent libmysql versions [DOC]
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-2/+0
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-0/+2
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-2/+0
|
* - New parameter parsing APIFelipe Pena2008-07-031-10/+9
|
* - Added arginfo (functions)Felipe Pena2008-07-031-3/+18
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-312-2/+2
|
* - fix oumlaut :)Jani Taskinen2007-11-051-1/+1
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-1/+1
|
* fix #41765Stanislav Malyshev2007-06-221-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-012-2/+2
|
* Added automatic module globals managementDmitry Stogov2006-06-151-5/+8
|