summaryrefslogtreecommitdiff
path: root/acinclude.m4
Commit message (Collapse)AuthorAgeFilesLines
* MFH: fix typofoobar2006-04-101-2/+2
|
* MFH: - Determine the shared/link lib suffixes in one macro.foobar2006-04-101-22/+9
|
* MFHAndrei Zmievski2006-04-081-10/+33
|
* On Mac OSX, our extensions are actually "bundles" and should not haveAndrei Zmievski2006-03-271-3/+0
| | | | | | | .dylib extension. Read this: http://www.sm.luth.se/~alapaa/file_fetch/unixcdbookshelf/mac/ch05_03.htm
* - MFH Fix dependency checksMarcus Boerger2006-02-281-3/+3
|
* - MFH Require re2c 0.9.11 and use correct version notationMarcus Boerger2005-12-241-2/+2
|
* Fix bugs #35379 and #35432 by erroring out when the user configures PHPWez Furlong2005-11-301-2/+24
| | | | | | | | | | | | | | | extensions with conflicting options. Jani, feel free to refine the way that extensions are detected as shared :) For this to be foolproof, we either need to guarantee that the extensions have their PHP_NEW_EXTENSION invoked in the right sequence. Eg: PDO should be handled in the configure script before any of the extensions that depend on it are handled... tricky. By happy coincidence, the alphabet ensures that pdo is configured before all the pdo_ extensions, and also before sqlite, so this works for now.
* MFH: - Fixed header installing under phpize buildsfoobar2005-11-211-2/+9
|
* MFH: bump libxml min version to 2.6.11Rob Richards2005-10-131-2/+2
|
* ws fixfoobar2005-09-231-78/+80
|
* In NetWare two binaries with the same name can not be loaded in kernel ↵Anantha Kesari H Y2005-09-231-3/+5
| | | | | | | | | address space(This is the default behaviour for NetWare apache webserver and hence PHP extensions also get loaded in kernel address space) simultaneoulsy. As the current autoconf built mysql extension is built as mysql.nlm this forbids the loading of mysql client binary. To work around this NetWare idiosyncrasy prefixing all the extensions with "php" except php5lib(phpts.dll eqivalent of Windows). I could have named this extensions prefixed with "php_" but "_" is eaten from the exported symbol prefix by the GCC cross compiler for NetWare so sticking to "php". This fixes the issue of not needing "PHP_SUBST(EXTENSIONNAME_SHARED_LIBADD)" in all the extensions especially when they need to be built shared. --Kamesh
* MFHfoobar2005-09-011-2/+2
|
* - Fixed bug #33326 (Cannot build extensions with phpize on Macosx).foobar2005-08-121-4/+0
|
* - Fixed bug #34097 (configure failed to initize RE2C="exit 0;" when re2c is ↵foobar2005-08-121-2/+0
| | | | not found)
* fix macrofoobar2005-07-181-1/+1
|
* - Fixed cacheing bug in PHP_SOCKADDR_SA_LEN macrofoobar2005-07-141-6/+18
| | | | | | - Removed duplicate sa_len check from configure.in - Unified the sockaddr tests into PHP_SOCKADDR_CHECKS macro
* Fix the re_magic test by adding missing #include <sys/types.h>foobar2005-07-141-1/+2
|
* typofixfoobar2005-07-131-2/+2
|
* - Added check whether re_magic exists in struct regex_tfoobar2005-07-131-1/+9
| | | | | # per Andrei's request
* - Fixed stupid bug in PHP_INSTALL_HEADERS() macro: "foo bar" != foo barfoobar2005-07-071-6/+6
| | | | | - ext/date/lib/timelib_config.h is also installed now
* Fixed support for shared extensions on AIXDmitry Stogov2005-07-071-0/+4
|
* re2c 0.98 is the current working versionfoobar2005-06-281-2/+2
|
* - Cache the xml2-config pathfoobar2005-06-271-3/+6
|
* - Never ever add /usr/lib as libpath, even if --with-libdir is usedfoobar2005-06-221-1/+1
|
* Fix configure problem in braindead systems like Solaris.foobar2005-06-211-2/+2
|
* Some netware related build issues fixed (patch by: Kamesh Jayachandran ↵foobar2005-06-201-0/+5
| | | | <kameshj at fastmail dot fm>
* fix PHP_INSTALL_HEADERS() macro when 2 params are usedfoobar2005-06-201-2/+2
|
* Make this usable for header files toofoobar2005-06-141-1/+1
|
* Allow different things to be done when found / not-foundfoobar2005-06-141-3/+6
|
* - Added PHP_CHECK_PDO_INCLUDES macro (caches the result)foobar2005-06-141-0/+18
|
* - Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle -pthread)foobar2005-06-131-0/+7
|
* - Show "none" when nothing is foundfoobar2005-06-071-1/+6
|
* - Revert previous change in build/libtool.m4 and make surefoobar2005-06-021-1/+0
| | | | | | the PATH_SEPARATOR check is only done under autoconf 2.13. # fixes also the php-gtk buildconf probs
* - Use libtool also for completely static buildsfoobar2005-05-301-5/+5
|
* - Changed the PATH_SEPARATOR check to a macrofoobar2005-05-301-0/+1
| | | | | | | - Made sure we're generating aclocal.m4 in same way with both buildconf and phpize. # Bug #33177
* simplify flex version testHartmut Holzgraefe2005-05-291-10/+12
|
* avoid code duplication in bison version testHartmut Holzgraefe2005-05-291-16/+1
|
* added .cxx extension for C++ for completeness reasonsHartmut Holzgraefe2005-05-291-1/+1
|
* - Use $SED and $EGREP where possiblefoobar2005-05-271-10/+14
|
* Avoid syntax errors on some operating systemsRasmus Lerdorf2005-05-211-1/+1
|
* - Added PHP_INSTALL_HEADERS() macrofoobar2005-05-071-5/+32
| | | | | | | - Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir"
* - Fix problems with phpized ext/imapfoobar2005-04-301-0/+4
|
* - No need to iterate through the options twicefoobar2005-04-301-0/+2
|
* re2c 0.96 is the one that works (tm)foobar2005-04-301-2/+2
|
* We do allow 2.0 now too.foobar2005-04-301-1/+1
|
* Netware stufffoobar2005-04-261-0/+4
|
* - Change bison check to positive logic and allow bison 2.0Marcus Boerger2005-04-231-3/+3
|
* Added support for .cc files in extensions.Brian France2005-04-201-1/+1
|
* - Cleanup a bit. And make use of shtool mkdirfoobar2005-04-071-5/+5
|
* require libxml 2.6.0 or higherRob Richards2005-03-101-2/+2
|