forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
26836 lines (19156 loc) · 738 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-08-23 Andrei Zmievski <[email protected]>
* EXTENSIONS: ext/icap is obsolete.
2000-08-23 Daniel Beulshausen <[email protected]>
* php_modules.dsw: added curl, dbase and gettext to the project
* ext/curl/curl.dsp: win32 projectfile for the curl extension
2000-08-23 Sascha Schumann <[email protected]>
* NEWS: Add note about --with-kerberos
2000-08-23 Daniel Beulshausen <[email protected]>
* ext/dbase/dbase.dsp: win32 projectfile for the dbase extension
* ext/gettext/gettext.dsp: win32 projectfile fot the gettext extension
* sapi/aolserver/php4aolserver.dsp
sapi/apache/php4apache.dsp
sapi/isapi/php4isapi.dsp
sapi/nsapi/php4nsapi.dsp
sapi/servlet/servlet.dsp:
changed the output directorys from the windowsbuilds
* win32/php4dllts.dsp
win32/php4ts.dsp:
changed the intermediate output dir, to make it a bit cleaner
2000-08-23 Sascha Schumann <[email protected]>
* pear/Makefile.in:
phpextdist is located in $(srcdir), so don't try to install it from
$(builddir).
2000-08-23 Egon Schmid <[email protected]>
* ext/sockets/sockets.c: Changed long to int.
2000-08-23 Andrei Zmievski <[email protected]>
* NEWS: formatting.
2000-08-23 Sascha Schumann <[email protected]>
* ext/odbc/config.m4: -lt is preferred over \>
* ext/gd/config.m4: Fix library order for -lpng -lz.
PR: #3978
2000-08-23 Stanislav Malyshev <[email protected]>
* ext/standard/php_parsedate.h: Make parsedate build again
2000-08-23 Sterling Hughes <[email protected]>
* ext/sockets/sockets.c: A little condensing,
Add an additional check to make sure port is specified with
AF_INET in connect().
2000-08-23 Chris Vandomelen <[email protected]>
* ext/sockets/sockets.c:
Corrected bugs in php_if_connect() to make it work properly -- needed to
run htons() on the port number provided, and needed to perform DNS lookups
properly and store the results as expected.
2000-08-22 Dan Kalowsky <[email protected]>
* ext/odbc/config.m4
ext/odbc/php_odbc.h:
cleaned up the PHP/SOLID integration code, and corrected some minor assumptions on my part for the 3.5 EE systems. also removed a series of warnings on builds within the ODBC functions, and corrected header order. include of the SS_LINUX and SS_FBX defines, needed to make solid headers completely happy with the wchar.h situation.
THIS DOES NOT FIX BUG ID #4615
2000-08-22 Zeev Suraski <[email protected]>
* ext/standard/parsedate.y:
'const' is problematic in code in the final section of a Bison file (Bison defines
it away)
2000-08-22 Frank M. Kromann <[email protected]>
* ext/cpdf/cpdf.dsp: Adding ..\..\..\bindlib_w32 to include path
2000-08-22 Andrei Zmievski <[email protected]>
* ext/xml/php_xml.h
ext/xml/xml.c:
- Added ability for each xml_set_*_handler() function to take the
array($obj, 'method') syntax for the handler argument as well
as the normal function name.
* ext/standard/array.c:
- Updated array_walk() to be able to accept array($obj, 'method')
syntax for the walk function.
2000-08-22 Daniel Beulshausen <[email protected]>
* ext/pgsql/pgsql.dsp: some fixes
* php_modules.dsw: added cpdf and domxml
* ext/domxml/domxml.dsp: projectfile for the domxml extension
2000-08-22 Andi Gutmans <[email protected]>
* ext/mysql/libmysql/ctype-sjis.c
ext/mysql/libmysql/ctype-tis620.c
ext/mysql/libmysql/ctype-ujis.c
ext/mysql/libmysql/ctype.c
ext/mysql/libmysql/ctype_autoconf.c
ext/mysql/libmysql/ctype_extra_sources.c
ext/mysql/libmysql/raid.h
ext/mysql/libmysql/README
ext/mysql/libmysql/charset.c
ext/mysql/libmysql/config-win.h
ext/mysql/libmysql/ctype-big5.c
ext/mysql/libmysql/ctype-czech.c
ext/mysql/libmysql/ctype-euc_kr.c
ext/mysql/libmysql/ctype-gb2312.c
ext/mysql/libmysql/ctype-gbk.c: - Remove new libmysql files
* ext/mysql/libmysql/string.c
ext/mysql/libmysql/strinstr.c
ext/mysql/libmysql/strmake.c
ext/mysql/libmysql/strmov.c
ext/mysql/libmysql/strnmov.c
ext/mysql/libmysql/strto.c
ext/mysql/libmysql/strtoll.c
ext/mysql/libmysql/strtoull.c
ext/mysql/libmysql/strxmov.c
ext/mysql/libmysql/thr_alarm.h
ext/mysql/libmysql/thr_mutex.c
ext/mysql/libmysql/typelib.c
ext/mysql/libmysql/violite.c
ext/mysql/libmysql/violite.h
ext/mysql/libmysql/Makefile.in
ext/mysql/libmysql/array.c
ext/mysql/libmysql/bchange.c
ext/mysql/libmysql/bmove_upp.c
ext/mysql/libmysql/dbug.c
ext/mysql/libmysql/dbug.h
ext/mysql/libmysql/default.c
ext/mysql/libmysql/dll.c
ext/mysql/libmysql/errmsg.c
ext/mysql/libmysql/errmsg.h
ext/mysql/libmysql/errors.c
ext/mysql/libmysql/get_password.c
ext/mysql/libmysql/global.h
ext/mysql/libmysql/int2str.c
ext/mysql/libmysql/is_prefix.c
ext/mysql/libmysql/libmysql.c
ext/mysql/libmysql/list.c
ext/mysql/libmysql/longlong2str.c
ext/mysql/libmysql/m_ctype.h
ext/mysql/libmysql/m_string.h
ext/mysql/libmysql/mf_casecnv.c
ext/mysql/libmysql/mf_dirname.c
ext/mysql/libmysql/mf_fn_ext.c
ext/mysql/libmysql/mf_format.c
ext/mysql/libmysql/mf_loadpath.c
ext/mysql/libmysql/mf_pack.c
ext/mysql/libmysql/mf_path.c
ext/mysql/libmysql/mf_unixpath.c
ext/mysql/libmysql/mf_wcomp.c
ext/mysql/libmysql/mulalloc.c
ext/mysql/libmysql/my_alarm.h
ext/mysql/libmysql/my_alloc.c
ext/mysql/libmysql/my_compress.c
ext/mysql/libmysql/my_config.h
ext/mysql/libmysql/my_create.c
ext/mysql/libmysql/my_delete.c
ext/mysql/libmysql/my_dir.h
ext/mysql/libmysql/my_div.c
ext/mysql/libmysql/my_error.c
ext/mysql/libmysql/my_fopen.c
ext/mysql/libmysql/my_getwd.c
ext/mysql/libmysql/my_init.c
ext/mysql/libmysql/my_list.h
ext/mysql/libmysql/my_malloc.c
ext/mysql/libmysql/my_messnc.c
ext/mysql/libmysql/my_net.c
ext/mysql/libmysql/my_net.h
ext/mysql/libmysql/my_once.c
ext/mysql/libmysql/my_open.c
ext/mysql/libmysql/my_pthread.c
ext/mysql/libmysql/my_pthread.h
ext/mysql/libmysql/my_read.c
ext/mysql/libmysql/my_realloc.c
ext/mysql/libmysql/my_static.c
ext/mysql/libmysql/my_static.h
ext/mysql/libmysql/my_sys.h
ext/mysql/libmysql/my_tempnam.c
ext/mysql/libmysql/my_thr_init.c
ext/mysql/libmysql/my_write.c
ext/mysql/libmysql/mysql.h
ext/mysql/libmysql/mysql_com.h
ext/mysql/libmysql/mysql_version.h
ext/mysql/libmysql/mysqld_error.h
ext/mysql/libmysql/mysys_err.h
ext/mysql/libmysql/mysys_priv.h
ext/mysql/libmysql/net.c
ext/mysql/libmysql/password.c
ext/mysql/libmysql/safemalloc.c
ext/mysql/libmysql/str2int.c
ext/mysql/libmysql/strcend.c
ext/mysql/libmysql/strcont.c
ext/mysql/libmysql/strfill.c: - Try and revert libmysql for 4.0.2
2000-08-22 Daniel Beulshausen <[email protected]>
* ext/cpdf/cpdf.dsp: projectfile for the clibpdf extension
* php_modules.dsw: added interbase, pdf and sybase_ct
* ext/interbase/interbase.dsp: minor fixes
2000-08-22 Frank M. Kromann <[email protected]>
* win32/php4dll.dsp: Removing php_realpath.c from win32 project
2000-08-22 Daniel Beulshausen <[email protected]>
* ext/sybase_ct/sybase_ct.dsp:
projectfile to build the sybase_ct extension
* ext/pdf/pdf.dsp: projectfile to build the pdf extension
* sapi/aolserver/php4aolserver.dsp: little fixes
2000-08-22 MySQL Team <[email protected]>
* ext/mysql/libmysql/raid.h:
Interface for 'raid' files (ont in use by PHP)
* ext/mysql/libmysql/Makefile.in
ext/mysql/libmysql/README
ext/mysql/libmysql/array.c
ext/mysql/libmysql/bchange.c
ext/mysql/libmysql/bmove_upp.c
ext/mysql/libmysql/charset.c
ext/mysql/libmysql/config-win.h
ext/mysql/libmysql/ctype-big5.c
ext/mysql/libmysql/ctype-czech.c
ext/mysql/libmysql/ctype-euc_kr.c
ext/mysql/libmysql/ctype-gb2312.c
ext/mysql/libmysql/ctype-gbk.c
ext/mysql/libmysql/ctype-sjis.c
ext/mysql/libmysql/ctype-tis620.c
ext/mysql/libmysql/ctype-ujis.c
ext/mysql/libmysql/ctype.c
ext/mysql/libmysql/ctype_autoconf.c
ext/mysql/libmysql/ctype_extra_sources.c
ext/mysql/libmysql/dbug.c
ext/mysql/libmysql/dbug.h
ext/mysql/libmysql/default.c
ext/mysql/libmysql/dll.c
ext/mysql/libmysql/errmsg.c
ext/mysql/libmysql/errmsg.h
ext/mysql/libmysql/errors.c
ext/mysql/libmysql/get_password.c
ext/mysql/libmysql/global.h
ext/mysql/libmysql/int2str.c
ext/mysql/libmysql/is_prefix.c
ext/mysql/libmysql/libmysql.c
ext/mysql/libmysql/list.c
ext/mysql/libmysql/longlong2str.c
ext/mysql/libmysql/m_ctype.h
ext/mysql/libmysql/m_string.h
ext/mysql/libmysql/mf_casecnv.c
ext/mysql/libmysql/mf_dirname.c
ext/mysql/libmysql/mf_fn_ext.c
ext/mysql/libmysql/mf_format.c
ext/mysql/libmysql/mf_loadpath.c
ext/mysql/libmysql/mf_pack.c
ext/mysql/libmysql/mf_path.c
ext/mysql/libmysql/mf_unixpath.c
ext/mysql/libmysql/mf_wcomp.c
ext/mysql/libmysql/mulalloc.c
ext/mysql/libmysql/my_alarm.h
ext/mysql/libmysql/my_alloc.c
ext/mysql/libmysql/my_compress.c
ext/mysql/libmysql/my_config.h
ext/mysql/libmysql/my_create.c
ext/mysql/libmysql/my_delete.c
ext/mysql/libmysql/my_dir.h
ext/mysql/libmysql/my_div.c
ext/mysql/libmysql/my_error.c
ext/mysql/libmysql/my_fopen.c
ext/mysql/libmysql/my_getwd.c
ext/mysql/libmysql/my_init.c
ext/mysql/libmysql/my_list.h
ext/mysql/libmysql/my_malloc.c
ext/mysql/libmysql/my_messnc.c
ext/mysql/libmysql/my_net.c
ext/mysql/libmysql/my_net.h
ext/mysql/libmysql/my_once.c
ext/mysql/libmysql/my_open.c
ext/mysql/libmysql/my_pthread.c
ext/mysql/libmysql/my_pthread.h
ext/mysql/libmysql/my_read.c
ext/mysql/libmysql/my_realloc.c
ext/mysql/libmysql/my_static.c
ext/mysql/libmysql/my_static.h
ext/mysql/libmysql/my_sys.h
ext/mysql/libmysql/my_tempnam.c
ext/mysql/libmysql/my_thr_init.c
ext/mysql/libmysql/my_write.c
ext/mysql/libmysql/mysql.h
ext/mysql/libmysql/mysql_com.h
ext/mysql/libmysql/mysql_version.h
ext/mysql/libmysql/mysqld_error.h
ext/mysql/libmysql/mysys_err.h
ext/mysql/libmysql/mysys_priv.h
ext/mysql/libmysql/net.c
ext/mysql/libmysql/password.c
ext/mysql/libmysql/safemalloc.c
ext/mysql/libmysql/str2int.c
ext/mysql/libmysql/strcend.c
ext/mysql/libmysql/strcont.c
ext/mysql/libmysql/strfill.c
ext/mysql/libmysql/string.c
ext/mysql/libmysql/strinstr.c
ext/mysql/libmysql/strmake.c
ext/mysql/libmysql/strmov.c
ext/mysql/libmysql/strnmov.c
ext/mysql/libmysql/strto.c
ext/mysql/libmysql/strtoll.c
ext/mysql/libmysql/strtoull.c
ext/mysql/libmysql/strxmov.c
ext/mysql/libmysql/thr_alarm.h
ext/mysql/libmysql/thr_mutex.c
ext/mysql/libmysql/typelib.c
ext/mysql/libmysql/violite.c
ext/mysql/libmysql/violite.h:
New files for MySQL 3.23.23 client library. New files are for qouting
using different character sets.
2000-08-22 Sascha Schumann <[email protected]>
* sapi/aolserver/README
sapi/aolserver/aolserver.c:
Disable php_value and add note about reliability
* TODO: Add note about need to fix INI system
* sapi/aolserver/README: AOLserver CVS uses PREFIX.
* sapi/pi3web/pi3web_sapi.c
sapi/aolserver/aolserver.c: Set file_handle.opened_path to NULL
* INSTALL: Add note about installing PHP on web servers other than Apache.
2000-08-22 Andi Gutmans <[email protected]>
* ext/gd/gd.c: - Cleanup imagetransparent in the GD library
2000-08-22 Chuck Hagenbuch <[email protected]>
* ext/imap/php_imap.c:
Fix a crash in imap_fetchheader(). FT_PREFETCHTEXT isn't the only flag that
you can pass to mail_fetchheader_full().
2000-08-22 Rasmus Lerdorf <[email protected]>
* configure.in: Slight Darwin tweak from Fred
2000-08-21 Daniel Beulshausen <[email protected]>
* sapi/apache/php4apache.dsp:
updated project to work with readdir.h rev.1.5 from apache cvs
* win32/php4ts.dsw:
updated the projectfile to build the aolserver and nsapi modules
* sapi/aolserver/php4aolserver.dsp:
added the vs6 projectfile for the aolserver
2000-08-21 Sascha Schumann <[email protected]>
* sapi/thttpd/README:
thttpd/PHP verified to run IMP 2.2.0 without any hitches.
2000-08-21 Torben Wilson <[email protected]>
* NEWS:
NEWS update for file-function segfault fix.
* ext/standard/file.c:
Fixed segfault with fgets(), fgetcsv(), fgetss(), and fread() when
called with negative length argument.
2000-08-21 Sam Ruby <[email protected]>
* sapi/servlet/servlet.c: Keep servlet working...
2000-08-21 Sascha Schumann <[email protected]>
* ext/snmp/Makefile.in: Remove extra tab
2000-08-21 Chuck Hagenbuch <[email protected]>
* pear/DB/ibase.php
pear/DB/msql.php
pear/DB/mssql.php
pear/DB/mysql.php
pear/DB/oci8.php
pear/DB/odbc.php
pear/DB/pgsql.php
pear/DB/sybase.php:
make the definition of connect() consistent - always take the $dsn as a
reference.
* pear/DB.php
pear/DB/common.php:
Make the DB classes work with call-time pass-by-reference disabled.
2000-08-21 Stanislav Malyshev <[email protected]>
* ext/gd/gd.c: Fix crash in one-argument imagecolortransparent
* ext/standard/parsedate.y: Fix win32 build
2000-08-21 Sascha Schumann <[email protected]>
* ext/mcal/php_mcal.c
ext/standard/md5.c
ext/standard/md5.h
ext/standard/php_global.h
ext/icap/php_icap.c:
Get rid of php_global.h and the associated data types UINT4/_POINTER.
We use php_uint32 now globally.
Also removed K&R support from md5.[ch].
* main/win95nt.h: The macro CONVERT_TO_WIN_FS is not used anywhere.
* main/main.c
main/php.h
main/php_ini.c
main/php_ini.h
main/php_ticks.c
main/php_variables.c
ext/standard/basic_functions.h
ext/standard/crc32.c
ext/standard/datetime.c
ext/standard/info.c
ext/standard/info.h
ext/standard/levenshtein.c
ext/standard/parsedate.y
ext/standard/php_parsedate.h
main/fopen-wrappers.c: Cleaning up some mess
2000-08-21 Uwe Steinmann <[email protected]>
* ext/fdf/fdf.c
ext/fdf/php_fdf.h: - added function fdf_set_javascript_action()
2000-08-21 Derick Rethans <[email protected]>
* ext/mcrypt/config.m4: - Reversed last 'fix'
2000-08-21 Andi Gutmans <[email protected]>
* main/fopen-wrappers.c:
- Remove old/deprecated version of expand_filepath
2000-08-21 Rasmus Lerdorf <[email protected]>
* php.ini-optimized:
Delete this suggestion as it was leading newbie users to use this file
without understanding what they were doing. Experienced users will find
and use this file on their own.
2000-08-21 Sascha Schumann <[email protected]>
* sapi/thttpd/thttpd_patch:
Move thttpd_php_init() call to httpd_initialize().
Otherwise, some init stuff was done twice (like resetting the
known_post_content_types hash table which caused post requests
to fail).
2000-08-20 Zeev Suraski <[email protected]>
* win32/php4dllts.dsp: Fix Win32 build
* ext/session/mod_files.c
sapi/pi3web/pi3web_sapi.c: Fix build
2000-08-20 Andi Gutmans <[email protected]>
* main/fopen-wrappers.c
main/main.c
main/php.h: - Change PHP_SEPARATOR to PHP_DIR_SEPARATOR
* main/php_virtual_cwd.c:
- Checking for ".." isn't enough. include_once() could mess up even if both
- names didn't include ".." but were referenced different directories which
- were symlinked to each other.
2000-08-20 Chris Vandomelen <[email protected]>
* ext/sockets/sockets.c:
Added another bug fix to detect for negative values being passed into the
fd_*() functions, as passing negative values would cause PHP to segfault.
2000-08-20 Stig Venaas <[email protected]>
* ext/ldap/ldap.c: Added Oracle LDAP SDK SSL support
2000-08-20 Andi Gutmans <[email protected]>
* main/main.c
main/php_virtual_cwd.c
main/php_virtual_cwd.h:
- Sascha's patch should make PHP in VIRTUAL_DIR mode also change to the
- right directory so this shouldn't be needed anymore.
2000-08-20 Derick Rethans <[email protected]>
* ext/mcrypt/config.m4: - Fix for bug #6263
2000-08-20 Chuck Hagenbuch <[email protected]>
* pear/Net/Socket.php:
remove call-time pass-by-reference semantics from (p)fsockopen - works fine
without them.
2000-08-20 Stanislav Malyshev <[email protected]>
* ext/standard/basic_functions.c: Fix by-reference passing for scanf's
* ext/xml/xml.c: Fix XML by-reference passing
2000-08-20 Sascha Schumann <[email protected]>
* ext/standard/info.c: Fix numerus of SAPI Modules title
* sapi/apache/mod_php4.c
sapi/isapi/php4isapi.c
sapi/pi3web/pi3web_sapi.c
sapi/roxen/roxen.c
main/main.c:
The status quo in PHP is that the current directory is initialized
to the directory where the executing script is located.
Since this needs to be implemented for all SAPI modules anyway, this
change moves the functionality to php_execute_script() and gets rid
of the per-module code.
* main/SAPI.c
main/SAPI.h
sapi/apache/mod_php4.c:
Use size_t as parameter type in the getenv member of struct sapi_module
* main/php_virtual_cwd.c
main/php_virtual_cwd.h: const'ify virtual-cwd API
* ext/session/mod_files.c
main/fopen-wrappers.c
main/php.h:
Provide PHP_SEPARATOR which expands to the default directory separator
on the target platform.
2000-08-20 Stanislav Malyshev <[email protected]>
* ext/standard/file.c: Fix fgetc (#6259) and ftell error condition returns
2000-08-20 Sascha Schumann <[email protected]>
* main/php_virtual_cwd.h: Fix prototype of virtual_real_chdir_file.
* main/php.h
main/php_virtual_cwd.c
main/php_virtual_cwd.h:
Add virtual_real_chdir_file. Silly name for a useful function.
2000-08-20 Sterling Hughes <[email protected]>
* ext/sockets/php_sockets.h
ext/sockets/sockets.c: A Whole buncha stuff, mostly bug fixing...
- Make constants case-sensitive, conforming with the rest of PHP &
the C API.
- Make module compatible with thread safety features.
- open_listen_sok() -> open_listen_sock()
- Remove ext_skel comments
- Get rid of the ZVAL macro and replace with the correct Z_*_*
macros
- declare all functions local to the file as static.
- Remove empty PHP_MSHUTDOWN() function.
- Removed confirm_sockets_compiled()
- Changed RETVAL_* macro's to RETURN_* macro's eliminating errors
with incorrect return values and a potential leak/crash or two.
- functions that return void, actually return void
- Replaced 'long' in the prototypes with 'int'
- Fixed fd_zero() function, it gave a WRONG_PARAM_COUNT when you
gave it the proper parameter count.
- Changed the way an arbitrary number of parameters were accessed
from build_iovec() to use the Zend API.
- Added socketpair() and shutdown() functions.
2000-08-20 Sascha Schumann <[email protected]>
* sapi/thttpd/thttpd_patch:
Execute PHP scripts everywhere (not only in the top-level directory)
* build/rules_common.mk: Remove -DHAVE_CONFIG_H. It ain't used anywhere.
2000-08-20 Sterling Hughes <[email protected]>
* ext/curl/curl.c
ext/curl/php_curl.h: Bunch o' changes..
- Add the ability to return the web page into a variable
by setting the CURLOPT_RETURNTRANSFER constant to 1.
- Make everything conform to the naming guidelines.
- Delete the resource id from the file_id table when a
resource is closed.
2000-08-20 Sascha Schumann <[email protected]>
* ext/standard/formatted_print.c: Make use of zend_isinf and zend_isnan.
* build/buildcheck.sh
build/fastgen.sh: Add/update license
* build/build.mk
build/build2.mk
build/dynlib.mk
build/library.mk
build/ltlib.mk
build/program.mk
build/rules.mk
build/rules_common.mk
build/rules_pear.mk
pear/Makefile.in
pear/phpize.in
dynlib.m4: Relicense build-related files under the PHP License
Move common make rules to rules_common.mk. This gets rid of the duplicated
stuff in rules.mk/rules_pear.mk.
* ext/standard/file.c
main/Makefile.in
main/fopen-wrappers.c
main/php_realpath.c
main/php_realpath.h: Remove php_realpath from build.
It was broken and should not be used in any way.
2000-08-19 Jesus M. Castagnetto <[email protected]>
* ext/standard/php_math.h: Added some more predefined constants
2000-08-19 Frank M. Kromann <[email protected]>
* ext/standard/file.c: We only need winsock.h one time
* win32/.cvsignore: Adding ignore file for Win32
* win32/php4.dsw: Fixing paths to Zend and libmysql
* win32/php4dll.dsp:
Fixing include path for compiling non thread safe php.exe
2000-08-19 Stig Venaas <[email protected]>
* NEWS: Note about Oracle LDAP SDK support. Should I not say experimental?
2000-08-19 Zeev Suraski <[email protected]>
* NEWS
ext/standard/basic_functions.c
ext/standard/file.c: - Update NEWS
- Fix non ZTS Windows build
* NEWS: Update NEWS
* main/SAPI.c:
Avoid an endless loop situation in case of an error situation while sending headers
2000-08-19 Stig Venaas <[email protected]>
* ext/ldap/config.m4
ext/ldap/php_ldap.h: Adding Oracle LDAP SDK support
2000-08-18 Andi Gutmans <[email protected]>
* main/fopen-wrappers.c: - Centralize more fopen-wrappers functionality.
2000-08-18 Frank M. Kromann <[email protected]>
* ext/mssql/mssql.dsp
ext/mssql/mssql_win32_howto.txt: Adding howto file for MS SQL
2000-08-18 Chuck Hagenbuch <[email protected]>
* ext/imap/php_imap.c:
use estrndup and efree to hopefully avoid both munging of arguments and
leaking memory.
2000-08-18 Ben Mansell <[email protected]>
* sapi/isapi/php4isapi.c:
REQUEST_URI is a handy server variable, lets pass it onto ISAPI/PHP
2000-08-18 Sascha Schumann <[email protected]>
* ext/standard/url_scanner.c: Add necessary *_FETCH() macros
2000-08-18 Sterling Hughes <[email protected]>
* ext/standard/string.c:
* ext/curl/curl.c
ext/curl/php_curl.h: Purely cosmetic.
* ext/standard/string.c: Fix #6234
2000-08-18 Hartmut Holzgraefe <[email protected]>
* ext/standard/array.c:
typo fix in array_diff error message, fixes bug #6236
* ext/standard/array.c: minor typo fix in proto
2000-08-17 Sam Ruby <[email protected]>
* sapi/servlet/servlet.c:
Reorder call to ELS_FETCH to be after declarations
2000-08-17 Andrei Zmievski <[email protected]>
* ext/pcre/php_pcre.c:
Reverting the pemalloc -> malloc change until we figure out why it breaks.
* ext/pcre/php_pcre.c: No need to have persistent allocation.
2000-08-17 Chuck Hagenbuch <[email protected]>
* ext/imap/php_imap.c:
prevent mail_criteria from munging the variable passed in containing the
query - just had to add a cpystr(). if this isn't the right fix, let me
know, but it does work.
2000-08-17 Ben Mansell <[email protected]>
* sapi/isapi/php4isapi.c:
(send_headers) Removed code freeing http_status_line, this is performed
in sapi_send_headers()
2000-08-17 Hartmut Holzgraefe <[email protected]>
* ext/standard/url_scanner.c: additional include should fix bug #6086
2000-08-17 Sascha Schumann <[email protected]>
* pear/Makefile.in:
Fix dependency. PEAR.php needs to be created before it can be installed.
2000-08-17 Sam Ruby <[email protected]>
* ext/java/java.c
ext/java/java.dsp
sapi/servlet/servlet.dsp:
Better error reporting when dll/shared library is not able to be loaded.
Submitted by: Bård Farstad <[email protected]>
2000-08-17 Stanislav Malyshev <[email protected]>
* ext/standard/string.c: Fix chunk_split (#6208)
2000-08-17 Andi Gutmans <[email protected]>
* ext/curl/curl.c
win32/php4dllts.dsp: - It should be #ifdef PHP_WIN32
2000-08-17 Sterling Hughes <[email protected]>
* ext/curl/curl.c
ext/curl/php_curl.h: ts issues.
2000-08-16 Andi Gutmans <[email protected]>
* main/fopen-wrappers.c
main/fopen-wrappers.h:
- The beginning of an attempt to cleanup fopen-wrappers.
- I started with trying to localize the V_FOPEN's so that we can have a
- version which won't really open the file for include_once/require_once to
- work faster and have less chance of a race which would cause a fd leak.
- What I did will, therefore, change but I want to do this step by step
- because the code is extremley messy so first of all I want to make sure
- that the isolating of the V_FOPEN code doesn't break anything.
- How about moving URL stuff out of this file?
- php_fopen_url_wrapper() copy and pasted the second part of
- php_fopen_wrapper() (incorrectly). Please try not to copy&paste code but
- centralize functionality. Need to think of a nice way to nuke one of the
- copies and have both functions use the same one.
2000-08-16 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c: compile fix
2000-08-16 Hartmut Holzgraefe <[email protected]>
* ext/standard/assert.c: proto fixed
2000-08-16 Jouni Ahto <[email protected]>
* ext/pgsql/pgsql.c:
- Return NULL type when column is NULL, now that we have it in PHP4.
- Fixed a bug in handling NULL columns, PQgetvalue() doesn't return a NULL
pointer in this case, but a pointer to a string of 0 length...
2000-08-15 Sascha Schumann <[email protected]>
* build/rules.mk: Change the C++ extension to .cpp
2000-08-15 Uwe Steinmann <[email protected]>
* ext/fdf/fdf.c: - Inserted constants for fdf flags
2000-08-15 Sterling Hughes <[email protected]>
* ext/swf/php_swf.h
ext/swf/swf.c: Fix stdout support with the swf extension.
2000-08-15 Sascha Schumann <[email protected]>
* main/main.c:
Fix varargs handling. The assignments are not necessary at all and
cause problems on various platforms, so we get rid of them.
2000-08-15 Sterling Hughes <[email protected]>
* ext/curl/php_curl.h: Leftovers...
* ext/curl/curl.c: Add Win32 support for cURL.
* ext/curl/curl.c
ext/curl/php_curl.h: This fixes to problems:
- Apache not having the output go to stdout in some cases.
- Output being displayed before the header is displayed.
And causes the following:
- *Slightly* slower cURL transfers.
2000-08-15 Zeev Suraski <[email protected]>
* main/main.c: Sync with Zend
2000-08-15 Derick Rethans <[email protected]>
* ext/mcrypt/mcrypt.c: - Clearified which version of libmcrypt is enabled
2000-08-15 Stanislav Malyshev <[email protected]>
* ext/standard/basic_functions.c:
Fix byteorder for il2long and long2ip (#6159)
2000-08-15 David Croft <[email protected]>
* php.ini-dist
php.ini-optimized:
renamed ini section, quoted default host and tabulated.
* ext/pfpro/pfpro.c
ext/pfpro/php_pfpro.h:
display ini file entries on phpinfo(), unregister them on shutdown
numeric ini file entries stored as ints
removed unnecessary casts from PFPROG()
pval -> zval
2000-08-14 Brendan W. McAdams <[email protected]>
* ext/ccvs/TODO:
2000-08-14 Sascha Schumann <[email protected]>
* ext/mcrypt/mcrypt.c:
Move MCLS_FETCH() inside #if HAVE_LIBMCRYPT24. Fixes build against
libmcrypt 2.2.
* ext/mcrypt/mcrypt.c:
Remove unnecessary precompiler macros. The failure condition is catched
at configure time.
* ext/mcrypt/mcrypt.c:
Restrict INI entries when compiling against libmcrypt 2.4.
* ext/mcrypt/config.m4:
Fix check for libmcrypt in non-system library paths.
Fix case where neither libmcrypt 2.4.x and 2.2.x were found.
Fix library order (scope limited to static libraries)
2000-08-14 Stanislav Malyshev <[email protected]>
* ext/standard/formatted_print.c: Fix print length - again
* ext/standard/formatted_print.c:
Fix another crash with long formats (#6145)
* ext/standard/formatted_print.c: Fix non-numbers printing (#6142)
2000-08-14 David Croft <[email protected]>
* ext/standard/basic_functions.c: presumably this was wrong
2000-08-13 Sterling Hughes <[email protected]>
* ext/curl/curl.c
ext/curl/php_curl.h: - Fix spacing.
- Add error constants.
2000-08-13 Stanislav Malyshev <[email protected]>
* sapi/apache/sapi_apache.c: Fix opened_path init
* sapi/roxen/roxen.c
sapi/thttpd/thttpd.c
sapi/isapi/php4isapi.c
sapi/nsapi/nsapi.c
sapi/cgi/cgi_main.c
main/main.c: Fix zend_fiel_handle handling. Should fix URL include
and various opened_path inconsistencies.
2000-08-13 Sterling Hughes <[email protected]>
* ext/dbase/dbase.c: Fixed dbase_add_record.
2000-08-13 Derick Rethans <[email protected]>
* NEWS
ext/mcrypt/mcrypt.c
ext/mcrypt/php_mcrypt.h:
- Now using the better way of using INI directives
- Changed some warning/error messages to be more clear
2000-08-13 Andi Gutmans <[email protected]>
* NEWS: *** empty log message ***
2000-08-12 Egon Schmid <[email protected]>
* ext/sysvshm/sysvshm.c: Some protos corrected.
2000-08-12 Danny Heijl <[email protected]>
* ext/informix/ifx.ec:
- The destructor for a connection resource closed the current
connection if the connection had been closed before (danny)
2000-08-11 Derick Rethans <[email protected]>
* ext/standard/image.c: - Fixed warning under VC6
* ext/mcrypt/config.m4
ext/mcrypt/mcrypt.c
ext/mcrypt/php_mcrypt.h: Added support for libmcrypt 2.4.4
2000-08-11 David Croft <[email protected]>
* NEWS: Added news item for Andi's strncasecmp commit
2000-08-11 Danny Heijl <[email protected]>
* ext/informix/ifx.ec:
- restore ifx_close() to PHP3 behaviour for non-persistent connections
by silently reconnecting the existing link if closed earlier (danny)
2000-08-11 Zeev Suraski <[email protected]>
* ext/standard/basic_functions.c:
Make COM work in a multithreaded environment
2000-08-11 Hartmut Holzgraefe <[email protected]>
* ext/oci8/oci8.c: return type in proto for OCIError fixed
2000-08-11 dickmeiss <[email protected]>
* ext/yaz/php_yaz.c:
Added support for username, group and password for function yaz_connect.
2000-08-11 Andi Gutmans <[email protected]>
* NEWS: *** empty log message ***
2000-08-10 Andi Gutmans <[email protected]>