summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 1636d804f4bba1328d32f03738312b8f86325477 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
# +----------------------------------------------------------------------+
# | PHP HTML Embedded Scripting Language Version 3.0                     |
# +----------------------------------------------------------------------+
# | Copyright (c) 1997,1998 PHP Development Team (See Credits file)      |
# +----------------------------------------------------------------------+
# | This program is free software; you can redistribute it and/or modify |
# | it under the terms of one of the following licenses:                 |
# |                                                                      |
# |  A) the GNU General Public License as published by the Free Software |
# |     Foundation; either version 2 of the License, or (at your option) |
# |     any later version.                                               |
# |                                                                      |
# |  B) the PHP License as published by the PHP Development Team and     |
# |     included in the distribution in the file: LICENSE                |
# |                                                                      |
# | This program is distributed in the hope that it will be useful,      |
# | but WITHOUT ANY WARRANTY; without even the implied warranty of       |
# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        |
# | GNU General Public License for more details.                         |
# |                                                                      |
# | You should have received a copy of both licenses referred to here.   |
# | If you did not, or have any questions about PHP licensing, please    |
# | contact core@php.net.                                                |
# +----------------------------------------------------------------------+

#
# $Id$
#

prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
VPATH = @srcdir@
bindir = @bindir@
ZEND_DIR = $(srcdir)/libzend

CC = @CC@
AR = ar rc
BINNAME = @BINNAME@
INSTALL_IT = @INSTALL_IT@
INCLUDE = -I$(srcdir) -I. -I$(ZEND_DIR) @GDBM_INCLUDE@ @ORACLE_INCLUDE@ @APACHE_INCLUDE@ @FHTTPD_INCLUDE@ @ADA_INCLUDE@ @IODBC_INCLUDE@ @SYBASE_INCLUDE@ @SYBASE_CT_INCLUDE@ @MYSQL_INCLUDE@ @MSQL_INCLUDE@ @SOLID_INCLUDE@ @EMPRESS_INCLUDE@ @OPENLINK_INCLUDE@ @PGSQL_INCLUDE@ @LDAP_INCLUDE@ @VELOCIS_INCLUDE@ @CODBC_INCLUDE@ @GD_INCLUDE@ @IMAP_INCLUDE@ @ZLIB_INCLUDE@ @PDFLIB_INCLUDE@ @FDFLIB_INCLUDE@ @IFX_INCLUDE@ @SNMP_INCLUDE@ @IBASE_INCLUDE@
PROF_CFLAGS =
CFLAGS_SHLIB = @CFLAGS_SHLIB@
LDFLAGS_SHLIB = @LDFLAGS_SHLIB@
LDFLAGS_SHLIB_EXPORT = @LDFLAGS_SHLIB_EXPORT@
CPPFLAGS = @CPPFLAGS@
CFLAGS = @CFLAGS@ $(CFLAGS_SHLIB) $(CPPFLAGS) $(INCLUDE) @DEBUG_CFLAGS@ @STRONGHOLD@ $(PROF_CFLAGS)
LDFLAGS = @LDFLAGS@ $(LDFLAGS_SHLIB) $(LDFLAGS_SHLIB_EXPORT) -L$(ZEND_DIR)
REGCFLAGS = $(CFLAGS)
RANLIB = @RANLIB@
YACC = @YACC@
MAINT = @MAINT@
APXS = @APXS@
APXS_LDFLAGS = @APXS_LDFLAGS@
WARNING_LEVEL = @WARNING_LEVEL@

SOURCE = main.c internal_functions.c snprintf.c php3_sprintf.c \
       configuration-parser.c configuration-scanner.c request_info.c \
       safe_mode.c fopen-wrappers.c php3_realpath.c alloca.c output.c \
       php_ini.c
OBJS = main.o internal_functions.o snprintf.o php3_sprintf.o \
       configuration-parser.o configuration-scanner.o request_info.o \
       safe_mode.o fopen-wrappers.o php3_realpath.o alloca.o output.o \
       php_ini.o

