forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
18522 lines (13311 loc) · 499 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2000-04-30 Sterling Hughes <[email protected]>
* ext/swf/php_swf.h: Allow the SWF module to compile as a dl.
* ext/swf/swf.c: Proto's and the such.
2000-04-30 Sascha Schumann <[email protected]>
* ext/swf/.cvsignore: Ignore standard files
2000-04-30 Andi Gutmans <[email protected]>
* ext/session/mod_files.c
ext/session/session.c
ext/dba/dba_cdb.c
ext/dba/dba_dbm.c
ext/dbase/dbase.c
ext/dbase/dbf_head.c
ext/oci8/oci8.c
dl/log/log_sql.c
ext/db/db.c: - Change some open's to V_OPEN()'s
2000-04-30 Sterling Hughes <[email protected]>
* ext/swf/Makefile.in
ext/swf/config.m4
ext/swf/php_swf.h
ext/swf/swf.c
ext/swf/swf.h:
Add LibSWF support to PHP, will be sending an e-mail on the files and
uses shortly.
2000-04-30 Rasmus Lerdorf <[email protected]>
* sapi/nsapi/Makefile.in
sapi/nsapi/config.m4
sapi/nsapi/nsapi.c:
Add initial NSAPI module from Jayakumar Muthukumarasamy
2000-04-30 Andi Gutmans <[email protected]>
* ext/standard/file.c
php.h:
- Take Sascha's advice and create on V_OPEN() which replaces open().
- Unlike the other macros its argument has to have braces around it, for
- example, open(filename, flags) becomse V_OPEN((filename, flags))
- Made small conversion to new Zend macros. The ugly (*foo)->value.str.val
- now becomes Z_STRVAL_PP(foo). PP means pointer pointer, there also exist
- single P's for example foo->value.str.val becomes Z_STRVAL_P(foo).
2000-04-30 Jouni Ahto <[email protected]>
* ext/imap/config.m4:
Debian 2.2 puts rfc822.h in /usr/include/c-client, check that place too.
* MODULES_STATUS:
* ext/interbase/interbase.c
ext/interbase/php_interbase.h:
Moving module to the high-performance API & fixing it for PHP4.
2000-04-30 Shane Caraveo <[email protected]>
* sapi/apache/sapi_apache.c:
zeroing the variables fixes one crash...now crashes on memory allocation during zend_compile_files
* sapi/apache/mod_php4.c: sorry, do comments right
* sapi/apache/apachephp4.dsp
sapi/apache/mod_php4.c
sapi/apache/mod_php4.h
sapi/apache/php_apache.c
sapi/apache/sapi_apache.c:
apache module now compiles under win32, apache loads, but crashes on line 1167 main.c on page request
2000-04-30 Sascha Schumann <[email protected]>
* sapi/servlet/Makefile.in
sapi/thttpd/Makefile.in
sapi/roxen/Makefile.in
sapi/isapi/Makefile.in
sapi/phttpd/Makefile.in
sapi/aolserver/Makefile.in
sapi/apache/Makefile.in
sapi/cgi/Makefile.in
pear/Makefile.in
regex/Makefile.in
sapi/Makefile.in
ext/xml/expat/xmlparse/Makefile.in
ext/xml/expat/xmltok/Makefile.in
ext/yp/Makefile.in
ext/zlib/Makefile.in
ext/wddx/Makefile.in
ext/xml/Makefile.in
ext/xml/expat/Makefile.in
ext/sysvsem/Makefile.in
ext/sysvshm/Makefile.in
ext/standard/Makefile.in
ext/sybase/Makefile.in
ext/sybase_ct/Makefile.in
ext/recode/Makefile.in
ext/session/Makefile.in
ext/snmp/Makefile.in
ext/pcre/pcrelib/Makefile.in
ext/pdf/Makefile.in
ext/pgsql/Makefile.in
ext/posix/Makefile.in
ext/readline/Makefile.in
ext/oci8/Makefile.in
ext/odbc/Makefile.in
ext/oracle/Makefile.in
ext/pcre/Makefile.in
ext/mysql/libmysql/Makefile.in
ext/msql/Makefile.in
ext/mysql/Makefile.in
ext/ldap/Makefile.in
ext/mcal/Makefile.in
ext/mcrypt/Makefile.in
ext/mhash/Makefile.in
ext/informix/Makefile.in
ext/interbase/Makefile.in
ext/java/Makefile.in
ext/icap/Makefile.in
ext/imap/Makefile.in
ext/gettext/Makefile.in
ext/hyperwave/Makefile.in
ext/ftp/Makefile.in
ext/gd/Makefile.in
ext/fdf/Makefile.in
ext/filepro/Makefile.in
ext/db/Makefile.in
ext/dba/Makefile.in
ext/dbase/Makefile.in
ext/domxml/Makefile.in: Overall UNIX build system improvements:
* Makefile header is now completely dynamic
* Absolute paths in (top_)?(src|build)dir and VPATH
(fixes Tru64 support)
* VPATH does not contain variables anymore
(fixes UnixWare support)
* ext/cybercash/Makefile.in
ext/dav/Makefile.in
ext/aspell/Makefile.in
ext/bcmath/Makefile.in
ext/calendar/Makefile.in
ext/cpdf/Makefile.in:
(The first part of this commit died with a SIGPIPE from the CVS server.)
Overall UNIX build system improvements:
* Makefile header is now completely dynamic
* Absolute paths in (top_)?(src|build)dir and VPATH
(fixes Tru64 support)
* VPATH does not contain variables anymore
(fixes UnixWare support)
* build/fastgen.sh
build/ltlib.mk
build/rules.mk
build/rules_pear.mk
ext/Makefile.in
ext/ext_skel
Makefile.in
NEWS: Overall UNIX build system improvements:
* Makefile header is now completely dynamic
* Absolute paths in (top_)?(src|build)dir and VPATH
(fixes Tru64 support)
* VPATH does not contain variables anymore
(fixes UnixWare support)
* php_virtual_cwd.c
php_virtual_cwd.h: Fix virtual_open() by adding ellipse
2000-04-29 Andi Gutmans <[email protected]>
* php.h
php_virtual_cwd.c
php_virtual_cwd.h: - Implement V_OPEN() V_OPEN_CREAT() and V_CREAT().
Next step is to substitute all open()'s and creat()'s in the PHP tree
2000-04-29 Andrei Zmievski <[email protected]>
* ext/standard/strnatcmp.c:
Martin Pool updated the natural comparison/sort algorithm so that fractions
compare more "naturally", e.g. 1.002 < 1.1.
2000-04-29 Zeev Suraski <[email protected]>
* php.h:
- Never mind. Seems like we're still missing the open() functionality
* php.h:
- Give VIRTUAL_DIR another try after testing it extensively on our web site
2000-04-29 Rasmus Lerdorf <[email protected]>
* build/build2.mk: Oops, wrong path
* build/build2.mk: An empty .deps was not getting generated here
2000-04-29 Thies C. Arntzen <[email protected]>
* TODO: .
2000-04-28 Sascha Schumann <[email protected]>
* ext/imap/config.m4: Improve imap-lib check
2000-04-28 Hartmut Holzgraefe <[email protected]>
* SAPI.c:
no more broken scripts by erroneously terminating header()'s argument
with a CR-LF
2000-04-28 tedp <tedp@va>
* ext/imap/php_imap.c:
Removed bug that prevented it to work on longer strings.
Changed commenting to c-style commenting.
2000-04-28 Andrei Zmievski <[email protected]>
* ext/standard/array.c: Fix an empty arrays condition and optimize a bit.
2000-04-28 Zeev Suraski <[email protected]>
* ext/standard/head.c
ext/standard/head.h
SAPI.c
SAPI.h
ext/session/session.c
main.c: - Fix an invalid trick (it was valid when header() was using
zend_get_parameters(), but it became invalid when someone switched it
to zend_get_parameters_ex(), and I decided to remove it anyway).
- Remove a redundant function call
2000-04-28 Andrei Zmievski <[email protected]>
* TODO: Fix up.
2000-04-28 Thies C. Arntzen <[email protected]>
* main.c:
(php_module_startup) is now doing setlocale(LC_ALL, "") instead of just setlocale(LC_CTYPE, ""). suggested by Jon Forsberg <[email protected]>
* TODO: .
* ext/oci8/oci8.c
ext/oracle/oracle.c: compile fix
* TODO-LeftOver: no longer needed
2000-04-27 Zeev Suraski <[email protected]>
* main.c: Change to using macros
* ext/standard/info.c
php.h
php4dll.dsp
main.c: More error handling work (still completely disabled)
2000-04-27 Joey Smith <[email protected]>
* README.bcmath: Please, no more bug reports about bcmath
2000-04-27 Andrei Zmievski <[email protected]>
* TODO
ext/standard/string.c: TODO update and fix for C++ comments.
2000-04-27 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.dsp: using vi to update DevStudio Files, yeah!
* ext/oci8/oci8.c: .
* ext/oci8/Makefile.in
ext/oci8/config.m4
ext/oci8/oci8.c: allow oci8 to be build as loadable module.
2000-04-26 Sterling Hughes <[email protected]>
* ext/standard/string.c: Small proto fix.
2000-04-26 Andrei Zmievski <[email protected]>
* ext/standard/basic_functions.c
ext/standard/php_string.h
ext/standard/string.c
TODO
ext/pcre/php_pcre.c: Added substr_count() from Peter Kovacs.
2000-04-24 Andrew Skalski <[email protected]>
* ext/imap/php_imap.c: * typecast fs_give parameter to void**
* removed wide-character treatment from imap_utf7_encode
* suggestion to #include "linkage.c" rather than link in auth/mail drivers
manually
2000-04-24 Zeev Suraski <[email protected]>
* ext/standard/rand.c: - Get rid of newly introduced warning
2000-04-24 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c: .
2000-04-24 Zeev Suraski <[email protected]>
* reentrancy.c:
- Fix crash bug in localtime_r. If locatime() returns NULL then also return
NULL
2000-04-24 Thies C. Arntzen <[email protected]>
* ext/standard/dl.c: RINIT was called twice for modules loaded vi php.ini
2000-04-24 Andrei Zmievski <[email protected]>
* ext/standard/file.c: Exterminate warnings.
* NEWS
ext/standard/file.c:
The third argument to fseek() is now one of the standard SEEK_* constants.
2000-04-24 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.dsp: enabel PDB
* ext/oci8/oci8.c: fix warning
2000-04-23 Sterling Hughes <[email protected]>
* pear/DB/msql.php: Add mSQL DB extension.
* pear/Makefile.in
TODO: TODO:
Just did that.
PEAR:
Fix typo
* ext/standard/file.c:
-Add an optional third argument to fseek to indicate were to seek from.
2000-04-23 Frank M. Kromann <[email protected]>
* ext/imap/imap.dsp
ext/ldap/ldap.dsp: Moving output files to common folder
* ext/mssql/Readme_w32.txt: Removing invalid readme file
* ext/oci8/oci8.dsp
ext/oracle/oracle.dsp
ext/mssql/mssql.dsp
ext/mssql/php_mssql.h:
moving pointers to header and library files to match php_build structure
* php_modules.dsw
ext/mcrypt/mcrypt.dsp: adding project file for mcrypt module
2000-04-23 Sterling Hughes <[email protected]>
* pear/Makefile.in:
Add a new directory for File (it was supposed to be there
in the first place).
2000-04-22 Charles Hagenbuch <[email protected]>
* ext/imap/php_imap.c:
back off from high-performance api in imap_rfc822_parse_adrlist. if you
called it twice on the same string, there were _strange_ side effects. This
may be slower, but it works.
2000-04-22 Andi Gutmans <[email protected]>
* ext/standard/php_rand.h
ext/standard/rand.c: - In Windows RAND_MAX is defined in stdlib.h
- Get rid of comment which is confusing.
* ext/standard/rand.c:
- Hopefully fix mt_rand() functions under Windows. This patch will effect
all platforms so I hope it's OK.
2000-04-21 Thies C. Arntzen <[email protected]>
* ext/standard/info.c: add VDIR info
* php_modules.dsw: add oracle and oci8
* ext/oracle/oracle.dsp: .
* ext/oracle/oracle.c
ext/oracle/oracle.dsp
ext/oracle/oracle.dsw
ext/oracle/php_oracle.h: oracle compiles now on win32 - untested!
* ext/oci8/oci8.dsp
ext/oci8/oci8.dsw: *** empty log message ***
2000-04-21 Zeev Suraski <[email protected]>
* php_virtual_cwd.c: - Missed second argument
2000-04-21 Andi Gutmans <[email protected]>
* php_virtual_cwd.c: - Fix last fix for Windows
2000-04-21 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c: make it compile on Win32
2000-04-21 Andi Gutmans <[email protected]>
* php_virtual_cwd.c:
- Small fix to virtual_Chdir_file() to include the trailing slash when
the file is in the root directory.
2000-04-21 Frank M. Kromann <[email protected]>
* ext/ftp/ftp.dsp
ext/mssql/mssql.dsp: Moving output modules
* ext/zlib/zlib.dsp
ext/zlib/zlib_win32_howto.txt:
Adding a short WIN32_HOWTO and moving library and header files to php_build
2000-04-21 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c:
- OCIBindByName() will no longer complain about bindlength beeing zero.
2000-04-21 Rasmus Lerdorf <[email protected]>
* ext/gd/gd.c: createfrom* fixes
2000-04-20 Zeev Suraski <[email protected]>
* ext/imap/php_imap.c: Compile fixes
* ext/ldap/ldap.dsp
ext/imap/imap.dsp: Add .txt files to .dsp's
* NEWS: Another consistency fix
* NEWS: Consistency fix
* ext/ftp/ftp.dsp
ext/mssql/mssql.dsp
ext/zlib/zlib.dsp
fopen-wrappers.c: A few .dsp fixes
2000-04-20 Andi Gutmans <[email protected]>
* fopen-wrappers.c: - Change a getcwd()
2000-04-20 Frank M. Kromann <[email protected]>
* php_modules.dsw: Adding Java project to modules workspace
* php_modules.dsw: Adding ftp project to modules workspace
2000-04-20 Andi Gutmans <[email protected]>
* php.h: - virtual_lstat() doesn't exist on Windows.
2000-04-20 Frank M. Kromann <[email protected]>
* ext/ftp/ftp.dsp: Adding project file for ftp module on Win32
2000-04-20 Zeev Suraski <[email protected]>
* ext/zlib/zlib.dsp: Remove strlcpy from the zlib project
* NEWS
ext/imap/php_imap.c
ext/zlib/zlib.dsp
php_modules.dsw:
- Add the zlib project to the php_modules workspace, and fix it's C-runtime definitions
- Move IMAP to the high performance API
2000-04-20 Frank M. Kromann <[email protected]>
* ext/zlib/zlib.dsp: Adding strlcpy to makefile
2000-04-20 Andi Gutmans <[email protected]>
* php.h
php_virtual_cwd.c
php_virtual_cwd.h
strlcat.c
strlcpy.c: - Export strlcat()/strcpy() for Frank.
- Windows doesn't have lstat().
2000-04-20 Zeev Suraski <[email protected]>
* ext/zlib/zlib.c
ext/session/mod_files.c
ext/session/session.c
ext/standard/filestat.c
ext/standard/link.c
dl/log/log_db.c
ext/db/db.c
ext/dba/dba_db2.c
ext/dba/dba_db3.c
php.h
php_virtual_cwd.c
php_virtual_cwd.h: - Fix virtual cwd bug
- Add more V_STAT() V_LSTAT() changes
2000-04-20 Frank M. Kromann <[email protected]>
* ext/zlib/zlib.c
ext/zlib/zlib.dsp: Making zlib compile under Win32 and fixing a typo
2000-04-20 Andi Gutmans <[email protected]>
* SAPI.c
fopen-wrappers.c
php.h
php_realpath.c
php_virtual_cwd.c
php_virtual_cwd.h
safe_mode.c: - Add missing V_STAT()
2000-04-20 Frank M. Kromann <[email protected]>
* ext/mssql/php_mssql.c: Fixing init problem for Zval's in mssql_query
2000-04-20 Sascha Schumann <[email protected]>
* ext/calendar/config.m4: New style
* ext/gd/config.m4: Do not enable GD, if --without-gd was used
2000-04-20 Zeev Suraski <[email protected]>
* ext/imap/php_imap.c: - CHange macro names from Z to Z_
* ext/imap/php_imap.c:
Fix, beautify and convert the IMAP module to the high performance API
2000-04-20 Andrei Zmievski <[email protected]>
* configure.in: Check for ieeefp.h.
2000-04-20 Andi Gutmans <[email protected]>
* sapi/cgi/cgi_main.c: - Another PHP_WIN32 patch
* sapi/cgi/cgi_main.c: - Change to PHP_WIN32
2000-04-20 Thies C. Arntzen <[email protected]>
* sapi/cgi/cgi_main.c: improve fix
2000-04-19 Zeev Suraski <[email protected]>
* ext/standard/info.c: Fix Win32 compilation. Hillarious April 1st joke!
2000-04-19 Colin Viebrock <[email protected]>
* logos.h
main.c: *** empty log message ***
* ext/standard/info.c
ext/standard/info.h: A little easter egg for April 1st ... :)
2000-04-19 Andrei Zmievski <[email protected]>
* NEWS: Modified entry.
* ext/standard/basic_functions.c: Just a type cast is sufficient.
2000-04-19 Frank M. Kromann <[email protected]>
* sapi/cgi/cgi_main.c: SIGPIPE is unknown on WIN32 platforms
2000-04-19 Andrei Zmievski <[email protected]>
* ext/calendar/config.m4: Make ext/calendar optional.
2000-04-19 Thies C. Arntzen <[email protected]>
* sapi/cgi/cgi_main.c:
ignore SIGPIPE in standalone-mode so that one can actually use fsockopen() *and* have the remote side close the socket whithout PHP dying!
2000-04-19 Zeev Suraski <[email protected]>
* sapi/isapi/php4isapi.c
NEWS: author fixes
* sapi/isapi/php4isapi.c:
Improve performance of the PHP_SELF registration under ISAPI
* NEWS
main.c
php.ini-dist
php.ini-optimized: Support E_USER_* error types
2000-04-19 Andrei Zmievski <[email protected]>
* NEWS: Some fixes.
* NEWS: Fix attribution
2000-04-19 Zeev Suraski <[email protected]>
* ext/ldap/ldap.c: Kill warning
* ext/imap/php_imap.c: Fix a couple of _ex()'s
2000-04-19 Rasmus Lerdorf <[email protected]>
* ext/standard/file.c: fgetcsv() patch from Nick Talbott
2000-04-19 Zeev Suraski <[email protected]>
* ext/standard/info.c: phpcredits() update.
2000-04-18 Evan Klinger <[email protected]>
* ext/standard/basic_functions.c:
- Fixed long2ip() to return the correct IP address.
2000-04-18 Zeev Suraski <[email protected]>
* NEWS
ext/imap/php_imap.c: - Fix many memory leaks in the IMAP module
- Begin migrating to the high performance API
2000-04-18 Egon Schmid <[email protected]>
* ext/standard/output.c: Corrected some protos.
2000-04-18 Zeev Suraski <[email protected]>
* ext/imap/php_imap.c: indent/beautify
* ext/standard/output.c: Document the ob_*() functions
2000-04-18 Jouni Ahto <[email protected]>
* MAINTAINERS
MODULES_STATUS
ext/interbase/interbase.c
ext/interbase/php_interbase.h:
2000-04-17 Frank M. Kromann <[email protected]>
* ext/mssql/php_mssql.c: minor optimization
2000-04-17 Andrew Skalski <[email protected]>
* ext/imap/php_imap.c
ext/imap/php_imap.h: fixed imap quota/relogin compilation errors
2000-04-17 Egon Schmid <[email protected]>
* ext/standard/info.c: Have forgotten myself.
2000-04-17 Thies C. Arntzen <[email protected]>
* ext/pcre/pcrelib/doc/.cvsignore
ext/pcre/pcrelib/testdata/.cvsignore: shut up CVS!
2000-04-17 Stig Bakken <[email protected]>
* ext/calendar/.cvsignore: ignore stuff
2000-04-17 Hartmut Holzgraefe <[email protected]>
* ext/calendar/cal_unix.c: initial checkin
2000-04-16 Andrei Zmievski <[email protected]>
* NEWS: This doesn't belong in NEWS.
2000-04-16 Sascha Schumann <[email protected]>
* php_reentrancy.h: Undefine HAVE_*_R, so that we get our replacements
2000-04-16 Nick Gorham <[email protected]>
* ext/odbc/php_odbc.c
NEWS:
Removed unnecessary FAR's (I am assuming we don't need to work under
16 bit windows). They break several ODBC builds.
2000-04-16 Egon Schmid <[email protected]>
* ext/calendar/calendar.c: The comma is also optional.
2000-04-16 Rasmus Lerdorf <[email protected]>
* configure.in
ext/standard/config.m4:
Move this check to the main configure.in file. Fixes #3979
2000-04-16 Sascha Schumann <[email protected]>
* TODO: Updates
2000-04-16 Hartmut Holzgraefe <[email protected]>
* ext/calendar/Makefile.in
ext/calendar/calendar.c
ext/calendar/easter.c
ext/calendar/php_calendar.h:
added unixtojd() and jdtounix() to convert from unix time_t to
Julian Days and vice versa
2000-04-15 Hartmut Holzgraefe <[email protected]>
* ext/calendar/Makefile.in
ext/calendar/calendar.c
ext/calendar/config.m4
ext/calendar/dow.c
ext/calendar/easter.c
ext/calendar/french.c
ext/calendar/gregor.c
ext/calendar/jewish.c
ext/calendar/julian.c
ext/calendar/php_calendar.h
ext/calendar/sdncal.h:
made calendar a real extension instead of a dl one only
2000-04-15 Frank M. Kromann <[email protected]>
* php_modules.dsw: Adding mssql to modules
* ext/mssql/mssql.dsp
ext/mssql/php_mssql.c: Fixing compilation errors in MSSQL module
* sapi/isapi/php4isapi.c:
Adding $PHP_SELF variable for compatibility with other platforms
2000-04-15 Sascha Schumann <[email protected]>
* sapi/aolserver/aolserver.c: SECTION is not defined in info.h anymore
* sapi/aolserver/config.m4:
Support install directories other than srcdir/root
* sapi/aolserver/README:
Add documentation on how to install PHP in AOLserver
2000-04-15 Andi Gutmans <[email protected]>
* configuration-parser.y: - PHP_FOPEN -> V_FOPEN
2000-04-15 Zeev Suraski <[email protected]>
* main.c: Remove unnecessary argument
2000-04-15 Andi Gutmans <[email protected]>
* win32/registry.c
ext/posix/posix.c
ext/standard/dir.c
ext/standard/filestat.c
ext/standard/image.c
ext/standard/iptc.c
sapi/apache/mod_php4.c
sapi/isapi/php4isapi.c
sapi/roxen/roxen.c: - Change PHP_ to V_ (directory & file functions)
* ext/gd/gd.c
ext/db/db.c
ext/filepro/filepro.c
ext/ftp/php_ftp.c
ext/com/COM.c
fopen-wrappers.c
main.c
php.h
php_realpath.c
rfc1867.c
safe_mode.c: - Change PHP_ to V_ (directory & file functions)
* ext/standard/math.c: Fix bug in number_format (Jon Forsberg)
2000-04-15 Zeev Suraski <[email protected]>
* php3_compat.h
main.c: Forgot to commit the php4 fixes
2000-04-15 Danny Heijl <[email protected]>
* ext/informix/ifx.dsp
ext/informix/ifx.dsw:
- fix Win32 Release_TS build of Informix driver (danny).
2000-04-14 Egon Schmid <[email protected]>
* ext/standard/info.c: Small corrections.
2000-04-14 Zeev Suraski <[email protected]>
* ext/standard/info.c: Add the documentation team to the credits page
2000-04-14 Rasmus Lerdorf <[email protected]>
* main.c
php_globals.h: Make error_prepend_string and error_append_string work
* php_version.h: Undo bogus commit
* ext/sysvsem/sysvsem.c
php_version.h:
I don't see why this should be gcc dependant and this fixes bugs 4140
and 4143
2000-04-13 Andrei Zmievski <[email protected]>
* TODO: fseek() idea.
2000-04-13 Sam Ruby <[email protected]>
* sapi/servlet/servlet.java: Oops - remove debug statement
* sapi/servlet/servlet.java
sapi/servlet/sessions.php: match changes to Tomcat example
2000-04-13 Andrei Zmievski <[email protected]>
* ext/standard/array.c:
2000-04-13 Zeev Suraski <[email protected]>
* ext/standard/strnatcmp.c
php4dll.dsp
php4dllts.dsp
NEWS: - Make Windows builds build again
- Make non-gcc based platforms compile again
2000-04-13 Thies C. Arntzen <[email protected]>
* ext/standard/strnatcmp.c:
the asset call caused an undefined __eprintf here!
2000-04-13 Martin Kraemer <[email protected]>
* acinclude.m4
configure.in: Test for EBCDIC platform
2000-04-13 Rasmus Lerdorf <[email protected]>
* sapi/apache/mod_php4.c: Fix for bug #4125
2000-04-12 David Hedbor <[email protected]>
* sapi/roxen/roxen.c: - Fixed a couple of POST problems.
- Use virtual path functionality when available, to set the cwd of the
script to it's own directory prior to starting it.
- Fixed a bug in php_roxen_sapi_header_handler.
2000-04-12 Andrei Zmievski <[email protected]>
* TODO: Claim some stuff.
* TODO: Already done.
* ext/standard/Makefile.in
ext/standard/array.c
ext/standard/basic_functions.c
ext/standard/php_array.h
ext/standard/php_string.h
ext/standard/string.c
ext/standard/strnatcmp.c:
Added natural comparison/sorting routines using code from Martin Pool.
2000-04-12 Sam Ruby <[email protected]>
* ext/pcre/pcrelib/internal.h: make it compile on Win32
2000-04-12 Thies C. Arntzen <[email protected]>
* NEWS: something with the @ commit stuff *is* broken.
2000-04-12 joosters <joosters@www>
* INSTALL
README.Zeus
sapi/isapi/php4isapi.c:
- Zeus Webserver support (version 3.3.6+) for ISAPI
2000-04-11 Andrei Zmievski <[email protected]>
* ext/pcre/pcrelib/AUTHORS
ext/pcre/pcrelib/COPYING
ext/pcre/pcrelib/ChangeLog
ext/pcre/pcrelib/INSTALL
ext/pcre/pcrelib/LICENCE
ext/pcre/pcrelib/Makefile.in
ext/pcre/pcrelib/NEWS
ext/pcre/pcrelib/NON-UNIX-USE
ext/pcre/pcrelib/README
ext/pcre/pcrelib/RunTest
ext/pcre/pcrelib/chartables.c
ext/pcre/pcrelib/dftables.c
ext/pcre/pcrelib/dll.mk
ext/pcre/pcrelib/get.c
ext/pcre/pcrelib/internal.h
ext/pcre/pcrelib/maketables.c
ext/pcre/pcrelib/pcre-config.in
ext/pcre/pcrelib/pcre.c
ext/pcre/pcrelib/pcre.def
ext/pcre/pcrelib/pcre.h
ext/pcre/pcrelib/pcreposix.c
ext/pcre/pcrelib/pcreposix.h
ext/pcre/pcrelib/pcretest.c
ext/pcre/pcrelib/perltest
ext/pcre/pcrelib/pgrep.c
ext/pcre/pcrelib/study.c: Re-add.
* TODO: One off the list.
* ext/pcre/pcrelib/testdata/testinput1
ext/pcre/pcrelib/testdata/testinput2
ext/pcre/pcrelib/testdata/testinput3
ext/pcre/pcrelib/testdata/testinput4
ext/pcre/pcrelib/testdata/testoutput1
ext/pcre/pcrelib/testdata/testoutput2
ext/pcre/pcrelib/testdata/testoutput3
ext/pcre/pcrelib/testdata/testoutput4
ext/pcre/pcrelib/doc/Tech.Notes
ext/pcre/pcrelib/doc/pcre.3
ext/pcre/pcrelib/doc/pcre.html
ext/pcre/pcrelib/doc/pcre.txt
ext/pcre/pcrelib/doc/pcreposix.3
ext/pcre/pcrelib/doc/pcreposix.html
ext/pcre/pcrelib/doc/pcreposix.txt
ext/pcre/pcrelib/doc/pcretest.txt
ext/pcre/pcrelib/doc/perltest.txt
ext/pcre/pcrelib/doc/pgrep.1
ext/pcre/pcrelib/doc/pgrep.html
ext/pcre/pcrelib/doc/pgrep.txt: Added PCRE 3.01.
* ext/pcre/pcrelib/ChangeLog
ext/pcre/pcrelib/LICENCE
ext/pcre/pcrelib/Makefile.in
ext/pcre/pcrelib/README
ext/pcre/pcrelib/RunTest
ext/pcre/pcrelib/Tech.Notes
ext/pcre/pcrelib/chartables.c
ext/pcre/pcrelib/dftables.c
ext/pcre/pcrelib/dll.mk
ext/pcre/pcrelib/get.c
ext/pcre/pcrelib/internal.h
ext/pcre/pcrelib/maketables.c
ext/pcre/pcrelib/pcre.3
ext/pcre/pcrelib/pcre.3.html
ext/pcre/pcrelib/pcre.3.txt
ext/pcre/pcrelib/pcre.c
ext/pcre/pcrelib/pcre.def
ext/pcre/pcrelib/pcre.h
ext/pcre/pcrelib/pcreposix.3
ext/pcre/pcrelib/pcreposix.3.html
ext/pcre/pcrelib/pcreposix.3.txt
ext/pcre/pcrelib/pcreposix.c
ext/pcre/pcrelib/pcreposix.h
ext/pcre/pcrelib/pcretest.c
ext/pcre/pcrelib/perltest
ext/pcre/pcrelib/pgrep.1
ext/pcre/pcrelib/pgrep.1.html
ext/pcre/pcrelib/pgrep.1.txt
ext/pcre/pcrelib/pgrep.c
ext/pcre/pcrelib/study.c
ext/pcre/pcrelib/testinput1
ext/pcre/pcrelib/testinput2
ext/pcre/pcrelib/testinput3
ext/pcre/pcrelib/testinput4
ext/pcre/pcrelib/testoutput1
ext/pcre/pcrelib/testoutput2
ext/pcre/pcrelib/testoutput3
ext/pcre/pcrelib/testoutput4: *** empty log message ***
2000-04-11 Andi Gutmans <[email protected]>
* php.h
fopen-wrappers.c: - Turn off VIRTUAL_DIR by default
2000-04-11 Andrei Zmievski <[email protected]>
* TODO: another option
2000-04-11 Sam Ruby <[email protected]>
* sapi/servlet/servlet.c: Eliminate warning if virtual cwd is specified
2000-04-10 Zeev Suraski <[email protected]>
* fopen-wrappers.c: Fix another missing opened_path assignment
* NEWS
ext/com/COM.c: