summaryrefslogtreecommitdiff
path: root/win32
Commit message (Collapse)AuthorAgeFilesLines
* Buckle your seatbelt, Dorothy, 'cause Aggregation is going bye-bye.Sebastian Bergmann2003-06-282-16/+0
|
* fix the libxml linking warningsRob Richards2003-06-271-4/+4
|
* Missing part of SQLite enabling on windows.Edin Kadribasic2003-06-271-17/+29
|
* Enabled sqlite by default on Windows.Edin Kadribasic2003-06-271-8/+28
| | | | | | # Also added iconv.lib to the build since it is a dependency of # the precompiled libxml. This will be removed later.
* Committing engine select projectSascha Schumann2003-06-263-0/+117
| | | | | | | | This is a noop in an already setup tree. When necessary, it renames ZendEngine2 to Zend permanently. This occurs only after a fresh checkout (not after an update!).
* Leftovers.Sebastian Bergmann2003-06-261-9/+1
|
* libxml workZeev Suraski2003-06-261-4/+4
| | | | | use static libxml library
* Remove MySQL leftovers.Sebastian Bergmann2003-06-261-11/+3
|
* Sync.Sebastian Bergmann2003-06-261-48/+12
|
* - Add libxml directoryZeev Suraski2003-06-261-19/+17
| | | | | | - Add zlib to configurations where it was missing - Remove libmysql linkage
* Add ext/dom and ext/simplexml to the Win32 default build. #Apart from a ↵Sebastian Bergmann2003-06-251-0/+179
| | | | linker error when HAVE_SIMPLEXML=1 is set this already works. More research, after a good night's sleep, is required ;-)
* Remove ext/rpc references from Windows build.Sebastian Bergmann2003-06-251-88/+0
|
* Remove references to bundled libmysql.Sebastian Bergmann2003-06-234-62/+38
|
* updating license information in the headers.James Cox2003-06-1012-36/+36
|
* Leftover.Sebastian Bergmann2003-05-252-0/+10
|
* Get rid of references to expat in MSVC project files. For now this expects ↵Sebastian Bergmann2003-05-242-193/+12
| | | | libxml2 (library and includes) in one of the MSVC default include/library directories. Right now it doesn't link, dunno why -- working on it.
* Leftovers.Sebastian Bergmann2003-05-192-16/+16
|
* First try at getting the Windows build working again after libxml2 got ↵Sebastian Bergmann2003-05-192-42/+42
| | | | unbundled.
* Adjust path to bundled expat sources for Win32 build.Sebastian Bergmann2003-05-032-50/+50
|
* Leftover.Sebastian Bergmann2003-03-261-12/+0
|
* Leftover.Sebastian Bergmann2003-03-251-1/+1
|
* Tidy up stupid signed/unsigned issues with win32 by introducing a ↵Wez Furlong2003-02-281-2/+4
| | | | php_socket_t typedef.
* Update win32 build.Wez Furlong2003-02-272-0/+14
| | | | | Since msvc sucks, I had to rename ext/standard/streams.c to ext/standed/streamsfuncs.c
* Move streams specific stuff from ext/standard/file.c -> ext/standard/streams.cWez Furlong2003-02-273-4/+238
| | | | | | Move win32 select implementation into win32/. Will update win32 build in a moment.
* Fixup build for win32Wez Furlong2003-02-271-0/+44
|
* Add comment about thread-safety of gethostbyname on win32.Wez Furlong2003-02-211-5/+5
| | | | | Set the correct path to the win32 config.h file in the .dsp file.
* Commit missing stuffZeev Suraski2003-02-182-3/+0
|
* - Cleaned this mess a bit:foobar2003-02-171-1/+1
| | | | | | | | | | . Centralized the functions sunrise/sunset to php_sunrise_sunset to lessen duplicate code. . Made wrapper function php_do_date_sunrise_sunset() to lessen duplicate code. . Coding style fixes. . renamed sunfuncs.h -> php_sunfuncs.h
* - Let's be consistent with these..foobar2003-02-173-3/+3
|
* Some additional sanity.Wez Furlong2003-02-161-1/+20
|
* Add the sunfuncs to the .dsp file for Moshe.Wez Furlong2003-02-161-0/+8
|
* Update win32 project for streams juggling.Wez Furlong2003-02-161-16/+32
|
* A add much more useful select(2) implementation than is provided byWez Furlong2003-02-163-6/+6
| | | | | | | | | | | | | windows sockets. The winsock implementation will only work with sockets; our implementation works with sockets and file descriptors. By association, stream_select() will now operate correctly with files, pipes and sockets. This change required linking against the winsock2 library. In terms of compatibility, only older versions of windows 95 do not have winsock2 installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user. Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x.
* Update installer so that no extensions are enabled by default.Wez Furlong2003-02-131-14/+15
|
* Fix php.ini customization.Wez Furlong2003-02-102-15/+22
| | | | | | | | | | | Apparently, it seems that running the php script with output captured to the log prevented it from working correctly. Also, deletes the php.ini when uninstalled. TODO: The defaults install and activate all extensions. This is a problem for those extension that require non-bundled .dlls (such as OCI).
* Check in the prototype PHP installer for win32.Wez Furlong2003-02-053-0/+564
| | | | | | | | # Besides looking nice and pretty, the installer is actually smaller # than the .zip distro: # PHP 4.3.0 .zip distro: 5,950,222 bytes # PHP 4.3.0 installer: 5,426,242 bytes
* Get rid of php4ts.dsw - replaced by php5ts.dswZeev Suraski2003-01-281-239/+0
|
* Adding new files to the project.Edin Kadribasic2003-01-281-0/+8
| | | | | # First half of Sebastian's patch, Ilia will commit the second part shortly
* Moved the scandir code into it's own files so that it can be used by otherIlia Alshanetsky2003-01-272-85/+0
| | | | | OSes where libc does not have a native scandir() implementation.
* Fixed bug #21597 (made glob() understand windows paths)Edin Kadribasic2003-01-271-4/+11
|
* Fix broken build by adding scandir and alphasort for win32Shane Caraveo2003-01-262-1/+85
|
* Fix .dspZeev Suraski2003-01-231-112/+116
|
* WS fixMoriyoshi Koizumi2003-01-171-1/+1
|
* fix path to config.w32.hHarald Radi2003-01-161-1/+0
|
* Added some missing modules. Removed some that are built in or moved toEdin Kadribasic2003-01-151-14/+14
| | | | | ext/rpc.
* Add proc_open.c to project.Sebastian Bergmann2003-01-152-0/+8
|
* s/gd/gd2Derick Rethans2003-01-141-1/+1
|
* Leftover.Sebastian Bergmann2003-01-111-4/+0
|
* HEAD defaults to build with ZE2 nowHarald Radi2003-01-101-69/+106
|
* MFB:Edin Kadribasic2003-01-071-2/+6
| | | | | | Fixed bug #21442 (Crash of mail() on Windows when the first parameter is empty).