summaryrefslogtreecommitdiff
path: root/acinclude.m4
Commit message (Collapse)AuthorAgeFilesLines
* MFB52:- Check if Makefile.frag actually exists before running sed on it.foobar2007-03-251-1/+1
|
* MFBNuno Lopes2007-01-011-1/+1
|
* MFH missing fixes required by autoconf 2.6xAntony Dovgal2006-11-301-0/+1
| | | | | fixes bug #39696
* MFH: the last part of the fix for #39004Antony Dovgal2006-10-021-0/+5
|
* MFH: fix bug #39004Antony Dovgal2006-10-021-2/+15
|
* - Fixed bug #35735 ($EGREP and $SED are not defined in configure)foobar2005-12-191-0/+4
|
* 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
* NetWare cross compile patches from 5.0Anantha Kesari H Y2005-07-271-0/+9
| | | | | --Kamesh
* MFHfoobar2005-07-181-1/+1
|
* MFHfoobar2005-07-141-1/+2
|
* MFHfoobar2005-07-131-11/+19
|
* MFH: - Fix problems with phpized ext/imapfoobar2005-04-301-0/+4
|
* MFH: Added support for .cc files in extensions.Brian France2005-04-201-1/+1
|
* MFH: - Fix macosx shared extension buildfoobar2005-01-251-5/+17
|
* MFH: - Typofix + removed unnecessary unsets caused by itfoobar2005-01-221-1/+1
|
* MFH: - Fix the pic patchfoobar2005-01-191-3/+8
|
* MFH: - Make sure $host_alias is never emptyfoobar2005-01-071-0/+15
|
* MFH: Fix buildconf failure with autoconf > 2.13foobar2004-12-301-4/+4
|
* MFH: - Fixed bug #31101 (missing kerberos header file path with --with-openssl)foobar2004-12-301-8/+74
|
* - Quote macro names in AC_DEFUN()foobar2004-12-301-1/+1
| | | | | | # Fixes also bug #29160 # for i in `grep -r -l AC_DEFUN *`; do perl -i -pe "s#AC_DEFUN\(([^\[])(.*)\,#AC_DEFUN([\1\2],#g" $i; done;
* Avoid autoheader warningEdin Kadribasic2004-12-211-1/+1
|
* MFH: endian compile problem fixfoobar2004-12-201-0/+27
|
* - MFH: Generate all iconv headers by defaultDerick Rethans2004-12-111-0/+4
|
* - Fixed bug #31034 (Problem with non-existing iconv header file). (Derick)Derick Rethans2004-12-091-0/+1
|
* MFH: Fix VPATH build again.Joe Orton2004-12-081-1/+5
|
* - Install the iconv extension headers to <installpath>/ext/iconv so thatDerick Rethans2004-12-061-6/+9
| | | | | external extensions can use them.
* MFH: Fixed bug #26969 (shared openssl build fails)foobar2004-01-201-1/+2
|
* MFH: Fixed bug #26461 (-lssl missing from LIBS)foobar2003-12-121-1/+1
|
* MFH: Only add 'install-modules' into install targets when there are suchfoobar2003-12-041-0/+1
| | | | | modules to install
* MFHfoobar2003-11-131-1/+4
|
* MFHfoobar2003-10-031-15/+20
|
* MFH: fix for bug #25719foobar2003-10-021-2/+3
|
* MFH: Fixed bug #25703 (openssl checks failed)foobar2003-09-301-1/+1
|
* MFH: use pkg-config if available for openssl setupfoobar2003-09-241-39/+60
|
* MFHfoobar2003-09-031-0/+1
|
* enable re2c check for self-contained extensionsSascha Schumann2003-09-021-0/+3
|
* - Backported several improvements/cleanups for the build/configure stuff.foobar2003-08-271-66/+81
| | | | | | | | . PEAR dependancies checked during configure . OpenSSL config moved from configure.in to ext/openssl/config0.m4 (and also improved the PHP_OPENSSL_SETUP macro a bit) + Some other minor issues
* Reverted part of the last patch. It changed -prefer-pic to -prefer-non-pic.Brian France2003-08-141-1/+1
| | | | | Now back to -prefer-pic
* Fixed two translit so they don't remove underscoresBrian France2003-08-131-2/+2
|
* Quote all instances of ) when used in case..esac constructsSascha Schumann2003-07-031-29/+29
| | | | | | Some m4 versions appear to drop these when certain macros are used recursively.
* Always store temporary information in LDFLAGSSascha Schumann2003-07-021-0/+5
| | | | | This also avoids use of PHP_RUN_ONCE which caused some config.m4s to fail.
* Make PHP_CHECK_LIBRARY use PHP_EVAL_LIBLINE which automaticallySascha Schumann2003-07-011-2/+3
| | | | | eliminates /usr/lib references
* Fix snprintf test.Sascha Schumann2003-06-281-1/+3
| | | | | | | | | | | | | | | | | | | | | | | C99 allows for the Single Unix Spec semantics which prescribe a return value of -1 for n == 0 which is treated as an encoding error. This reenables use of snprintf on Solaris at least. Relevant excerpts from ection 7.19.6.5: Description [..] If n is zero, nothing is written, and s may be a null pointer. [..] Returns The snprintf function returns the number of characters that would have been written had n been sufficiently large, not counting the terminating null character, or a negative value if an encoding error occurred. Single Unix Spec: http://www.opengroup.org/onlinepubs/007908799/xsh/fprintf.html
* Use $AWK instead of awk, fixes build issue on Solaris with old-style extSascha Schumann2003-05-191-1/+1
|
* MFHfoobar2003-04-251-0/+1
|
* add missing checkSascha Schumann2003-04-161-1/+1
|
* MFHSascha Schumann2003-04-131-1/+2
|
* No need for shtoolSascha Schumann2003-04-011-1/+1
|
* MFH: Fixed bug #22989 (sendmail not found by configure)foobar2003-03-311-1/+2
|
* MFH: Made "--with-pear" "--disable-all"-aware. Plus some cosmetics fixes.foobar2003-03-251-1/+1
|