FUNCTIONS_SOURCE = functions/adabasd.c functions/apache.c functions/fhttpd.c \
       functions/basic_functions.c \
       functions/crypt.c functions/datetime.c functions/db.c \
       functions/dbase.c functions/dir.c \
       functions/dl.c functions/dns.c functions/exec.c functions/file.c \
       functions/filepro.c functions/filestat.c \
       functions/formatted_print.c functions/fsock.c functions/gd.c \
       functions/head.c functions/html.c functions/image.c functions/imap.c\
       functions/link.c functions/mail.c functions/math.c functions/iptc.c \
       functions/md5.c functions/microtime.c functions/mime.c \
       functions/msql.c functions/mysql.c \
       functions/oracle.c functions/oci8.c functions/pack.c \
       functions/pageinfo.c functions/pgsql.c \
       functions/post.c functions/rand.c functions/reg.c \
       functions/solid.c functions/soundex.c \
       functions/string.c functions/syslog.c functions/type.c \
       functions/uniqid.c functions/sybase.c \
       functions/sybase-ct.c functions/url.c functions/base64.c \
       functions/info.c @BCMATH_SRC@ functions/xml.c \
       functions/unified_odbc.c functions/ldap.c functions/browscap.c \
       functions/velocis.c functions/gdttf.c functions/gdcache.c \
       functions/zlib.c functions/COM.c functions/ifx.c \
       functions/pdf.c functions/hw.c functions/hg_comm.c functions/dlist.c \
       functions/fdf.c \
       functions/snmp.c functions/var.c functions/interbase.c \
       functions/quot_print.c functions/cyr_convert.c \
       functions/sysvsem.c functions/sysvshm.c functions/dav.c

FUNCTIONS = $(FUNCTIONS_SOURCE:.c=.o)

LIBS = $(PHPLIBS)  @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@ @FHTTPD_LIB@ @DBASE_LIB@ @REGEX_LIB@ @DBM_LIB@ @ORACLE_LFLAGS@ @ORACLE_LIBS@ @IODBC_LFLAGS@ @IODBC_LIBS@ @SYBASE_LFLAGS@ @SYBASE_LIBS@ @SYBASE_CT_LFLAGS@ @SYBASE_CT_LIBS@ @MYSQL_LFLAGS@ @MYSQL_LIBS@ @MSQL_LFLAGS@ @MSQL_LIBS@ @ADA_LFLAGS@ @ADA_LIBS@ @SOLID_LIBS@ @EMPRESS_LIBS@ @OPENLINK_LFLAGS@ @OPENLINK_LIBS@ @PGSQL_LFLAGS@ @PGSQL_LIBS@ @LDAP_LFLAGS@ @LDAP_LIBS@ @VELOCIS_LIBS@ @CODBC_LFLAGS@ @CODBC_LIBS@ @IMAP_LIBS@ @GD_LIBS@ @ZLIB_LIBS@ @PDFLIB_LIBS@ @FDFLIB_LIBS@ @IFX_LFLAGS@ @IFX_LIBS@ @SNMP_LFLAGS@ @SNMP_LIBS@ @IBASE_LFLAGS@ @IBASE_LIBS@ @XML_LIBS@ @LIBS@

all: $(BINNAME)

php: $(OBJS) $(FUNCTIONS) @REGEX_LIB@ @FHTTPD_LIB@ @DBASE_LIB@$ $(ZEND_DIR)/libzend.a
	$(CC) $(CFLAGS) -o $(BINNAME) $(LDFLAGS) $(OBJS) $(FUNCTIONS) $(LIBS)

libphp3.a: $(OBJS) $(FUNCTIONS) @DBASE_LIB@
	$(AR) $(BINNAME) $(OBJS) $(FUNCTIONS) @DBASE_LIB@
	$(RANLIB) $(BINNAME)

libmodphp3.a: $(OBJS) $(FUNCTIONS) @DBASE_LIB@
	$(AR) $(BINNAME) $(OBJS) $(FUNCTIONS) @DBASE_LIB@
	$(RANLIB) $(BINNAME)

