Andi Gutmans
bb12ffe41f
- Move uuencode to the right place (ext/standard)
2003-10-30 09:58:52 +00:00
Andi Gutmans
b29686a6e5
- Add uuencode.c to the project
2003-10-27 15:49:11 +00:00
Shane Caraveo
399095e7a5
Add libxml extension for common code that is needed to be shared between
...
various xml extensions. currently the only implemented support is the
addition of the streams support for libxml. One new function,
libxml_set_streams_context, which allows a streams context to bet set
prior to loading or writing documents. This works transparently with any
extension that uses libxml. All ini settings that effect streams will
also now effect the loading and writing of xml documents.
TODO: linux support, not sure if config.m4 will work right.
2003-10-19 21:48:46 +00:00
Wez Furlong
d8d1ca3f3b
add com iterator support
2003-10-17 20:52:18 +00:00
foobar
f62239c444
renamed http.h -> php_http.h
2003-09-06 13:09:04 +00:00
Sebastian Bergmann
755eca693e
Add ext/standard/http.{c|h}.
2003-09-06 07:57:10 +00:00
Rob Richards
2fea999468
fix debug build. use libxml dynamic linking until it can re-export symbols
2003-08-25 10:11:26 +00:00
Wez Furlong
ec8a5e7b8d
provide general hook for exporting symbols from php4ts.dll
2003-08-22 21:45:58 +00:00
Wez Furlong
7881c6e0b6
Might help to have the COM stuff actually build...
2003-08-14 17:58:58 +00:00
Zeev Suraski
fd8c67e644
Fix library linkage
2003-08-04 08:55:44 +00:00
Zeev Suraski
76e26c8e99
Add missing library path
2003-08-04 08:54:40 +00:00
Rob Richards
d326b80998
add xpath.c to DOM source files
2003-07-24 13:20:59 +00:00
Edin Kadribasic
9c717b33a6
Add sqlite session handler to win32 build
2003-07-01 13:26:02 +00:00
Zeev Suraski
77037dcea4
Add missing sqlite references
2003-07-01 08:19:11 +00:00
Zeev Suraski
8dd84b7b98
Conform to the sqlite.dsp updates
2003-06-30 11:43:14 +00:00
Sebastian Bergmann
10ec176f69
Buckle your seatbelt, Dorothy, 'cause Aggregation is going bye-bye.
2003-06-28 05:38:52 +00:00
Rob Richards
d50554ebae
fix the libxml linking warnings
2003-06-27 21:59:53 +00:00
Edin Kadribasic
94b7050bc0
Enabled sqlite by default on Windows.
...
# Also added iconv.lib to the build since it is a dependency of
# the precompiled libxml. This will be removed later.
2003-06-27 14:32:59 +00:00
Sebastian Bergmann
9f9a1d4d3a
Leftovers.
2003-06-26 15:57:03 +00:00
Zeev Suraski
94c8f5624e
libxml work
...
use static libxml library
2003-06-26 15:31:48 +00:00
Zeev Suraski
ff52e95cbb
- Add libxml directory
...
- Add zlib to configurations where it was missing
- Remove libmysql linkage
2003-06-26 14:19:42 +00:00
Sebastian Bergmann
4434c8e0d6
Add ext/dom and ext/simplexml to the Win32 default build. #Apart from a linker error when HAVE_SIMPLEXML=1 is set this already works. More research, after a good night's sleep, is required ;-)
2003-06-25 21:37:50 +00:00
Sebastian Bergmann
a10e5b6381
Remove ext/rpc references from Windows build.
2003-06-25 04:54:23 +00:00
Sebastian Bergmann
4ee26b390f
Remove references to bundled libmysql.
2003-06-23 04:27:11 +00:00
Sebastian Bergmann
f53360616e
Leftover.
2003-05-25 06:22:35 +00:00
Sebastian Bergmann
d1cb228bf1
Get rid of references to expat in MSVC project files. For now this expects libxml2 (library and includes) in one of the MSVC default include/library directories. Right now it doesn't link, dunno why -- working on it.
2003-05-24 08:03:38 +00:00
Sebastian Bergmann
80824a3d3a
Leftovers.
2003-05-19 17:33:33 +00:00
Sebastian Bergmann
88cb80020a
First try at getting the Windows build working again after libxml2 got unbundled.
2003-05-19 16:28:08 +00:00
Sebastian Bergmann
ab393a9b0c
Adjust path to bundled expat sources for Win32 build.
2003-05-03 08:44:53 +00:00
Wez Furlong
493ef36299
Update win32 build.
...
Since msvc sucks, I had to rename ext/standard/streams.c to ext/standed/streamsfuncs.c
2003-02-27 22:43:51 +00:00
Wez Furlong
203068d055
Fixup build for win32
2003-02-27 18:06:31 +00:00
Wez Furlong
c1bdf163ed
Add comment about thread-safety of gethostbyname on win32.
...
Set the correct path to the win32 config.h file in the .dsp file.
2003-02-21 14:06:55 +00:00
foobar
7e9fb9f21f
- Cleaned this mess a bit:
...
. 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
2003-02-17 06:28:07 +00:00
Wez Furlong
83f399fed0
Add the sunfuncs to the .dsp file for Moshe.
2003-02-16 22:39:01 +00:00
Wez Furlong
8305254fe6
Update win32 project for streams juggling.
2003-02-16 22:34:40 +00:00
Wez Furlong
0a18a9d744
A add much more useful select(2) implementation than is provided by
...
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.
2003-02-16 03:48:49 +00:00
Edin Kadribasic
7c283f80be
Adding new files to the project.
...
# First half of Sebastian's patch, Ilia will commit the second part shortly
2003-01-28 00:32:15 +00:00
Zeev Suraski
cee6216c4f
Fix .dsp
2003-01-23 09:35:02 +00:00
Harald Radi
4024425e8e
fix path to config.w32.h
2003-01-16 18:25:59 +00:00
Sebastian Bergmann
003ea0717e
Add proc_open.c to project.
2003-01-15 16:48:46 +00:00
Sebastian Bergmann
02c1b1d8d2
Leftover.
2003-01-11 06:08:55 +00:00
Harald Radi
c3867a7c8e
HEAD defaults to build with ZE2 now
2003-01-10 23:36:18 +00:00
Sebastian Bergmann
b5d97e5ddb
Revert config.w32.h.in -> config.w32.h build step per discussion with Zeev.
2003-01-05 15:58:29 +00:00
Sebastian Bergmann
a5f58cd6e5
Add filter.c, user_filters.c. Group stream related sources.
2003-01-01 12:36:43 +00:00
Zeev Suraski
ac1133d364
Remove bogus ignores
2002-12-29 15:42:55 +00:00
Zeev Suraski
758caa9ba2
Update .dsp's
2002-12-29 15:41:44 +00:00
Edin Kadribasic
46219c714d
MFB:
...
Made ZLIB extension built in on Windows. Fixes #21139 .
2002-12-26 13:40:32 +00:00
James Cox
5d0f205df8
grr..
2002-11-20 21:21:35 +00:00
James Cox
418f53c647
remove number.c from the win32 build..
...
# did this on unix... shouldn't cause a problem, but vc can get picky.
2002-11-20 21:20:10 +00:00
Edin Kadribasic
7cdffea872
Really remove mbstring from the build.
...
# mbstring is gone completely as it does not build currently on win32
# as a separate module
2002-11-13 21:29:55 +00:00