Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Buckle your seatbelt, Dorothy, 'cause Aggregation is going bye-bye. | Sebastian Bergmann | 2003-06-28 | 2 | -16/+0 |
| | |||||
* | fix the libxml linking warnings | Rob Richards | 2003-06-27 | 1 | -4/+4 |
| | |||||
* | Missing part of SQLite enabling on windows. | Edin Kadribasic | 2003-06-27 | 1 | -17/+29 |
| | |||||
* | Enabled sqlite by default on Windows. | Edin Kadribasic | 2003-06-27 | 1 | -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 project | Sascha Schumann | 2003-06-26 | 3 | -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 Bergmann | 2003-06-26 | 1 | -9/+1 |
| | |||||
* | libxml work | Zeev Suraski | 2003-06-26 | 1 | -4/+4 |
| | | | | | use static libxml library | ||||
* | Remove MySQL leftovers. | Sebastian Bergmann | 2003-06-26 | 1 | -11/+3 |
| | |||||
* | Sync. | Sebastian Bergmann | 2003-06-26 | 1 | -48/+12 |
| | |||||
* | - Add libxml directory | Zeev Suraski | 2003-06-26 | 1 | -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 Bergmann | 2003-06-25 | 1 | -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 Bergmann | 2003-06-25 | 1 | -88/+0 |
| | |||||
* | Remove references to bundled libmysql. | Sebastian Bergmann | 2003-06-23 | 4 | -62/+38 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 12 | -36/+36 |
| | |||||
* | Leftover. | Sebastian Bergmann | 2003-05-25 | 2 | -0/+10 |
| | |||||
* | Get rid of references to expat in MSVC project files. For now this expects ↵ | Sebastian Bergmann | 2003-05-24 | 2 | -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 Bergmann | 2003-05-19 | 2 | -16/+16 |
| | |||||
* | First try at getting the Windows build working again after libxml2 got ↵ | Sebastian Bergmann | 2003-05-19 | 2 | -42/+42 |
| | | | | unbundled. | ||||
* | Adjust path to bundled expat sources for Win32 build. | Sebastian Bergmann | 2003-05-03 | 2 | -50/+50 |
| | |||||
* | Leftover. | Sebastian Bergmann | 2003-03-26 | 1 | -12/+0 |
| | |||||
* | Leftover. | Sebastian Bergmann | 2003-03-25 | 1 | -1/+1 |
| | |||||
* | Tidy up stupid signed/unsigned issues with win32 by introducing a ↵ | Wez Furlong | 2003-02-28 | 1 | -2/+4 |
| | | | | php_socket_t typedef. | ||||
* | Update win32 build. | Wez Furlong | 2003-02-27 | 2 | -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.c | Wez Furlong | 2003-02-27 | 3 | -4/+238 |
| | | | | | | Move win32 select implementation into win32/. Will update win32 build in a moment. | ||||
* | Fixup build for win32 | Wez Furlong | 2003-02-27 | 1 | -0/+44 |
| | |||||
* | Add comment about thread-safety of gethostbyname on win32. | Wez Furlong | 2003-02-21 | 1 | -5/+5 |
| | | | | | Set the correct path to the win32 config.h file in the .dsp file. | ||||
* | Commit missing stuff | Zeev Suraski | 2003-02-18 | 2 | -3/+0 |
| | |||||
* | - Cleaned this mess a bit: | foobar | 2003-02-17 | 1 | -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.. | foobar | 2003-02-17 | 3 | -3/+3 |
| | |||||
* | Some additional sanity. | Wez Furlong | 2003-02-16 | 1 | -1/+20 |
| | |||||
* | Add the sunfuncs to the .dsp file for Moshe. | Wez Furlong | 2003-02-16 | 1 | -0/+8 |
| | |||||
* | Update win32 project for streams juggling. | Wez Furlong | 2003-02-16 | 1 | -16/+32 |
| | |||||
* | A add much more useful select(2) implementation than is provided by | Wez Furlong | 2003-02-16 | 3 | -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 Furlong | 2003-02-13 | 1 | -14/+15 |
| | |||||
* | Fix php.ini customization. | Wez Furlong | 2003-02-10 | 2 | -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 Furlong | 2003-02-05 | 3 | -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.dsw | Zeev Suraski | 2003-01-28 | 1 | -239/+0 |
| | |||||
* | Adding new files to the project. | Edin Kadribasic | 2003-01-28 | 1 | -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 other | Ilia Alshanetsky | 2003-01-27 | 2 | -85/+0 |
| | | | | | OSes where libc does not have a native scandir() implementation. | ||||
* | Fixed bug #21597 (made glob() understand windows paths) | Edin Kadribasic | 2003-01-27 | 1 | -4/+11 |
| | |||||
* | Fix broken build by adding scandir and alphasort for win32 | Shane Caraveo | 2003-01-26 | 2 | -1/+85 |
| | |||||
* | Fix .dsp | Zeev Suraski | 2003-01-23 | 1 | -112/+116 |
| | |||||
* | WS fix | Moriyoshi Koizumi | 2003-01-17 | 1 | -1/+1 |
| | |||||
* | fix path to config.w32.h | Harald Radi | 2003-01-16 | 1 | -1/+0 |
| | |||||
* | Added some missing modules. Removed some that are built in or moved to | Edin Kadribasic | 2003-01-15 | 1 | -14/+14 |
| | | | | | ext/rpc. | ||||
* | Add proc_open.c to project. | Sebastian Bergmann | 2003-01-15 | 2 | -0/+8 |
| | |||||
* | s/gd/gd2 | Derick Rethans | 2003-01-14 | 1 | -1/+1 |
| | |||||
* | Leftover. | Sebastian Bergmann | 2003-01-11 | 1 | -4/+0 |
| | |||||
* | HEAD defaults to build with ZE2 now | Harald Radi | 2003-01-10 | 1 | -69/+106 |
| | |||||
* | MFB: | Edin Kadribasic | 2003-01-07 | 1 | -2/+6 |
| | | | | | | Fixed bug #21442 (Crash of mail() on Windows when the first parameter is empty). |