libmodphp3-so.a: $(OBJS) $(FUNCTIONS) @DBASE_LIB@
	$(AR) libmodphp3-so.a $(OBJS) $(FUNCTIONS) @DBASE_LIB@
	$(RANLIB) libmodphp3-so.a

libphp3.so: mod_php3.c libmodphp3-so.a
	$(APXS) -c -o libphp3.so $(APXS_LDFLAGS) mod_php3.c libmodphp3-so.a

docs:
	cd doc; $(MAKE)

regex/libregex.a:
	(cd regex; $(MAKE) lib)

dbase/libdbf.a:
	(cd dbase; $(MAKE))

functions/ifx.c: functions/ifx.ec
	(if test @INFORMIXDIR@; then esql -e @IFX_ESQL_FLAGS@ functions/ifx.ec; mv ifx.c functions; else touch functions/ifx.c; fi)

configuration-parser.h configuration-parser.c:	$(srcdir)/configuration-parser.y
	bison -p cfg -v -d $(srcdir)/configuration-parser.y -o configuration-parser.c

configuration-scanner.o:
	$(CC) $(CFLAGS) -w$(WARNING_LEVEL) -c configuration-scanner.c

configuration-scanner.c:	$(srcdir)/configuration-scanner.l
	flex -Pcfg -oconfiguration-scanner.c -i $(srcdir)/configuration-scanner.l

clean:  
	-rm -f libphp3.a libmodphp3.a php *.o
	-rm -f $(FUNCTIONS) functions/ifx.c
	-rm -f test/php.desc test/php.in test/php.out test/php.test
	-rm -f test/a.tmp test/b.tmp test/test.dbm*
	(cd dbase; $(MAKE) clean)

