summaryrefslogtreecommitdiff
path: root/win32
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed bug #27368 (php.ini-* has lone CR in the end)foobar2004-02-251-2/+2
| | | | | | # regex taken from win32/sendmail.c (suggested by Sara) # And Andrei invited Wez to his speech on the cruise.. :)
* name the pecl bundle pecl-foo instead of php-foo-pecl.Wez Furlong2004-02-122-4/+4
|
* ensure that install exists before copying files.Wez Furlong2004-02-121-0/+1
|
* Tidy up "nmake clean" for people that don't have a PECL checkout.Wez Furlong2004-02-123-14/+75
| | | | | | | | | | | Be paranoid when building a snapshot: if the module is not a core module (eg: it comes from outside of ext or sapi) and it defaults to "yes", then force it to become shared. This will prevent a pecl ext from accidentally being compiled statically into the core, and prevent that ext from breaking the core build. You can still manually force a static build by explicitly specifying the args for that extension on your configure line.
* Fix build; line continuation character should be the very last characterWez Furlong2004-02-121-1/+1
| | | | | on a line, otherwise things b0rk.
* Added zend_exceptions.c to the buildEdin Kadribasic2004-02-121-1/+2
|
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-1721-536/+536
|
* make usleep actually work properlyWez Furlong2004-01-131-2/+2
|
* include PECL targets in snap build...Wez Furlong2004-01-101-0/+1
|
* let informix buildWez Furlong2004-01-091-1/+15
|
* add a rule to clean pecl things; split up the command line into 3 toWez Furlong2004-01-091-1/+3
| | | | | try to avoid possible problems with line-length under VC6
* Separate pecl extensions and sapi into their own target, and have mkdist.phpWez Furlong2004-01-093-11/+61
| | | | | create a separate pecl dir and zip when building a win32 snapshot.
* fix PHP_SPL problem when you don't have a pecl checkout.Wez Furlong2004-01-091-4/+11
|
* add optional dep on spl for simplexml.Wez Furlong2004-01-082-9/+21
| | | | | Fix dep handling in buildconf
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-0814-24/+24
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* update copyright year in win32 resource templateWez Furlong2004-01-081-1/+1
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-086-10/+10
|
* - remove non-existing projectfoobar2004-01-081-12/+0
|
* Change ordering of CFLAGS for built sources, so that extension specific ↵Wez Furlong2004-01-081-3/+3
| | | | | | | | | include dirs occur before more global include dirs. This avoids problems when building a bundled lib and you have headers from an external version of that lib in your global include dir.
* Adding new com_dotnet source files to projectFrank M. Kromann2004-01-081-0/+8
|
* win32 build:Wez Furlong2004-01-071-1/+1
| | | | | | gd should build shared by default don't use php.ini when running mkdist.php
* tweak snap buildWez Furlong2004-01-072-7/+5
|
* glob-ify lib checks; this simplifies writing of config.w32 files a little.Wez Furlong2004-01-071-10/+149
|
* A more general check for dirs under Release or Debug.Wez Furlong2003-12-232-8/+10
|
* Proper check for resolv.libWez Furlong2003-12-231-1/+8
|
* implement our own tiny little dependcy tracker and useWez Furlong2003-12-233-23/+85
| | | | | it to build distros.
* Attempt to work around apparent problems with WshShell.CurrentDirectory.Wez Furlong2003-12-231-12/+16
| | | | | # Andi, please try this now
* Better implementation of the prefix thingWez Furlong2003-12-231-4/+5
|
* Adding install target that follows the prefixFrank M. Kromann2003-12-232-1/+10
|
* Implement a glob() function for use by win32 configure.Wez Furlong2003-12-231-3/+95
|
* win32 buildconf now honours extension dependencies and willWez Furlong2003-12-231-13/+91
| | | | | | try its best to ensure that the config.w32 files are amalgamated in such a way that modules are processed before their dependents.
* Use a variable name so this actually works.Frank M. Kromann2003-12-231-5/+5
|
* Fix build when both a path and the keyword shared is givenFrank M. Kromann2003-12-231-3/+6
| | | | | Now works for both <path>,shared and shared,<path>
* Don't annoy people building snaps/dists using VC6Wez Furlong2003-12-221-0/+5
|
* For GD, build the extension as php_gd2.dll instead of php_gd.dll.Wez Furlong2003-12-221-5/+7
| | | | | Thanks again Frank :-)
* Fix bug #26692; Could not find GetLongPathNameA under NT4.Wez Furlong2003-12-222-2/+3
| | | | | | | | | This fix relies on you having the Platform SDK headers. Using the new build system, the NewAPIs.h header will be detected automatically, however, for people building using .dsp files, you will need to add /DHAVE_NEWAPIS_H=1 to the TSRM project if you have those newer headers.
* Add --enable-snapshot-build configure option for win32 build.Wez Furlong2003-12-223-12/+73
| | | | | | | | | | | | | | Using it will attempt to switch on any configure options that were left to their default value of "no". Add a "snap" target to the makefile which will run a sub-process to make each SAPI and EXT independently, so that the whole process does not bail out if a particular extension is broken. Add a way to specify dependencies between extensions in the config.w32 files so that the makefile will include appropriate rules and linkage.
* Forgot to add embed config.w32, and tweak version resource when CREDITS file ↵Wez Furlong2003-12-191-2/+2
| | | | is missing.
* Export flock for win32Wez Furlong2003-12-192-2/+3
|
* More things for the new build system.Wez Furlong2003-12-193-12/+44
| | | | | Pi3Web and aolserver build untested (no headers and libs for those here)
* don't overwrite internal_functions.c if the content did not change;Wez Furlong2003-12-191-3/+11
| | | | | | this saves re-linking php*.dll when you add shared extensions to your config.
* "Real" cvsclean, works as the unix version doesWez Furlong2003-12-191-0/+118
|
* Refinements for new build system:Wez Furlong2003-12-195-57/+196
| | | | | | | | | - Add major + minor version to .dll and .exe headers during linking - Handle pecl build dir correctly when pecl is a sibling of php-src - try and guess where your cygwin utils are installed (if you have them) so that we can detect bison, flex etc. - other little refinements
* this should be an intWez Furlong2003-12-191-1/+1
|
* make it totally safe againWez Furlong2003-12-181-11/+4
|
* make sure this is initialized to NULL as we don't check the returnWez Furlong2003-12-181-1/+3
| | | | | | value of the FormatMessage function; we could end up using a stale pointer.
* Leak for b3 and find a better solution until RC1Marcus Boerger2003-12-181-0/+3
|
* Fix a memleak: A second call to *nix version of dlerror() frees the errorMarcus Boerger2003-12-171-1/+5
| | | | | | string. This behavior is also adapted to the win build so that the buffer returned by FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER) can be freed too.
* Removed unused variable.Ilia Alshanetsky2003-12-151-1/+1
|
* Exporting symbols used in the imap extensionFrank M. Kromann2003-12-082-6/+6
|