summaryrefslogtreecommitdiff
path: root/ext/gettext
Commit message (Collapse)AuthorAgeFilesLines
* the 'setup' script was removed more than two years ago.jim winstead2002-03-161-6/+0
| | | | | these can be safely removed from the 4.2 branch, too.
* extension converted automatically to PHP_NEW_EXTENSION. Manually confirmedSascha Schumann2002-03-122-8/+1
|
* proto fixesHartmut Holzgraefe2001-12-151-2/+2
|
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* Unified the configure messages.foobar2001-11-301-5/+4
|
* @ Added support for bind_textdomain_codeset(). (rudib@email.si)Jon Parise2001-11-093-0/+33
|
* * 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)
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* fix buildWez Furlong2001-08-293-5/+36
|
* Coding style.foobar2001-08-271-29/+22
|
* shorter protosChuck Hagenbuch2001-08-271-3/+3
|
* add ngettext() support from Walter Franzini <walter@sys-net.it>, and use Z_*Chuck Hagenbuch2001-08-272-14/+109
| | | | | macros.
* The Gettext module is not limited to the GNU implementation.Sascha Schumann2001-06-091-1/+1
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-0/+5
|
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* Nuke more quotesSascha Schumann2001-05-121-3/+3
|
* - Change macros from V_ to VCWD_ because of AIX name clashAndi Gutmans2001-04-301-2/+2
|
* Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.foobar2001-03-271-2/+2
| | | | | # Heads up people! I tested this before committing but you never know..
* - Finally rename modules.h to zend_modules.h for consistency (first tryAndi Gutmans2001-02-261-1/+1
| | | | | | | was 2000-03-11). - Remove the first_arg_force_ref[]; and friends extern from php.h as they are included via zend_API.h
* - Fix copyright notices with 2001Andi Gutmans2001-02-262-2/+2
|
* Moved the constants into ext/standardfoobar2000-12-102-15/+1
|
* wb clean.foobar2000-12-081-37/+31
|
* Added constants to represent the various categories ofZak Greant2000-12-082-1/+15
| | | | | locale (LC_ALL, LC_MESSAGES, etc...)
* fix path operations, under win32Daniel Beulshausen2000-11-271-6/+4
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* win32 projectfile fot the gettext extensionDaniel Beulshausen2000-08-231-0/+113
|
* Beautified some protos.Egon Schmid2000-08-081-5/+5
|
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-21/+10
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* Rename macros which begin with underscore to appropiate macros. The generalSascha Schumann2000-07-031-3/+3
| | | | | | | rule is: macro_name=`echo $filename|tr a-z A-Z|sed 's/\./_/'`
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-5/+5
|
* Make gettext extension compilable as shared module.Sascha Schumann2000-05-233-35/+37
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+1
|
* Large test commit IISascha Schumann2000-05-011-0/+2
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-7/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* phpinfo() prettyingColin Viebrock2000-04-051-1/+4
| | | | | | I will get to the rest of the functions later tonight or tomorrow (i.e. from hyperwave to snmp)
* initial function prototypesChuck Hagenbuch2000-03-191-0/+15
|
* - Oops I commited a name change for consistency of Zend/modules.h toAndi Gutmans2000-03-111-1/+1
| | | | | Zend/zend_modules.h before it being finished. Revert it
* - Don't define DEBUG anymore. Everyone should use PHP_DEBUG.Andi Gutmans2000-03-111-1/+1
| | | | | | | | There are 2-3 third-party libs in PHP which use DEBUG and I left them this way (primary example is pcrelib). - Please test things and Andrei, can you check that pcrelib stopped printing the warning messages?
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* Whoops, defining them to empty values generates many parse errors.Sascha Schumann1999-12-301-1/+1
| | | | | Defaulting to 1.
* Get rid of config.h.stub. Note that you should embed a comment aboutSascha Schumann1999-12-302-4/+1
| | | | | | | what the respective define does into the AC_DEFINE macro. I.e. AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
* Integration of -ng changes. Changes:Sascha Schumann1999-12-302-5/+11
| | | | | | | | | | | | - added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
* - The tree compiles againZeev Suraski1999-12-181-5/+5
|
* More cleanup...Zeev Suraski1999-12-172-5/+5
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-172-2/+2
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)