distclean: clean
	-rm -f *-parser.[ch] *-scanner.c *.output
	-rm -f config.status config.cache config.log
	-rm -f Makefile Makefile.depend config.h build-defs.h
	-rm -f libphp3.module stamp-h
	-rm -f regex/*.o regex/*.a regex/*.ih
	-rm -f dbase/*.o dbase/*.a
	-rm -f doc/checkdoc doc/funcparse doc/version.ent
	-rm -f do-conf test/test.log extra/gd/bdf2gdfont
	-rm -f doc/Makefile regex/Makefile dbase/Makefile

bench: $(BINNAME)
	./$(BINNAME) -c. tests/bench.phtml

# can't use a single rule for this because 'test' is a directory
test: regression
regression check: $(BINNAME)
	cd test && ./testall

config.status: configure
	./config.status --recheck

build-defs.h config.h: stamp-h
stamp-h: config.h.in config.status
	CONFIG_FILES='build-defs.h stamp-h' ./config.status

Makefile: Makefile.in config.status
	CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status

#
# You must use '--enable-maintainer-mode' with configure to enable
# these rules, which requires autoconf be installed.
#
configure: @MAINT@ configure.in aclocal.m4
	cd $(srcdir) && autoconf

config.h.in: @MAINT@ stamp-h.in
stamp-h.in: configure.in aclocal.m4 acconfig.h
	cd ${srcdir} && autoheader && touch ${srcdir}/stamp-h.in

install: $(BINNAME)
	$(INSTALL_IT)

indent:	clean
	indent -v -kr -cli4 -ts4 \
	-T pval -T HashTable -T Bucket -T Token -T TokenCache -T TokenCacheManager \
	-T switch_expr -T internal_function -T control_structure_data \
	-T MemoryHashTable -T MemoryBucket \
	-T pvalue_value -T Stack *.c *.h functions/*.c functions/*.h
	rm -f *~ functions/*~

.c.o:
	$(CC) $(CFLAGS) -c $< -o $@
	@bn=`echo $@ | sed -e 's#functions/##'`; test -f $@ || \
	  (test "$@" != "$$bn" && test -f "$$bn" && mv $$bn $@)

functions/number.o: functions/number.c
	$(CC) $(CFLAGS) -w$(WARNING_LEVEL) -c $< -o $@
	@bn=`echo $@ | sed -e 's#functions/##'`; test -f $@ || \
	  (test "$@" != "$$bn" && test -f "$$bn" && mv $$bn $@)

parser-scanner:	configuration-parser.c configuration-scanner.c

depend:	parser-scanner
	$(CC) $(CFLAGS) -MM $(SOURCE) | perl -pe 's|regex/regex.h||;' > Makefile.depend
	$(CC) $(CFLAGS) -MM $(FUNCTIONS_SOURCE) | perl -pe 's|^(.+\.o)|functions/$$1|; s|regex/regex.h||;' >> Makefile.depend

main.o: main.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h build-defs.h php_ini.h main.h \
 libzend/zend_globals.h libzend/zend_ptr_stack.h \
 libzend/zend_compile.h libzend/zend-parser.h \
 libzend/zend_execute.h control_structures.h \
 functions/basic_functions.h functions/info.h functions/head.h \
 functions/post.h functions/type.h snprintf.h logos.h
internal_functions.o: internal_functions.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h internal_functions_registry.h \
 libzend/zend_compile.h libzend/zend-parser.h \
 libzend/zend_globals.h libzend/zend_ptr_stack.h \
 libzend/zend_execute.h functions/php3_ifx.h \
 functions/php3_ldap.h functions/php3_mysql.h functions/php3_bcmath.h \
 functions/php3_msql.h functions/basic_functions.h functions/phpmath.h \
 functions/php3_string.h functions/php3_oci8.h functions/oracle.h \
 functions/base64.h functions/php3_dir.h functions/dns.h \
 functions/php3_pgsql.h functions/php3_velocis.h \
 functions/php3_sybase.h functions/php3_sybase-ct.h functions/reg.h \
 functions/php3_mail.h functions/imap.h functions/md5.h \
 functions/global.h functions/php3_gd.h functions/html.h \
 functions/dl.h functions/head.h functions/post.h functions/exec.h \
 functions/php3_solid.h functions/adabasd.h functions/file.h \
 functions/dbase.h functions/hw.h functions/filepro.h functions/db.h \
 functions/php3_syslog.h functions/php3_filestat.h \
 functions/php3_browscap.h functions/pack.h \
 functions/php3_unified_odbc.h dl/snmp/php3_snmp.h \
 functions/php3_zlib.h functions/php3_COM.h functions/php3_interbase.h \
 functions/php3_xml.h functions/php3_pdf.h functions/php3_fdf.h \
 functions/php3_sysvsem.h functions/php3_sysvshm.h \
 functions/php3_dav.h
snprintf.o: snprintf.c config.h
php3_sprintf.o: php3_sprintf.c config.h
configuration-parser.o: configuration-parser.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/dl.h functions/file.h \
 functions/php3_browscap.h libzend/zend_extensions.h \
 libzend/zend_compile.h libzend/zend-parser.h \
 libzend/zend_globals.h libzend/zend_ptr_stack.h \
 libzend/zend_execute.h
configuration-scanner.o: configuration-scanner.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h configuration-parser.h
request_info.o: request_info.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h
safe_mode.o: safe_mode.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/pageinfo.h
fopen-wrappers.o: fopen-wrappers.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h php3_realpath.h functions/head.h \
 functions/url.h functions/base64.h functions/fsock.h \
 functions/php3_string.h libzend/zend_compile.h \
 libzend/zend-parser.h libzend/zend_globals.h \
 libzend/zend_ptr_stack.h libzend/zend_execute.h
php3_realpath.o: php3_realpath.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h
alloca.o: alloca.c
output.o: output.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h
php_ini.o: php_ini.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h php_ini.h
functions/adabasd.o: functions/adabasd.c config.h build-defs.h php.h \
 php_version.h libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_string.h \
 functions/head.h functions/adabasd.h
functions/apache.o: functions/apache.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h
functions/fhttpd.o: functions/fhttpd.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h
functions/basic_functions.o: functions/basic_functions.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h php_ini.h \
 internal_functions_registry.h functions/basic_functions.h \
 functions/phpmath.h functions/php3_string.h functions/dns.h \
 functions/md5.h functions/global.h functions/html.h functions/post.h \
 functions/exec.h functions/info.h functions/url.h \
 functions/datetime.h functions/fsock.h functions/image.h \
 functions/php3_link.h functions/php3_filestat.h functions/microtime.h \
 functions/pageinfo.h functions/uniqid.h functions/base64.h \
 functions/php3_mail.h functions/php3_var.h functions/php3_iptc.h \
 functions/quot_print.h functions/cyr_convert.h \
 libzend/zend_globals.h libzend/zend_ptr_stack.h \
 libzend/zend_compile.h libzend/zend-parser.h \
 libzend/zend_execute.h
functions/crypt.o: functions/crypt.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_string.h
functions/datetime.o: functions/datetime.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/datetime.h snprintf.h
functions/db.o: functions/db.c
functions/dbase.o: functions/dbase.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h
functions/dir.o: functions/dir.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_dir.h
functions/dl.o: functions/dl.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/dl.h
functions/dns.o: functions/dns.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/dns.h
functions/exec.o: functions/exec.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_string.h \
 functions/head.h functions/exec.h
functions/file.o: functions/file.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h \
 functions/php3_string.h functions/file.h snprintf.h functions/fsock.h
functions/filepro.o: functions/filepro.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/filepro.h
functions/filestat.o: functions/filestat.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_filestat.h
functions/formatted_print.o: functions/formatted_print.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h \
 functions/php3_string.h
functions/fsock.o: functions/fsock.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/fsock.h \
 functions/base64.h functions/file.h functions/post.h functions/url.h \
 build-defs.h
functions/gd.o: functions/gd.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h \
 functions/php3_gd.h functions/gdttf.h
functions/head.o: functions/head.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/reg.h \
 functions/php3_string.h functions/pageinfo.h main.h \
 libzend/zend_globals.h libzend/zend_ptr_stack.h \
 libzend/zend_compile.h libzend/zend-parser.h \
 libzend/zend_execute.h functions/datetime.h functions/head.h \
 functions/post.h functions/url.h
functions/html.o: functions/html.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/reg.h functions/html.h
functions/image.o: functions/image.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/image.h
functions/imap.o: functions/imap.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h
functions/link.o: functions/link.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_filestat.h \
 functions/php3_link.h
functions/mail.o: functions/mail.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h build-defs.h functions/php3_mail.h
functions/math.o: functions/math.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/phpmath.h snprintf.h
functions/iptc.o: functions/iptc.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_iptc.h
functions/md5.o: functions/md5.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/md5.h functions/global.h
functions/microtime.o: functions/microtime.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/microtime.h snprintf.h
functions/mime.o: functions/mime.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/type.h functions/post.h \
 functions/mime.h libzend/zend_globals.h \
 libzend/zend_ptr_stack.h libzend/zend_compile.h \
 libzend/zend-parser.h libzend/zend_execute.h
functions/msql.o: functions/msql.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_msql.h \
 functions/reg.h functions/php3_string.h
functions/mysql.o: functions/mysql.c config.h build-defs.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_string.h \
 functions/php3_mysql.h
functions/oracle.o: functions/oracle.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/oracle.h
functions/oci8.o: functions/oci8.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_oci8.h
functions/pack.o: functions/pack.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h \
 functions/php3_string.h functions/pack.h snprintf.h functions/fsock.h
functions/pageinfo.o: functions/pageinfo.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/pageinfo.h
functions/pgsql.o: functions/pgsql.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_pgsql.h \
 functions/php3_string.h
functions/post.o: functions/post.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/mime.h functions/type.h \
 functions/php3_string.h functions/post.h functions/url.h \
 libzend/zend_globals.h libzend/zend_ptr_stack.h \
 libzend/zend_compile.h libzend/zend-parser.h \
 libzend/zend_execute.h
functions/rand.o: functions/rand.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/phpmath.h
functions/reg.o: functions/reg.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_string.h \
 functions/reg.h
functions/solid.o: functions/solid.c config.h build-defs.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_solid.h
functions/soundex.o: functions/soundex.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_string.h
functions/string.o: functions/string.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/reg.h functions/post.h \
 functions/php3_string.h
functions/syslog.o: functions/syslog.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h libzend/zend_globals.h \
 libzend/zend_ptr_stack.h libzend/zend_compile.h \
 libzend/zend-parser.h libzend/zend_execute.h \
 functions/php3_syslog.h
functions/type.o: functions/type.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/type.h
functions/uniqid.o: functions/uniqid.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/uniqid.h
functions/sybase.o: functions/sybase.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_sybase.h \
 functions/php3_string.h
functions/sybase-ct.o: functions/sybase-ct.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_sybase-ct.h \
 functions/php3_string.h
functions/url.o: functions/url.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/url.h
functions/base64.o: functions/base64.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/base64.h
functions/info.o: functions/info.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h functions/info.h \
 build-defs.h libzend/zend_globals.h \
 libzend/zend_ptr_stack.h libzend/zend_compile.h \
 libzend/zend-parser.h libzend/zend_execute.h
functions/bcmath.o: functions/bcmath.c config.h build-defs.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/number.h \
 functions/php3_bcmath.h
functions/number.o: functions/number.c functions/number.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h
functions/xml.o: functions/xml.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_xml.h
functions/unified_odbc.o: functions/unified_odbc.c config.h build-defs.h php.h \
 php_version.h libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h dl/phpdl.h functions/php3_string.h \
 functions/php3_unified_odbc.h functions/head.h snprintf.h
functions/ldap.o: functions/ldap.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h
functions/browscap.o: functions/browscap.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_browscap.h \
 libzend/zend_globals.h libzend/zend_ptr_stack.h \
 libzend/zend_compile.h libzend/zend-parser.h \
 libzend/zend_execute.h
functions/velocis.o: functions/velocis.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_velocis.h
functions/gdttf.o: functions/gdttf.c config.h functions/gdttf.h \
 functions/gdcache.h
functions/gdcache.o: functions/gdcache.c config.h functions/gdcache.h
functions/zlib.o: functions/zlib.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h \
 functions/php3_string.h functions/php3_zlib.h snprintf.h
functions/COM.o: functions/COM.c
functions/ifx.o: functions/ifx.c
functions/pdf.o: functions/pdf.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h \
 functions/php3_pdf.h
functions/hw.o: functions/hw.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h
functions/hg_comm.o: functions/hg_comm.c config.h
functions/dlist.o: functions/dlist.c config.h
functions/fdf.o: functions/fdf.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/head.h \
 functions/php3_fdf.h
functions/snmp.o: functions/snmp.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_snmp.h
functions/var.o: functions/var.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/reg.h functions/post.h \
 functions/php3_string.h functions/php3_var.h
functions/interbase.o: functions/interbase.c config.h php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_interbase.h
functions/quot_print.o: functions/quot_print.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/quot_print.h
functions/cyr_convert.o: functions/cyr_convert.c php.h php_version.h \
 libzend/zend.h libzend/config.h \
 libzend/config.unix.h libzend/zend_errors.h \
 libzend/zend_alloc.h libzend/zend_hash.h \
 libzend/zend_llist.h libzend/zend_API.h \
 libzend/modules.h libzend/zend_list.h config.h \
 request_info.h php3_compat.h libzend/zend_stack.h \
  safe_mode.h fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/cyr_convert.h
functions/sysvsem.o: functions/sysvsem.c config.h
functions/sysvshm.o: functions/sysvshm.c config.h
functions/dav.o: functions/dav.c php.h php_version.h libzend/zend.h \
 libzend/config.h libzend/config.unix.h \
 libzend/zend_errors.h libzend/zend_alloc.h \
 libzend/zend_hash.h libzend/zend_llist.h \
 libzend/zend_API.h libzend/modules.h \
 libzend/zend_list.h config.h request_info.h php3_compat.h \
 libzend/zend_stack.h  safe_mode.h \
 fopen-wrappers.h mod_php3.h output.h \
 libzend/zend_operators.h libzend/zend_variables.h \
 libzend/zend_constants.h functions/php3_dav.h

# Local Variables:
# tab-width: 4
# End: