summaryrefslogtreecommitdiff
path: root/ext/dba
Commit message (Collapse)AuthorAgeFilesLines
...
* Unify use of my email addressSascha Schumann2000-07-108-8/+8
|
* Rename macros which begin with underscore to appropiate macros. The generalSascha Schumann2000-07-031-2/+2
| | | | | | | rule is: macro_name=`echo $filename|tr a-z A-Z|sed 's/\./_/'`
* Change header protection macros to conform to standard.Sascha Schumann2000-07-026-12/+12
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* # Reverting as requested.Jouni Ahto2000-06-274-39/+0
|
* - dba_[p]open accepts now a new parameter, which kind of database to createJouni Ahto2000-06-274-0/+39
| | | | | | | | (DBA_BTREE or DBA_HASH), if the handler is either 'db2' or 'db3' and mode 'c' or 'n'. It is ignored if mode is 'c' and the db already exists. # Asked on the list 4 1/2 hours ago if anyone's got to say something to this, # no response, so I'm assuming it's ok. And yes, I did test this.
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-2/+2
|
* fix bug 4533Sterling Hughes2000-05-211-1/+1
|
* Use the new AC_ADD_LIBRARY_WITH_PATH option shared-libaddSascha Schumann2000-05-021-9/+1
|
* Make dba compilable as shared moduleSascha Schumann2000-05-023-3/+19
|
* 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.
* - Change some open's to V_OPEN()'sAndi Gutmans2000-04-302-2/+2
|
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+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)
* - Fix virtual cwd bugZeev Suraski2000-04-202-2/+2
| | | | | - Add more V_STAT() V_LSTAT() changes
* Corrected compilation error with wrong number of arguments toJakub Skopal2000-04-061-1/+1
| | | | | php_info_print_box_start()
* phpinfo() prettyingColin Viebrock2000-04-051-0/+4
| | | | | | I will get to the rest of the functions later tonight or tomorrow (i.e. from hyperwave to snmp)
* * Check the default location of Berkeley DB 3.0Sascha Schumann2000-03-271-3/+3
| | | | | * Check additionally for libdb-3
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-6/+6
| | | | | directory name.
* More protos.Egon Schmid2000-02-241-14/+14
|
* Ease include file selection. Let's see which cpps support this construct.Sascha Schumann1999-12-304-32/+17
|
* Whoops, defining them to empty values generates many parse errors.Sascha Schumann1999-12-301-3/+3
| | | | | Defaulting to 1.
* Get rid of config.h.stub. Note that you should embed a comment aboutSascha Schumann1999-12-302-30/+11
| | | | | | | 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-6/+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-4/+4
|
* More php3 cleanupZeev Suraski1999-12-171-15/+6
|
* - 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)
* More php3_ annihilationZeev Suraski1999-12-171-4/+4
|
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-0420-86/+86
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* add Berkeley DB3 supportSascha Schumann1999-11-206-2/+260
| | | | | @- Added Berkeley DB3 support in DBA (Sascha)
* Remove the extra INCLUDES line from most automake Mafiles. This is notSascha Schumann1999-11-131-1/+0
| | | | | | | | | necessary, because we can change the value of INCLUDES globally in one place (configure.in). Also add two defines in thread-safe mode (_REENTRANT and POSIX_PTHREAD_SEMANTICS)
* Try to avoid IBM/Berkeley DB2 confusionRasmus Lerdorf1999-11-041-2/+2
|
* * archive-based convenience libraries completely replacedSascha Schumann1999-10-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | with libtool components * SAPI targets can enable thread-safe mode and define shared/static/program build target * all configure scripts use the same config.cache * phplibdir is $(top_builddir)/modules to avoid permission problems * sapi/*/Makefile.inc are gone * runpath handling cleaned up * top-level Makefile.in obsoleted through Makefile.am * --enable-versioning uses libtool's cleaner and more portable -export-symbols feature
* Convert to Ex API. Does anyone have a better name for it?Sascha Schumann1999-09-176-44/+47
|
* fix flushing cached information to diskSascha Schumann1999-08-171-1/+1
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-9/+9
| | | | | php3_compat.h)
* More symbol work.Andrey Hristov1999-07-271-9/+9
|
* merge in change from php3Sascha Schumann1999-07-211-0/+1
|
* initial import of DBASascha Schumann1999-07-2116-0/+1865