summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* MFHfoobar2003-12-011-4/+4
|
* MFHfoobar2003-11-141-1/+1
|
* Fixed bug #26168 (shtool availability check in phpize).Ilia Alshanetsky2003-11-101-0/+7
|
* Fix shared/pecl build for extensions that rely on mbstring...Wez Furlong2003-11-081-0/+2
|
* Make sure phpize/php-config are buildfoobar2003-09-191-1/+1
|
* centralize cflagsSascha Schumann2003-09-031-1/+1
|
* enable re2c check for self-contained extensionsSascha Schumann2003-09-021-0/+1
|
* provide RE2C to external extensionsSascha Schumann2003-09-021-0/+1
|
* - Backported several improvements/cleanups for the build/configure stuff.foobar2003-08-273-16/+4
| | | | | | | | . 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
* Use INSTALL to install build filesSascha Schumann2003-08-271-1/+1
|
* Use $(INSTALL_DATA) instead of cpSascha Schumann2003-08-261-4/+4
|
* MFH: - Fixed bug #25163 (OSX: phpize has to use glibtoolize instead)foobar2003-08-201-1/+2
|
* MFHfoobar2003-08-051-0/+2
|
* grep -E -> egrepSascha Schumann2003-07-081-3/+3
|
* MFHfoobar2003-07-011-15/+23
|
* MFH: Added --help to phpizefoobar2003-07-011-9/+17
|
* MFH: Fixed bug #24207: phpize wrong exit codefoobar2003-06-161-4/+4
|
* Move awk detection before config.m4 inclusionSascha Schumann2003-05-191-1/+2
|
* - MFH: Fixed bug #13561 (--without-pear prevents install of php-config, phpize)foobar2003-01-285-126/+1
| | | | | | - MFH: Added --ldflags option to php-config - MFH: Added --clean option to phpize
* This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.SVN Migration2003-01-288-0/+420
|
* - Add one 'level' more (0 first, 9 last)foobar2002-10-211-1/+1
| | | | | # Sascha, maybe we should use that apache2 config-stubs instead?
* Ignore extensions/sapis named skeletonJason Greene2002-03-131-1/+3
|
* Maintain headers.Sebastian Bergmann2002-02-281-2/+2
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* TypoJeroen van Wolffelaar2001-09-261-1/+1
|
* 4rd run... now also var.Z_*Jeroen van Wolffelaar2001-09-261-0/+3
|
* Now fixes virtually everything.Jeroen van Wolffelaar2001-09-261-3/+3
| | | | | | Sorry, but I assumed that the original script was correct. Unfortunately, that wasn't the case.
* And now correctly... and up until 3 levelsJeroen van Wolffelaar2001-09-261-1/+3
|
* This fixes most var->Z_* problemsJeroen van Wolffelaar2001-09-261-0/+1
|
* Should've used my own script... 3rd try.Jeroen van Wolffelaar2001-09-251-27/+27
|
* Just in case...Jeroen van Wolffelaar2001-09-251-6/+6
|
* Enhance to also process objects, and be more verboseJeroen van Wolffelaar2001-09-251-0/+11
|
* WhitespaceZeev Suraski2001-08-111-1/+1
|
* Fix special treatment of zlib by introducing the Apache conceptSascha Schumann2001-05-111-1/+1
| | | | | of config.m4 hierarchies.
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* filename wildcards in a c comment were a bad ideaHartmut Holzgraefe2000-11-231-5/+5
|
* added a "DO NOT EDIT!" header and regenerated the credits_*h filesHartmut Holzgraefe2000-11-221-1/+16
|
* this little scripts will collect the CREDITS files fromHartmut Holzgraefe2000-11-221-0/+9
| | | | | | all the ext/ and sapi/ subdirectories and put them all together into ext/standard/credit_[ext|sapi].h
* A little script for converting source files to the Z_* macrosSascha Schumann2000-09-061-0/+44
|
* These scripts are not in use anymore. RIP.Sascha Schumann2000-08-243-132/+0
|
* Decent configure speedup. Makefiles are now generated only for theStig Bakken1999-09-291-13/+2
| | | | | | | extensions you are including. Got rid of configure.in.in. Moved the last Apache-specific files into sapi/apache and made both static and DSO build work again (it still doesn't run properly).
* Generalized server-API build process on UNIX. Each SAPIStig Bakken1999-09-272-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implementation now has its own directory under sapi/, just like extensions have theirs under ext/. To make the final targets appear in the main dir, the top-level Makefile includes sapi/NN/Makefile.inc from the selected sapi backend. This is a plan Makefile stub without any autoconf substitutions. Each SAPI backend also has its own config.m4 like extensions (read at the end of diversion 2) and config.h.stub files. Each SAPI backend has to contain: config.m4: just like for extensions, this file contains autoconf/automake directives that end up in the configure script. The only difference is that the sapi config.m4 files are read in diversion (output block) 2 instead of 3. The sapi config.m4 files should set two variables: PHP_SAPI (which sapi backend to choose) and SAPI_TARGET (the name of the resulting library or program, previously BINNAME). If they are not specified, they will default to "cgi" and "php", respectively. Makefile.inc: has to exist, has to define "INSTALL_IT" to the command used to install the final target (or ":" for no operation). It also has to define a plain Makefile rule (without autoconf substitutions) to build $(SAPI_TARGET) Makefile.am: just what you think. Make sure your target is called "libphpsapi_NNN.a", where NNN is the value of PHP_SAPI. Some testing and fixing probably remains. To make everything hang together, I've done some ugly tricks that I can imagine causing some problems. I've built and run the CGI version and built the Apache DSO.
* Fix&improve conversion scriptsZeev Suraski1999-08-072-6/+6
|
* added workaround for Solaris PIC weirdness.Stig Bakken1999-07-241-0/+1
| | | | | added RPM spec file for a future "official" RPM, work-in-progress
* Sooner than you think, Sascha :)Andi Gutmans1999-07-154-0/+94
|
* ar t is a little bit noisy on RhapsodySascha Schumann1999-07-031-1/+1
|
* avoid touching libraries which have not changedSascha Schumann1999-06-011-1/+1
|
* fixesZeev Suraski1999-05-291-1/+1
|
* self-contained extensions please :-)Stig Bakken1999-05-271-1/+2
|
* this script automatically converts the ugly void php3_... prototypesSascha Schumann1999-05-161-0/+30
| | | | | | to PHP_FUNCTION(...) prototypes. Also kills some unnecessary extern declarations in front of function prototypes.