forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
8147 lines (5918 loc) · 212 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
1999-10-07 Andrei Zmievski <[email protected]>
* NEWS: NEWS update
* ChangeLog
MAINTAINERS
README.CVS-RULES
TODO:
New files.
Please read README.CVS-RULES!
1999-10-07 Sascha Schumann <[email protected]>
* sapi/cgi/config.m4
sapi/isapi/config.m4
sapi/apache/config.m4
configure.in: Remove SAPI_TARGET and use PHP_SAPI completely.
The target filename is now available as SAPI_PROGRAM, SAPI_SHARED, and
SAPI_STATIC.
1999-10-07 Andrei Zmievski <[email protected]>
* ChangeLog.3
ChangeLog.TODO
TODO-LeftOver: Some ChangeLog surgery.
1999-10-07 Sascha Schumann <[email protected]>
* ext/ext_skel: Add help to get people started.
1999-10-07 Andreas Karajannis <[email protected]>
* ext/odbc/php_odbc.c
ext/odbc/php_odbc.h:
Made henv a real global var. Seems to work basically when multithreaded
1999-10-07 Sascha Schumann <[email protected]>
* sapi/nsapi/.cvsignore
sapi/nsapi/Makefile.am
sapi/nsapi/aolserver.c
sapi/nsapi/config.m4: nsapi => aolserver
"NSAPI" suggests Netscape too often.
1999-10-07 Andrei Zmievski <[email protected]>
* ChangeLog
NEWS:
Renaming ChangeLog to NEWS. All future entries intended for public should
go into NEWS.
1999-10-07 Sascha Schumann <[email protected]>
* configure.in:
PHP_SHOW_LD_LIBRARY_PATH leaked out of my test environment.
1999-10-07 Uwe Steinmann <[email protected]>
* ext/pdf/pdf.c
ext/pdf/php3_pdf.h:
- new functions pdf_get_font, pdf_get_fontsize, pdf_get_fontname
1999-10-07 Andrei Zmievski <[email protected]>
* tests/testfunc: Test commit again.
* tests/testfunc: Testing commit.
* sapi/nsapi/.cvsignore
sapi/cgi/.cvsignore
sapi/isapi/.cvsignore
sapi/apache/.cvsignore
regex/.cvsignore
.cvsignore: Ignore generated files.
* ext/db/db.c: Put PLS_FETCH() in the correct place.
* ext/pcre/pcrelib/.cvsignore
ext/yp/.cvsignore
ext/zlib/.cvsignore
ext/sysvshm/.cvsignore
ext/wddx/.cvsignore
ext/sysvsem/.cvsignore
ext/sybase/.cvsignore
ext/sybase_ct/.cvsignore
ext/standard/.cvsignore
ext/session/.cvsignore
ext/snmp/.cvsignore
ext/pdf/.cvsignore
ext/pgsql/.cvsignore
ext/pcre/.cvsignore
ext/oracle/.cvsignore
ext/oci8/.cvsignore
ext/odbc/.cvsignore
ext/msql/.cvsignore
ext/mysql/.cvsignore
ext/mcrypt/.cvsignore
ext/mhash/.cvsignore
ext/mcal/.cvsignore
ext/interbase/.cvsignore
ext/ldap/.cvsignore
ext/imap/.cvsignore
ext/informix/.cvsignore
ext/icap/.cvsignore
ext/gettext/.cvsignore
ext/hyperwave/.cvsignore
ext/ftp/.cvsignore
ext/gd/.cvsignore
ext/fdf/.cvsignore
ext/filepro/.cvsignore
ext/dbase/.cvsignore
ext/db/.cvsignore
ext/dba/.cvsignore
ext/com/.cvsignore
ext/dav/.cvsignore
ext/bcmath/.cvsignore
ext/apache/.cvsignore
ext/aspell/.cvsignore
ext/ext_skel: Ignore generated files.
* request_info.c: Fix for #2457.
1999-10-07 Thies C. Arntzen <[email protected]>
* ext/db/db.c: fix ZTS compile
* ext/xml/xml.c
ChangeLog: fixed hopefully last XML problem. that one was hard!
1999-10-07 Sascha Schumann <[email protected]>
* sapi/nsapi/aolserver.c (php_ns_request_handler): call ts_free_thread() to clean up
1999-10-07 Thies C. Arntzen <[email protected]>
* ext/db/db.c: compiles again - and gets compiled
1999-10-07 Sascha Schumann <[email protected]>
* configure.in:
Pass -avoid-version when building a shared library to avoid problems
with "installing" symbolic links. We need to do this conditional, since
some libtool versions imply --disable-static with this option.
1999-10-07 Thies C. Arntzen <[email protected]>
* ChangeLog
php_content_types.c:
SET_VAR_STR* expect a emalloc'ed copy of the string!
1999-10-06 Sascha Schumann <[email protected]>
* patch-aa
buildconf:
Enable hardcoding runpaths for more platforms and allow Solaris' patch to run
buildconf.
* buildconf: Ignore already applied patches.
If somebody could make this work on Solaris, I'd appreciate it.
* buildconf
patch-aa
patch-ab
patch-ltmain.sh:
Allow *.a and *.o as libtool objects, and hardcode runpaths into
shared libraries.
(Both taken from FreeBSD's libtool port.)
1999-10-06 Andrei Zmievski <[email protected]>
* ext/standard/rand.c
ext/standard/php_rand.h:
Move random functions related defines into its own header file.
1999-10-06 Thies C. Arntzen <[email protected]>
* ChangeLog: *** empty log message ***
1999-10-06 Sascha Schumann <[email protected]>
* ext/informix/Makefile.am:
Fix "make clean". automake does not define an extra target for clean.
* patch-ltmain.sh:
unidiff isn't widely recognized, change to context format.
* ext/pgsql/pgsql.c
ChangeLog: Fixed pg_fetch_array() with three arguments.
Submitted by: [email protected]
1999-10-06 Thies C. Arntzen <[email protected]>
* ext/standard/basic_functions.c
ChangeLog: - replaced most getParamters against getParamtersEx calls
- removed ParamterPassedByReference where appropiate
1999-10-06 Sascha Schumann <[email protected]>
* buildconf: * --copy always, since we need to change ltmain.sh
* make patch on some obscure UNIX happy
1999-10-06 Uwe Steinmann <[email protected]>
* ext/hyperwave/hg_comm.c
ext/hyperwave/hw.c: - fixed some memory leaks
* ChangeLog: - as always forgot the Changelog entry
* SAPI.c
ext/standard/post.c:
- support for mimetype application/vnd.fdf needed by fdf module
(only active if fdf support is compiled in)
* ext/fdf/config.m4
ext/fdf/fdf.c: - fix to work with new version of FdfTk
1999-10-05 Sascha Schumann <[email protected]>
* Makefile.am:
FreeBSD's libtool port seems to contain a bug which is triggered by
-avoid-version. Removing it, since we don't absolutely need this option.
* buildconf
patch-ltmain.sh: Apply patch automatically at buildconf time
* ext/standard/dir.c: Fix typo (xml_globals => dir_globals)
1999-10-05 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c
ext/oci8/php3_oci8.h
ChangeLog:
use reference counting for emulating child<->parent (cursor<->connection) relationships.
* ext/standard/dir.c
ext/standard/php3_dir.h
ChangeLog: dir modules is now resourcified & thread-safe!
1999-10-05 Sascha Schumann <[email protected]>
* genfiles
makedist: Generate files for distribution (also adds parsedate.c)
* sapi/apache/config.m4: Fix typo.
* sapi/apache/config.m4:
Get rid of *_SHLIB variables. Our config scripts don't need Perl,
unfortunately the "apxs" utility does. Someone slap the creator of apxs.
1999-10-05 Andrei Zmievski <[email protected]>
* ext/wddx/wddx.c: Remove _A.
1999-10-05 Sascha Schumann <[email protected]>
* Makefile.am: Fix automake dependencies
1999-10-05 Thies C. Arntzen <[email protected]>
* ChangeLog: *** empty log message ***
* ext/oracle/oracle.c: fixed ora_close again
* ext/standard/basic_functions.c: fix some warnings
1999-10-05 Sascha Schumann <[email protected]>
* SAPI.c: Fix logic.
* ext/msql/Makefile.am: Use libtool
* buildconf: automake does not find all subdirectories automatically.
* regex/.cvsignore
regex/regex.h
.cvsignore
Makefile.am: * Get rid of libphp_util.la
* Don't build CGI from convenience library
* Add additional checks to regex.h (Apache build broke)
* buildconf: 100% speedup in buildconf.
We have a top-level Makefile.am, so find becomes superflicious
* configure.in: Build program static.
1999-10-05 Marko Karppinen <[email protected]>
* regex/regex.h: Fix a typo? (compile bustage on Solaris 2.6)
1999-10-04 Andrei Zmievski <[email protected]>
* ext/standard/basic_functions.h
ext/standard/basic_functions.c
ChangeLog: Taken from PHP3 source.
* tests/testobj: *** empty log message ***
* tests/testobj
tests/testfunc
tests/testarray: test
1999-10-04 Sascha Schumann <[email protected]>
* configure.in: -module is already set in Makefile.am
1999-10-04 Andrew Skalski <[email protected]>
* ext/ftp/ftp.c
ext/ftp/ftp.h
ext/ftp/php_ftp.c
ext/ftp/php_ftp.h: Added delete and rename functions.
1999-10-04 Sascha Schumann <[email protected]>
* sapi/README
ChangeLog
SAPI.c
configure.in: * Fix header("HTTP/..") behaviour
* Fix leak WRT http_status_line
* Update sapi/README
* Remove %PHP_OUTPUT_FILES sort
* Makefile.am: Move %(EXTRA_LIBS).
* php.sym: The .sym format isn't that complex.
* sapi/aolserver/Makefile.am
sapi/aolserver/Makefile.inc
sapi/aolserver/config.m4
sapi/nsapi/Makefile.am
sapi/nsapi/Makefile.inc
sapi/nsapi/config.m4
sapi/apache/Makefile.inc
sapi/apache/apache.c
sapi/apache/config.m4
sapi/apache/libphp4.module.in
sapi/apache/mod_php4.c
sapi/apache/sapi_apache.c
sapi/cgi/Makefile.am
sapi/cgi/Makefile.inc
sapi/isapi/Makefile.inc
sapi/Makefile.am
sapi/README
sapi/apache/Makefile.am
ext/zlib/Makefile.am
regex/Makefile.am
regex/Makefile.in
ext/xml/Makefile.am
ext/xml/config.m4
ext/xml/xml.c
ext/yp/Makefile.am
ext/sysvshm/Makefile.am
ext/wddx/Makefile.am
ext/sybase_ct/Makefile.am
ext/sysvsem/Makefile.am
ext/standard/Makefile.am
ext/standard/info.c
ext/sybase/Makefile.am
ext/session/Makefile.am
ext/snmp/Makefile.am
ext/pdf/Makefile.am
ext/pgsql/Makefile.am
ext/pgsql/config.m4
ext/pcre/config.m4
ext/pcre/pcrelib/Makefile.am
ext/oracle/Makefile.am
ext/pcre/Makefile.am
ext/mysql/php_mysql.h
ext/oci8/Makefile.am
ext/odbc/Makefile.am
ext/mhash/Makefile.am
ext/mysql/Makefile.am
ext/mysql/config.m4
ext/mysql/php_mysql.c
ext/mcal/Makefile.am
ext/mcrypt/Makefile.am
ext/interbase/Makefile.am
ext/ldap/Makefile.am
ext/imap/Makefile.am
ext/informix/Makefile.am
ext/hyperwave/Makefile.am
ext/icap/Makefile.am
ext/gd/Makefile.am
ext/gd/config.m4
ext/gettext/Makefile.am
ext/filepro/Makefile.am
ext/ftp/Makefile.am
ext/dbase/Makefile.am
ext/fdf/Makefile.am
ext/db/Makefile.am
ext/dba/Makefile.am
ext/bcmath/Makefile.am
ext/dav/Makefile.am
ext/apache/Makefile.am
ext/apache/config.m4
ext/aspell/Makefile.am
ext/Makefile.am
ext/ext_skel
Makefile.in
acinclude.m4
buildconf
configure.in
install-sh
php.map
php.sym
stub.c
Makefile.am
.cvsignore:
* archive-based convenience libraries completely replaced
with libtool components
* SAPI targets can enable thread-safe mode and define
shared/static/program build target
* all configure scripts use the same config.cache
* phplibdir is $(top_builddir)/modules to avoid
permission problems
* sapi/*/Makefile.inc are gone
* runpath handling cleaned up
* top-level Makefile.in obsoleted through Makefile.am
* --enable-versioning uses libtool's cleaner and more
portable -export-symbols feature
* sapi/aolserver/aolserver.c
sapi/nsapi/aolserver.c: Polish this.
1999-10-04 Thies C. Arntzen <[email protected]>
* ChangeLog: upgraded the former basic_functions.c code to use new API.
* ext/standard/reg.c
ChangeLog:
ereg now returns a continious array 0..9 again - empty values are returned as false.
i think this is *more* compatible with PHP3 - unless anybody really dislikes it i'd prefer it like this.
* main.c: i swear, i compiled (at least) before i committed!
1999-10-04 Sascha Schumann <[email protected]>
* sapi/apache/Makefile.inc:
Object files are usually not found in the srcdir.
1999-10-04 Thies C. Arntzen <[email protected]>
* main.c:
"cc -32" on IRIX 6.4 does not like (PHP_TRACK_VARS?"1":"0") - at least not if PHP_TRACK_VARS is 0.
1999-10-04 Sascha Schumann <[email protected]>
* acinclude.m4:
Fix typo. This caused strange errors when using --with-apxs.
1999-10-03 Andi Gutmans <[email protected]>
* ChangeLog: - Update changelog
1999-10-03 Sascha Schumann <[email protected]>
* configure.in: *_config are executable, thus we don't need %(SHELL)
* configure.in: Fix Apache-module build
1999-10-02 Andrei Zmievski <[email protected]>
* tests/testobj
tests/testarray2
tests/testarray
tests/testfe
tests/testfunc: test commit
* tests/testfunc: commit test
* tests/testfunc: test
* tests/testfunc: test commit
* tests/testfunc: test commit 1
* tests/testfunc: test commit
1999-10-02 Sascha Schumann <[email protected]>
* sapi/apache/Makefile.inc:
Use the already compiled `mod_php4.o'. This avoids the trouble
apxs has with VPATH builds (assumes source dir = build dir).
1999-10-01 Andi Gutmans <[email protected]>
* ChangeLog
php4dllts.dsp: - I forgot this
1999-10-01 Andrei Zmievski <[email protected]>
* ChangeLog
ext/standard/basic_functions.c
ext/standard/basic_functions.h: Added array_reverse() function.
* ext/standard/info.c
ext/wddx/php_wddx.h
ext/wddx/php_wddx_api.h
ext/wddx/wddx.c
ext/session/session.c
ext/pcre/php_pcre.c
ext/pcre/php_pcre.h: rename.
1999-10-01 Thies C. Arntzen <[email protected]>
* ext/xml/xml.c
ChangeLog: one zval fix - cleanups
1999-09-30 Andrei Zmievski <[email protected]>
* ChangeLog: test commit
* ChangeLog
ext/pcre/php_pcre.c:
preg_replace() now makes copies of array entries if arrays are passed in,
so that convert_to_string() preserves the originals. Is this the correct way to do it?
1999-09-30 Sascha Schumann <[email protected]>
* ext/gd/config.m4: Fix typo--GD_* is for shared build mode.
1999-09-30 Andrei Zmievski <[email protected]>
* ext/standard/string.c: Fix nl2br crash.
1999-09-30 Sascha Schumann <[email protected]>
* ChangeLog: Test commit II.
1999-09-30 Andrei Zmievski <[email protected]>
* setup: No need for this anymore.
1999-09-30 Sascha Schumann <[email protected]>
* ChangeLog: Test commit.
* configure.in
sapi/apache/config.m4:
Automatically add the SAPI target's Makefile to the list. This
frees us from doing this in each config.m4.
1999-09-30 Thies C. Arntzen <[email protected]>
* ChangeLog
ext/oci8/oci8.c
ext/oci8/php3_oci8.h:
major rework here - the refcount stuff gets better and better!
1999-09-29 Sascha Schumann <[email protected]>
* configure.in
ext/pcre/config.m4
sapi/apache/config.m4: * create Makefiles for ext, pcrelib, sapi/*
* copy files for Apache from $(srcdir)
* buildconf
configure.in: * VPATH work
* add "--local" switch to buildconf which only recrates the local
autoconf scripts.
1999-09-29 Charles Hagenbuch <[email protected]>
* ext/imap/imap.c: cjh: closing bug #2407.
1999-09-29 Thies C. Arntzen <[email protected]>
* ext/xml/xml.c: fix the order.. (thanx, andi)
1999-09-29 Sascha Schumann <[email protected]>
* sapi/apache/Makefile.inc: Fix a VPATH issue.
1999-09-29 Stig Bakken <[email protected]>
* ChangeLog: *** empty log message ***
* scripts/preconfig
sapi/apache/Makefile.am
sapi/apache/Makefile.inc
sapi/apache/apache.c
sapi/apache/config.m4
sapi/apache/libphp4.module.in
sapi/apache/mod_php4.c
Makefile.in
acconfig.h.in
acinclude.m4
buildconf
configure.in
configure.in.in
libphp4.module.in
sapi/apache/.cvsignore
.cvsignore:
Decent configure speedup. Makefiles are now generated only for the
extensions you are including. Got rid of configure.in.in.
Moved the last Apache-specific files into sapi/apache and made both
static and DSO build work again (it still doesn't run properly).
* ext/gd/config.m4:
The $shared variable should normally never be used outside of a call to
AC_ARG_(ENABLE|WITH). If it is necessary anyway, make sure it is set to
"no" before starting.
1999-09-29 Andrei Zmievski <[email protected]>
* ext/standard/url.c: Fix for my fix.
1999-09-29 Thies C. Arntzen <[email protected]>
* ChangeLog
ext/oci8/oci8.c
ext/oci8/php3_oci8.h: fixed crash in connection shutdown!
* ext/oci8/oci8.c: just some renaming.
1999-09-28 Andi Gutmans <[email protected]>
* tests/testfunc2
ext/standard/string.c: - Get rid of warning
1999-09-28 Stig Bakken <[email protected]>
* sapi/isapi/config.m4: disable --with-zeus for now.
* sapi/isapi/config.m4
sapi/isapi/php4isapi.c
INSTALL
acconfig.h.in:
Started working on the Zeus support. Zeus's ISAPI obviously differs from
Windows's, does someone have docs for the Windows API?
1999-09-28 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c: initialize OCI in threaded mode if ZTS is defined.
* ext/oracle/oracle.c: init in thread-safe mode if ZTS isdefined
* ext/oracle/oracle.c: fixed startup-deadlock.
* ext/xml/config.m4: found a typo!
1999-09-27 Andi Gutmans <[email protected]>
* php4ts.dsp: - Update project.
1999-09-27 Sascha Schumann <[email protected]>
* ext/standard/string.c: Make an extra copy of input parameter.
* Makefile.in
sapi/aolserver/Makefile.inc
sapi/nsapi/Makefile.inc: * include from $(srcdir)
* use proper target for nsapi
* configure.in.in:
Create directories, if they do not exist (for VPATH builds).
1999-09-27 Stig Bakken <[email protected]>
* sapi/README: added README file with very brief docs
* sapi/aolserver/.cvsignore
sapi/aolserver/Makefile.am
sapi/aolserver/Makefile.inc
sapi/aolserver/aolserver.c
sapi/aolserver/config.m4
sapi/cgi/.cvsignore
sapi/cgi/Makefile.am
sapi/cgi/Makefile.inc
sapi/cgi/cgi_main.c
sapi/cgi/config.h.in
sapi/cgi/config.m4
sapi/isapi/.cvsignore
sapi/isapi/Makefile.am
sapi/isapi/Makefile.inc
sapi/isapi/config.m4
sapi/isapi/php4isapi.c
sapi/isapi/php4isapi.def
sapi/isapi/php4isapi.dsp
sapi/nsapi/.cvsignore
sapi/nsapi/Makefile.am
sapi/nsapi/Makefile.inc
sapi/nsapi/aolserver.c
sapi/nsapi/config.m4
scripts/config-stubs
scripts/preconfig
Makefile.in
aolserver.c
cgi_main.c
configure.in.in
ext/apache/apache.c
header
main.c
mod_php4.c
mod_php4.exp
mod_php4.h
sapi/.cvsignore
sapi/Makefile.am
sapi/apache/.cvsignore
sapi/apache/Makefile.am
sapi/apache/Makefile.inc
sapi/apache/config.h.stub
sapi/apache/config.m4
sapi/apache/mod_php4.c
sapi/apache/mod_php4.exp
sapi/apache/mod_php4.h
ChangeLog: Generalized server-API build process on UNIX. Each SAPI
implementation now has its own directory under sapi/, just like
extensions have theirs under ext/. To make the final targets appear
in the main dir, the top-level Makefile includes sapi/NN/Makefile.inc
from the selected sapi backend. This is a plan Makefile stub without
any autoconf substitutions. Each SAPI backend also has its own
config.m4 like extensions (read at the end of diversion 2) and
config.h.stub files.
Each SAPI backend has to contain:
config.m4: just like for extensions, this file contains
autoconf/automake directives that end up in the configure script. The
only difference is that the sapi config.m4 files are read in diversion
(output block) 2 instead of 3. The sapi config.m4 files should set
two variables: PHP_SAPI (which sapi backend to choose) and SAPI_TARGET
(the name of the resulting library or program, previously BINNAME).
If they are not specified, they will default to "cgi" and "php",
respectively.
Makefile.inc: has to exist, has to define "INSTALL_IT" to the command
used to install the final target (or ":" for no operation). It also
has to define a plain Makefile rule (without autoconf substitutions)
to build $(SAPI_TARGET)
Makefile.am: just what you think. Make sure your target is called
"libphpsapi_NNN.a", where NNN is the value of PHP_SAPI.
Some testing and fixing probably remains. To make everything hang
together, I've done some ugly tricks that I can imagine causing some
problems. I've built and run the CGI version and built the Apache
DSO.
1999-09-27 Andrei Zmievski <[email protected]>
* ext/standard/url.c:
Fix for bug #2199. Redirect was returning http:// which resulted in a crash.
* ext/ext_skel: I will follow portability guidelines.
I will follow portability guidelines.
I will follow portability guidelines.
I will follow...
1999-09-27 Andrew Skalski <[email protected]>
* ext/ftp/ftp.c
ext/ftp/ftp.h
ext/ftp/php_ftp.c
ext/ftp/php_ftp.h: Added functions ftp_{pasv,size,mdtm,fget,fput}
PASV mode is now supported; file size and last-modified time can now
be fetched from servers that support them; files now may be stored to and
retrieved from open files, in addition to disk files.
1999-09-27 Andrei Zmievski <[email protected]>
* ext/ext_skel: Make it portable.
1999-09-27 Stig Bakken <[email protected]>
* acinclude.m4: added AC_SYS_LFS from fileutils
1999-09-26 Sascha Schumann <[email protected]>
* configure.in.in
Makefile.in:
Now thread safe version builds out of the box. libzend/TSRM
contain extra config scripts which pass the necessary libs back
to our Makefile.
* configure.in.in
Makefile.in: Use new tsrm_config script to determine libraries.
1999-09-26 Stig Bakken <[email protected]>
* configure.in.in:
Have to keep using AM_PROG_LIBTOOL to keep all automake versions happy.
1999-09-26 Sascha Schumann <[email protected]>
* acinclude.m4:
Avoid specifying standard paths. This might result in compiler problems
(see #1937, #2367)
* ext/gd/config.m4:
Expand relative paths properly, otherwise build process will fail.
* acinclude.m4: Do nothing, if PHP_RPATHS is empty.
* ChangeLog
acinclude.m4
configure.in.in: Disable rpaths optionally.
1999-09-25 Sascha Schumann <[email protected]>
* ChangeLog
aolserver.c: * Use per-thread structure for request data
* Update ChangeLog
* ext/session/session.c: Do not try to free NULLs.
* aolserver.c: * use faster Ns_ConnWrite()
* access cookies correctly
* set HTTP_* variables for script
* aolserver.c: * cleanup
* make cookies work
1999-09-25 Thies C. Arntzen <[email protected]>
* ChangeLog
ext/xml/xml.c:
fixed callback code -> now $parser is passed as a resource!
1999-09-25 Sascha Schumann <[email protected]>
* aolserver.c: * use consistent php_ns prefix
* improve configuration code
* shutdown SAPI/TSRM correctly
* ext/standard/info.c: Add entry for AOLserver.
* aolserver.c: * remove debugging message
* use SAPI's http response code
* improve POST read (still blocks in Ns_ConnRead, even if there is enough
data to read)
* improve config data handling
* ext/standard/dns.c
ext/standard/mail.c
ext/standard/rand.c
ext/standard/soundex.c
ext/standard/syslog.c: New Zend API
* ext/standard/string.c: Use new Zend API
1999-09-25 Andreas Karajannis <[email protected]>
* ChangeLog: *** empty log message ***
* ext/odbc/php_odbc.c: odbc now uses the new Zend function api
1999-09-25 Stefan Roehrich <[email protected]>
* ChangeLog
ext/zlib/zlib.c: Use new Zend API.
1999-09-25 Sascha Schumann <[email protected]>
* aolserver.c: - support POST and HEAD requests
- clean up module_main()
- allow arbitrary mappings
* Makefile.in
acconfig.h.in
aolserver.c
configure.in.in:
Initial AOLserver support. Note that the current way of creating
the shared library works only with GNU utilities. Some features
have to be added yet (i.e. POST and cookie support).
1999-09-24 Andrei Zmievski <[email protected]>
* ext/pcre/php_pcre.c
ext/standard/basic_functions.c
ChangeLog: - Updated array functions to use high-performance API
- Updated preg_split() to allow returning only non-empty pieces
* ChangeLog: *** empty log message ***
* ext/pcre/php_pcre.c
ChangeLog: Update to new high-performance function API.
1999-09-24 Sascha Schumann <[email protected]>
* ext/standard/base64.c
ext/standard/crypt.c
ext/standard/link.c
ext/standard/md5.c
ext/standard/microtime.c
ext/standard/uniqid.c
ext/standard/url.c: Use new Zend API.
* ext/gettext/gettext.c
ChangeLog
ext/sysvsem/sysvsem.c
ext/sysvshm/php3_sysvshm.h
ext/sysvshm/sysvshm.c: Use new Zend API and some minor cleanup.
1999-09-24 Andrei Zmievski <[email protected]>
* ChangeLog: *** empty log message ***
* ext/standard/var.c: Extended var_dump to handle IS_RESOURCE somewhat.
* ext/wddx/wddx.c
ChangeLog: Update WDDX for new high-performance function API.
1999-09-24 Thies C. Arntzen <[email protected]>
* ChangeLog: we want to know who to "blame";-)
* ChangeLog
ext/standard/info.c
ext/xml/xml.c: updated XML (only partly tested)
1999-09-24 Stig Bakken <[email protected]>
* ext/xml/Makefile.am
ext/xml/config.m4: more high-tech shared building
* ext/standard/string.c: kill another warning
* ext/standard/parsedate.y: kill warning
* configure.in.in:
set "phplibdir" in configure so it doesn't have to be set in Makefile.am
1999-09-24 Thies C. Arntzen <[email protected]>
* ChangeLog
ext/oracle/oracle.c: use getParameterEx
1999-09-24 Stig Bakken <[email protected]>
* strlcat.c
strlcpy.c:
* configure.in.in:
AM_PROG_LIBTOOL is obsolete in libtool 1.3.3, which we now require.
Using AC_PROG_LIBTOOL instead.
* buildconf:
Detect automake/libtool that are installed with different prefixes.
1999-09-24 Thies C. Arntzen <[email protected]>
* ext/xml/xml.c: fixed warning
1999-09-24 Zeev Suraski <[email protected]>
* ext/wddx/wddx.c
ext/xml/xml.c
ext/zlib/zlib.c: Compile fixes for WDDX, XML and Zlib (untested)
* ext/sybase_ct/php_sybase_ct.c:
This should make the Sybase CT module compile again (untested)
* ext/msql/php_msql.c:
This should make the mSQL module compile again (untested)
* ext/mysql/php_mysql.c
ChangeLog:
Ok guys, the prototype for zend_fetch_resource*() has changed - it now
accepts a zval ** instead of a zval *, to be suitable for use with the
getParametersEx() API.
You don't have to switch to the getParametersEx() API, but you will have to
go over your code and add &'s where it's applicable (of course, if you have
the mental strength to go over your code and convert it to use the Ex API,
it's best).
The MySQL module now uses the getParametersEx() API completely.
1999-09-23 Sascha Schumann <[email protected]>
* Makefile.in: Link with libtsrm.a, if thread-safety is chosen.
* configure.in.in: Exit, if subsequent configure scripts fail.
1999-09-23 Andrew Skalski <[email protected]>
* ext/ftp/php_ftp.c
ext/ftp/php_ftp.h: fixed php3 code problem
1999-09-23 Andrei Zmievski <[email protected]>
* ext/pcre/config.m4: Small clarification.
1999-09-23 Sascha Schumann <[email protected]>
* ext/standard/url_scanner.c:
This version is finally the standard one. The last one was created
using the 'nested ifs mode' which seems to be the source of the problem.