aboutsummaryrefslogblamecommitdiff
path: root/lang/hiphop-php/pkg-plist
blob: 7f841bc1c34c26cb75adf21f91b1209f44728ee4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
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
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349











                                    









                                        

                                     
                               











































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                     
bin/hphp
bin/hphpi
%%DATADIR%%/CMake/FindBISON.cmake
%%DATADIR%%/CMake/FindBoost.cmake
%%DATADIR%%/CMake/FindCClient.cmake
%%DATADIR%%/CMake/FindFLEX.cmake
%%DATADIR%%/CMake/FindGD.cmake
%%DATADIR%%/CMake/FindICU.cmake
%%DATADIR%%/CMake/FindLdap.cmake
%%DATADIR%%/CMake/FindLibAfdt.cmake
%%DATADIR%%/CMake/FindLibCh.cmake
%%DATADIR%%/CMake/FindLibEvent.cmake
%%DATADIR%%/CMake/FindLibmemcached.cmake
%%DATADIR%%/CMake/FindLibpam.cmake
%%DATADIR%%/CMake/FindMcrypt.cmake
%%DATADIR%%/CMake/FindMySQL.cmake
%%DATADIR%%/CMake/FindNcurses.cmake
%%DATADIR%%/CMake/FindONIGURUMA.cmake
%%DATADIR%%/CMake/FindPCRE.cmake
%%DATADIR%%/CMake/FindReadline.cmake
%%DATADIR%%/CMake/FindTBB.cmake
%%DATADIR%%/CMake/HPHPFindLibs.cmake
%%DATADIR%%/CMake/HPHPFunctions.cmake
%%DATADIR%%/CMake/HPHPSetup.cmake
%%DATADIR%%/CMake/Options.cmake
%%DATADIR%%/bin/CMakeLists.base.txt
%%DATADIR%%/bin/apc_sample_serializer.php
%%DATADIR%%/bin/crutch.php
%%DATADIR%%/bin/distcc_timer.php
%%DATADIR%%/bin/droptables.sql
%%DATADIR%%/bin/exe_profile.php
%%DATADIR%%/bin/ext_injection.php
%%DATADIR%%/bin/gen_constants.php
%%DATADIR%%/bin/hdf.el
%%DATADIR%%/bin/hphp
%%DATADIR%%/bin/libafdt.a
%%DATADIR%%/bin/libhphp_analysis.a
%%DATADIR%%/bin/libhphp_runtime.a
%%DATADIR%%/bin/libmbfl.a
%%DATADIR%%/bin/libsqlite3.a
%%DATADIR%%/bin/libtimelib.a
%%DATADIR%%/bin/libxhp.a
%%DATADIR%%/bin/license.php
%%DATADIR%%/bin/mime.hdf
%%DATADIR%%/bin/php53.constants.php
%%DATADIR%%/bin/ppp.php
%%DATADIR%%/bin/report_mutex.php
%%DATADIR%%/bin/report_sizes.php
%%DATADIR%%/bin/run.mk
%%DATADIR%%/bin/run.sh
%%DATADIR%%/bin/schema.sql
%%DATADIR%%/bin/time_build.php
%%DATADIR%%/bin/valgrind.suppression
%%DATADIR%%/src/runtime/Makefile
%%DATADIR%%/src/runtime/base/Makefile
%%DATADIR%%/src/runtime/base/array/arg_array.cpp
%%DATADIR%%/src/runtime/base/array/arg_array.h
%%DATADIR%%/src/runtime/base/array/array_data.cpp
%%DATADIR%%/src/runtime/base/array/array_data.h
%%DATADIR%%/src/runtime/base/array/array_init.cpp
%%DATADIR%%/src/runtime/base/array/array_init.h
%%DATADIR%%/src/runtime/base/array/array_iterator.cpp
%%DATADIR%%/src/runtime/base/array/array_iterator.h
%%DATADIR%%/src/runtime/base/array/array_util.cpp
%%DATADIR%%/src/runtime/base/array/array_util.h
%%DATADIR%%/src/runtime/base/array/hphp_array.cpp
%%DATADIR%%/src/runtime/base/array/hphp_array.h
%%DATADIR%%/src/runtime/base/array/small_array.cpp
%%DATADIR%%/src/runtime/base/array/small_array.h
%%DATADIR%%/src/runtime/base/array/zend_array.cpp
%%DATADIR%%/src/runtime/base/array/zend_array.h
%%DATADIR%%/src/runtime/base/base_includes.h
%%DATADIR%%/src/runtime/base/binary_operations.h
%%DATADIR%%/src/runtime/base/builtin_functions.cpp
%%DATADIR%%/src/runtime/base/builtin_functions.h
%%DATADIR%%/src/runtime/base/class_info.cpp
%%DATADIR%%/src/runtime/base/class_info.h
%%DATADIR%%/src/runtime/base/comparisons.cpp
%%DATADIR%%/src/runtime/base/comparisons.h
%%DATADIR%%/src/runtime/base/complex_types.h
%%DATADIR%%/src/runtime/base/debug/backtrace.cpp
%%DATADIR%%/src/runtime/base/debug/backtrace.h
%%DATADIR%%/src/runtime/base/debuggable.cpp
%%DATADIR%%/src/runtime/base/debuggable.h
%%DATADIR%%/src/runtime/base/dynamic_object_data.cpp
%%DATADIR%%/src/runtime/base/dynamic_object_data.h
%%DATADIR%%/src/runtime/base/execution_context.cpp
%%DATADIR%%/src/runtime/base/execution_context.h
%%DATADIR%%/src/runtime/base/externals.h
%%DATADIR%%/src/runtime/base/fiber_async_func.cpp
%%DATADIR%%/src/runtime/base/fiber_async_func.h
%%DATADIR%%/src/runtime/base/fiber_reference_map.cpp
%%DATADIR%%/src/runtime/base/fiber_reference_map.h
%%DATADIR%%/src/runtime/base/fiber_safe.cpp
%%DATADIR%%/src/runtime/base/fiber_safe.h
%%DATADIR%%/src/runtime/base/file/bzip2_file.cpp
%%DATADIR%%/src/runtime/base/file/bzip2_file.h
%%DATADIR%%/src/runtime/base/file/file.cpp
%%DATADIR%%/src/runtime/base/file/file.h
%%DATADIR%%/src/runtime/base/file/mem_file.cpp
%%DATADIR%%/src/runtime/base/file/mem_file.h
%%DATADIR%%/src/runtime/base/file/output_file.cpp
%%DATADIR%%/src/runtime/base/file/output_file.h
%%DATADIR%%/src/runtime/base/file/pipe.cpp
%%DATADIR%%/src/runtime/base/file/pipe.h
%%DATADIR%%/src/runtime/base/file/plain_file.cpp
%%DATADIR%%/src/runtime/base/file/plain_file.h
%%DATADIR%%/src/runtime/base/file/socket.cpp
%%DATADIR%%/src/runtime/base/file/socket.h
%%DATADIR%%/src/runtime/base/file/ssl_socket.cpp
%%DATADIR%%/src/runtime/base/file/ssl_socket.h
%%DATADIR%%/src/runtime/base/file/temp_file.cpp
%%DATADIR%%/src/runtime/base/file/temp_file.h
%%DATADIR%%/src/runtime/base/file/url_file.cpp
%%DATADIR%%/src/runtime/base/file/url_file.h
%%DATADIR%%/src/runtime/base/file/zip_file.cpp
%%DATADIR%%/src/runtime/base/file/zip_file.h
%%DATADIR%%/src/runtime/base/frame_injection.cpp
%%DATADIR%%/src/runtime/base/frame_injection.h
%%DATADIR%%/src/runtime/base/global_array_wrapper.cpp
%%DATADIR%%/src/runtime/base/global_array_wrapper.h
%%DATADIR%%/src/runtime/base/hphp.h
%%DATADIR%%/src/runtime/base/hphp_ffi.cpp
%%DATADIR%%/src/runtime/base/hphp_ffi.h
%%DATADIR%%/src/runtime/base/hphp_system.cpp
%%DATADIR%%/src/runtime/base/hphp_system.h
%%DATADIR%%/src/runtime/base/hphp_value.h
%%DATADIR%%/src/runtime/base/ini_setting.cpp
%%DATADIR%%/src/runtime/base/ini_setting.h
%%DATADIR%%/src/runtime/base/intercept.cpp
%%DATADIR%%/src/runtime/base/intercept.h
%%DATADIR%%/src/runtime/base/list_assignment.cpp
%%DATADIR%%/src/runtime/base/list_assignment.h
%%DATADIR%%/src/runtime/base/macros.h
%%DATADIR%%/src/runtime/base/memory/leak_detectable.cpp
%%DATADIR%%/src/runtime/base/memory/leak_detectable.h
%%DATADIR%%/src/runtime/base/memory/linear_allocator.cpp
%%DATADIR%%/src/runtime/base/memory/linear_allocator.h
%%DATADIR%%/src/runtime/base/memory/memory_manager.cpp
%%DATADIR%%/src/runtime/base/memory/memory_manager.h
%%DATADIR%%/src/runtime/base/memory/smart_allocator.core.inc
%%DATADIR%%/src/runtime/base/memory/smart_allocator.cpp
%%DATADIR%%/src/runtime/base/memory/smart_allocator.h
%%DATADIR%%/src/runtime/base/memory/smart_allocator.inc_gen
%%DATADIR%%/src/runtime/base/memory/sweepable.cpp
%%DATADIR%%/src/runtime/base/memory/sweepable.h
%%DATADIR%%/src/runtime/base/memory/unsafe_pointer.cpp
%%DATADIR%%/src/runtime/base/memory/unsafe_pointer.h
%%DATADIR%%/src/runtime/base/object_data.cpp
%%DATADIR%%/src/runtime/base/object_data.h
%%DATADIR%%/src/runtime/base/preg.cpp
%%DATADIR%%/src/runtime/base/preg.h
%%DATADIR%%/src/runtime/base/program_functions.cpp
%%DATADIR%%/src/runtime/base/program_functions.h
%%DATADIR%%/src/runtime/base/resource_data.cpp
%%DATADIR%%/src/runtime/base/resource_data.h
%%DATADIR%%/src/runtime/base/rtti_info.cpp
%%DATADIR%%/src/runtime/base/rtti_info.h
%%DATADIR%%/src/runtime/base/runtime_error.cpp
%%DATADIR%%/src/runtime/base/runtime_error.h
%%DATADIR%%/src/runtime/base/runtime_option.cpp
%%DATADIR%%/src/runtime/base/runtime_option.h
%%DATADIR%%/src/runtime/base/server/access_log.cpp
%%DATADIR%%/src/runtime/base/server/access_log.h
%%DATADIR%%/src/runtime/base/server/admin_request_handler.cpp
%%DATADIR%%/src/runtime/base/server/admin_request_handler.h
%%DATADIR%%/src/runtime/base/server/dynamic_content_cache.cpp
%%DATADIR%%/src/runtime/base/server/dynamic_content_cache.h
%%DATADIR%%/src/runtime/base/server/files_match.cpp
%%DATADIR%%/src/runtime/base/server/files_match.h
%%DATADIR%%/src/runtime/base/server/http_protocol.cpp
%%DATADIR%%/src/runtime/base/server/http_protocol.h
%%DATADIR%%/src/runtime/base/server/http_request_handler.cpp
%%DATADIR%%/src/runtime/base/server/http_request_handler.h
%%DATADIR%%/src/runtime/base/server/http_server.cpp
%%DATADIR%%/src/runtime/base/server/http_server.h
%%DATADIR%%/src/runtime/base/server/ip_block_map.cpp
%%DATADIR%%/src/runtime/base/server/ip_block_map.h
%%DATADIR%%/src/runtime/base/server/libevent_server.cpp
%%DATADIR%%/src/runtime/base/server/libevent_server.h
%%DATADIR%%/src/runtime/base/server/libevent_server_with_fd.cpp
%%DATADIR%%/src/runtime/base/server/libevent_server_with_fd.h
%%DATADIR%%/src/runtime/base/server/libevent_server_with_takeover.cpp
%%DATADIR%%/src/runtime/base/server/libevent_server_with_takeover.h
%%DATADIR%%/src/runtime/base/server/libevent_transport.cpp
%%DATADIR%%/src/runtime/base/server/libevent_transport.h
%%DATADIR%%/src/runtime/base/server/pagelet_server.cpp
%%DATADIR%%/src/runtime/base/server/pagelet_server.h
%%DATADIR%%/src/runtime/base/server/replay_transport.cpp
%%DATADIR%%/src/runtime/base/server/replay_transport.h
%%DATADIR%%/src/runtime/base/server/request_uri.cpp
%%DATADIR%%/src/runtime/base/server/request_uri.h
%%DATADIR%%/src/runtime/base/server/rpc_request_handler.cpp
%%DATADIR%%/src/runtime/base/server/rpc_request_handler.h
%%DATADIR%%/src/runtime/base/server/satellite_server.cpp
%%DATADIR%%/src/runtime/base/server/satellite_server.h
%%DATADIR%%/src/runtime/base/server/server.cpp
%%DATADIR%%/src/runtime/base/server/server.h
%%DATADIR%%/src/runtime/base/server/server_note.cpp
%%DATADIR%%/src/runtime/base/server/server_note.h
%%DATADIR%%/src/runtime/base/server/server_stats.cpp
%%DATADIR%%/src/runtime/base/server/server_stats.h
%%DATADIR%%/src/runtime/base/server/service_thread.cpp
%%DATADIR%%/src/runtime/base/server/service_thread.h
%%DATADIR%%/src/runtime/base/server/source_root_info.cpp
%%DATADIR%%/src/runtime/base/server/source_root_info.h
%%DATADIR%%/src/runtime/base/server/static_content_cache.cpp
%%DATADIR%%/src/runtime/base/server/static_content_cache.h
%%DATADIR%%/src/runtime/base/server/transport.cpp
%%DATADIR%%/src/runtime/base/server/transport.h
%%DATADIR%%/src/runtime/base/server/upload.cpp
%%DATADIR%%/src/runtime/base/server/upload.h
%%DATADIR%%/src/runtime/base/server/virtual_host.cpp
%%DATADIR%%/src/runtime/base/server/virtual_host.h
%%DATADIR%%/src/runtime/base/server/xbox_server.cpp
%%DATADIR%%/src/runtime/base/server/xbox_server.h
%%DATADIR%%/src/runtime/base/shared/concurrent_shared_store.cpp
%%DATADIR%%/src/runtime/base/shared/concurrent_shared_store.h
%%DATADIR%%/src/runtime/base/shared/immutable_map.cpp
%%DATADIR%%/src/runtime/base/shared/immutable_map.h
%%DATADIR%%/src/runtime/base/shared/immutable_obj.cpp
%%DATADIR%%/src/runtime/base/shared/immutable_obj.h
%%DATADIR%%/src/runtime/base/shared/shared_map.cpp
%%DATADIR%%/src/runtime/base/shared/shared_map.h
%%DATADIR%%/src/runtime/base/shared/shared_store.cpp
%%DATADIR%%/src/runtime/base/shared/shared_store.h
%%DATADIR%%/src/runtime/base/shared/shared_store_base.cpp
%%DATADIR%%/src/runtime/base/shared/shared_store_base.h
%%DATADIR%%/src/runtime/base/shared/shared_store_stats.cpp
%%DATADIR%%/src/runtime/base/shared/shared_store_stats.h
%%DATADIR%%/src/runtime/base/shared/shared_string.cpp
%%DATADIR%%/src/runtime/base/shared/shared_string.h
%%DATADIR%%/src/runtime/base/shared/shared_variant.cpp
%%DATADIR%%/src/runtime/base/shared/shared_variant.h
%%DATADIR%%/src/runtime/base/source_info.cpp
%%DATADIR%%/src/runtime/base/source_info.h
%%DATADIR%%/src/runtime/base/string_data.cpp
%%DATADIR%%/src/runtime/base/string_data.h
%%DATADIR%%/src/runtime/base/string_offset.cpp
%%DATADIR%%/src/runtime/base/string_offset.h
%%DATADIR%%/src/runtime/base/string_util.cpp
%%DATADIR%%/src/runtime/base/string_util.h
%%DATADIR%%/src/runtime/base/taint/README
%%DATADIR%%/src/runtime/base/taint/taint_data.cpp
%%DATADIR%%/src/runtime/base/taint/taint_data.h
%%DATADIR%%/src/runtime/base/taint/taint_helper.cpp
%%DATADIR%%/src/runtime/base/taint/taint_helper.h
%%DATADIR%%/src/runtime/base/taint/taint_observer.cpp
%%DATADIR%%/src/runtime/base/taint/taint_observer.h
%%DATADIR%%/src/runtime/base/taint/taint_trace.cpp
%%DATADIR%%/src/runtime/base/taint/taint_trace.h
%%DATADIR%%/src/runtime/base/taint/taint_trace_node.h
%%DATADIR%%/src/runtime/base/taint/taint_warning.cpp
%%DATADIR%%/src/runtime/base/taint/taint_warning.h
%%DATADIR%%/src/runtime/base/thread_info.cpp
%%DATADIR%%/src/runtime/base/thread_init_fini.cpp
%%DATADIR%%/src/runtime/base/thread_init_fini.h
%%DATADIR%%/src/runtime/base/time/datetime.cpp
%%DATADIR%%/src/runtime/base/time/datetime.h
%%DATADIR%%/src/runtime/base/time/timestamp.cpp
%%DATADIR%%/src/runtime/base/time/timestamp.h
%%DATADIR%%/src/runtime/base/time/timezone.cpp
%%DATADIR%%/src/runtime/base/time/timezone.h
%%DATADIR%%/src/runtime/base/timeout_thread.cpp
%%DATADIR%%/src/runtime/base/timeout_thread.h
%%DATADIR%%/src/runtime/base/tv_helpers.h
%%DATADIR%%/src/runtime/base/tv_macros.h
%%DATADIR%%/src/runtime/base/type_array.cpp
%%DATADIR%%/src/runtime/base/type_array.h
%%DATADIR%%/src/runtime/base/type_conversions.cpp
%%DATADIR%%/src/runtime/base/type_conversions.h
%%DATADIR%%/src/runtime/base/type_object.cpp
%%DATADIR%%/src/runtime/base/type_object.h
%%DATADIR%%/src/runtime/base/type_string.cpp
%%DATADIR%%/src/runtime/base/type_string.h
%%DATADIR%%/src/runtime/base/type_variant.cpp
%%DATADIR%%/src/runtime/base/type_variant.h
%%DATADIR%%/src/runtime/base/types.h
%%DATADIR%%/src/runtime/base/util/countable.cpp
%%DATADIR%%/src/runtime/base/util/countable.h
%%DATADIR%%/src/runtime/base/util/exceptions.cpp
%%DATADIR%%/src/runtime/base/util/exceptions.h
%%DATADIR%%/src/runtime/base/util/extended_logger.cpp
%%DATADIR%%/src/runtime/base/util/extended_logger.h
%%DATADIR%%/src/runtime/base/util/http_client.cpp
%%DATADIR%%/src/runtime/base/util/http_client.h
%%DATADIR%%/src/runtime/base/util/libevent_http_client.cpp
%%DATADIR%%/src/runtime/base/util/libevent_http_client.h
%%DATADIR%%/src/runtime/base/util/php_thrift_buffer.cpp
%%DATADIR%%/src/runtime/base/util/php_thrift_buffer.h
%%DATADIR%%/src/runtime/base/util/request_local.h
%%DATADIR%%/src/runtime/base/util/simple_counter.cpp
%%DATADIR%%/src/runtime/base/util/simple_counter.h
%%DATADIR%%/src/runtime/base/util/smart_object.h
%%DATADIR%%/src/runtime/base/util/smart_ptr.h
%%DATADIR%%/src/runtime/base/util/string_buffer.cpp
%%DATADIR%%/src/runtime/base/util/string_buffer.h
%%DATADIR%%/src/runtime/base/util/thrift_buffer.cpp
%%DATADIR%%/src/runtime/base/util/thrift_buffer.h
%%DATADIR%%/src/runtime/base/variable_serializer.cpp
%%DATADIR%%/src/runtime/base/variable_serializer.h
%%DATADIR%%/src/runtime/base/variable_table.cpp
%%DATADIR%%/src/runtime/base/variable_table.h
%%DATADIR%%/src/runtime/base/variable_unserializer.cpp
%%DATADIR%%/src/runtime/base/variable_unserializer.h
%%DATADIR%%/src/runtime/base/zend/Makefile
%%DATADIR%%/src/runtime/base/zend/intl_convert.cpp
%%DATADIR%%/src/runtime/base/zend/intl_convert.h
%%DATADIR%%/src/runtime/base/zend/utf8_decode.cpp
%%DATADIR%%/src/runtime/base/zend/utf8_decode.h
%%DATADIR%%/src/runtime/base/zend/zend_collator.cpp
%%DATADIR%%/src/runtime/base/zend/zend_collator.h
%%DATADIR%%/src/runtime/base/zend/zend_functions.cpp
%%DATADIR%%/src/runtime/base/zend/zend_functions.h
%%DATADIR%%/src/runtime/base/zend/zend_html.cpp
%%DATADIR%%/src/runtime/base/zend/zend_html.h
%%DATADIR%%/src/runtime/base/zend/zend_ini.lex.yy.cpp
%%DATADIR%%/src/runtime/base/zend/zend_ini.tab.cpp
%%DATADIR%%/src/runtime/base/zend/zend_ini.tab.hpp
%%DATADIR%%/src/runtime/base/zend/zend_ini.x
%%DATADIR%%/src/runtime/base/zend/zend_ini.y
%%DATADIR%%/src/runtime/base/zend/zend_math.h
%%DATADIR%%/src/runtime/base/zend/zend_md5.cpp
%%DATADIR%%/src/runtime/base/zend/zend_multiply.h
%%DATADIR%%/src/runtime/base/zend/zend_pack.cpp
%%DATADIR%%/src/runtime/base/zend/zend_pack.h
%%DATADIR%%/src/runtime/base/zend/zend_php_config.h
%%DATADIR%%/src/runtime/base/zend/zend_printf.cpp
%%DATADIR%%/src/runtime/base/zend/zend_printf.h
%%DATADIR%%/src/runtime/base/zend/zend_qsort.cpp
%%DATADIR%%/src/runtime/base/zend/zend_qsort.h
%%DATADIR%%/src/runtime/base/zend/zend_rand.cpp
%%DATADIR%%/src/runtime/base/zend/zend_scanf.cpp
%%DATADIR%%/src/runtime/base/zend/zend_scanf.h
%%DATADIR%%/src/runtime/base/zend/zend_sha1.cpp
%%DATADIR%%/src/runtime/base/zend/zend_string.cpp
%%DATADIR%%/src/runtime/base/zend/zend_string.h
%%DATADIR%%/src/runtime/base/zend/zend_strtod.cpp
%%DATADIR%%/src/runtime/base/zend/zend_strtod.h
%%DATADIR%%/src/runtime/base/zend/zend_url.cpp
%%DATADIR%%/src/runtime/base/zend/zend_url.h
%%DATADIR%%/src/runtime/eval/Makefile
%%DATADIR%%/src/runtime/eval/analysis/block.cpp
%%DATADIR%%/src/runtime/eval/analysis/block.h
%%DATADIR%%/src/runtime/eval/ast/array_element_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/array_element_expression.h
%%DATADIR%%/src/runtime/eval/ast/array_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/array_expression.h
%%DATADIR%%/src/runtime/eval/ast/assignment_op_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/assignment_op_expression.h
%%DATADIR%%/src/runtime/eval/ast/assignment_ref_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/assignment_ref_expression.h
%%DATADIR%%/src/runtime/eval/ast/binary_op_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/binary_op_expression.h
%%DATADIR%%/src/runtime/eval/ast/break_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/break_statement.h
%%DATADIR%%/src/runtime/eval/ast/class_constant_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/class_constant_expression.h
%%DATADIR%%/src/runtime/eval/ast/class_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/class_statement.h
%%DATADIR%%/src/runtime/eval/ast/closure_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/closure_expression.h
%%DATADIR%%/src/runtime/eval/ast/constant_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/constant_expression.h
%%DATADIR%%/src/runtime/eval/ast/construct.cpp
%%DATADIR%%/src/runtime/eval/ast/construct.h
%%DATADIR%%/src/runtime/eval/ast/do_while_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/do_while_statement.h
%%DATADIR%%/src/runtime/eval/ast/echo_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/echo_statement.h
%%DATADIR%%/src/runtime/eval/ast/encaps_list_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/encaps_list_expression.h
%%DATADIR%%/src/runtime/eval/ast/expr_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/expr_statement.h
%%DATADIR%%/src/runtime/eval/ast/expression.cpp
%%DATADIR%%/src/runtime/eval/ast/expression.h
%%DATADIR%%/src/runtime/eval/ast/for_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/for_statement.h
%%DATADIR%%/src/runtime/eval/ast/foreach_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/foreach_statement.h
%%DATADIR%%/src/runtime/eval/ast/function_call_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/function_call_expression.h
%%DATADIR%%/src/runtime/eval/ast/function_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/function_statement.h
%%DATADIR%%/src/runtime/eval/ast/global_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/global_statement.h
%%DATADIR%%/src/runtime/eval/ast/goto_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/goto_statement.h
%%DATADIR%%/src/runtime/eval/ast/if_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/if_statement.h
%%DATADIR%%/src/runtime/eval/ast/inc_op_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/inc_op_expression.h
%%DATADIR%%/src/runtime/eval/ast/include_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/include_expression.h
%%DATADIR%%/src/runtime/eval/ast/instanceof_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/instanceof_expression.h
%%DATADIR%%/src/runtime/eval/ast/isset_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/isset_expression.h
%%DATADIR%%/src/runtime/eval/ast/label_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/label_statement.h
%%DATADIR%%/src/runtime/eval/ast/list_assignment_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/list_assignment_expression.h
%%DATADIR%%/src/runtime/eval/ast/lval_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/lval_expression.h
%%DATADIR%%/src/runtime/eval/ast/method_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/method_statement.h
%%DATADIR%%/src/runtime/eval/ast/name.cpp
%%DATADIR%%/src/runtime/eval/ast/name.h
%%DATADIR%%/src/runtime/eval/ast/new_object_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/new_object_expression.h
%%DATADIR%%/src/runtime/eval/ast/object_method_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/object_method_expression.h
%%DATADIR%%/src/runtime/eval/ast/object_property_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/object_property_expression.h
%%DATADIR%%/src/runtime/eval/ast/qop_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/qop_expression.h
%%DATADIR%%/src/runtime/eval/ast/ref_param_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/ref_param_expression.h
%%DATADIR%%/src/runtime/eval/ast/return_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/return_statement.h
%%DATADIR%%/src/runtime/eval/ast/scalar_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/scalar_expression.h
%%DATADIR%%/src/runtime/eval/ast/scalar_value_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/scalar_value_expression.h
%%DATADIR%%/src/runtime/eval/ast/simple_function_call_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/simple_function_call_expression.h
%%DATADIR%%/src/runtime/eval/ast/statement.cpp
%%DATADIR%%/src/runtime/eval/ast/statement.h
%%DATADIR%%/src/runtime/eval/ast/statement_list_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/statement_list_statement.h
%%DATADIR%%/src/runtime/eval/ast/static_member_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/static_member_expression.h
%%DATADIR%%/src/runtime/eval/ast/static_method_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/static_method_expression.h
%%DATADIR%%/src/runtime/eval/ast/static_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/static_statement.h
%%DATADIR%%/src/runtime/eval/ast/strong_foreach_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/strong_foreach_statement.h
%%DATADIR%%/src/runtime/eval/ast/switch_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/switch_statement.h
%%DATADIR%%/src/runtime/eval/ast/temp_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/temp_expression.h
%%DATADIR%%/src/runtime/eval/ast/temp_expression_list.cpp
%%DATADIR%%/src/runtime/eval/ast/temp_expression_list.h
%%DATADIR%%/src/runtime/eval/ast/this_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/this_expression.h
%%DATADIR%%/src/runtime/eval/ast/throw_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/throw_statement.h
%%DATADIR%%/src/runtime/eval/ast/try_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/try_statement.h
%%DATADIR%%/src/runtime/eval/ast/unary_op_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/unary_op_expression.h
%%DATADIR%%/src/runtime/eval/ast/unset_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/unset_statement.h
%%DATADIR%%/src/runtime/eval/ast/variable_expression.cpp
%%DATADIR%%/src/runtime/eval/ast/variable_expression.h
%%DATADIR%%/src/runtime/eval/ast/while_statement.cpp
%%DATADIR%%/src/runtime/eval/ast/while_statement.h
%%DATADIR%%/src/runtime/eval/base/ast_ptr.h
%%DATADIR%%/src/runtime/eval/base/eval_base.h
%%DATADIR%%/src/runtime/eval/base/function.h
%%DATADIR%%/src/runtime/eval/debugger/break_point.cpp
%%DATADIR%%/src/runtime/eval/debugger/break_point.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/all.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd.cpp.template
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd.h.template
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_abort.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_abort.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_break.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_break.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_config.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_config.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_constant.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_constant.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_continue.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_continue.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_down.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_down.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_eval.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_eval.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_example.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_example.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_exception.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_exception.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_extended.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_extended.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_extension.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_extension.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_flow_control.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_flow_control.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_frame.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_frame.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_global.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_global.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_help.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_help.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_info.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_info.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_interrupt.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_interrupt.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_jump.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_jump.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_list.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_list.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_machine.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_machine.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_macro.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_macro.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_next.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_next.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_out.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_out.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_print.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_print.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_quit.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_quit.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_run.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_run.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_shell.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_shell.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_signal.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_signal.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_step.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_step.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_thread.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_thread.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_up.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_up.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_user.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_user.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_variable.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_variable.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_where.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_where.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_zend.cpp
%%DATADIR%%/src/runtime/eval/debugger/cmd/cmd_zend.h
%%DATADIR%%/src/runtime/eval/debugger/cmd/new_cmd.php
%%DATADIR%%/src/runtime/eval/debugger/debugger.cpp
%%DATADIR%%/src/runtime/eval/debugger/debugger.h
%%DATADIR%%/src/runtime/eval/debugger/debugger_base.cpp
%%DATADIR%%/src/runtime/eval/debugger/debugger_base.h
%%DATADIR%%/src/runtime/eval/debugger/debugger_client.cpp
%%DATADIR%%/src/runtime/eval/debugger/debugger_client.h
%%DATADIR%%/src/runtime/eval/debugger/debugger_command.cpp
%%DATADIR%%/src/runtime/eval/debugger/debugger_command.h
%%DATADIR%%/src/runtime/eval/debugger/debugger_proxy.cpp
%%DATADIR%%/src/runtime/eval/debugger/debugger_proxy.h
%%DATADIR%%/src/runtime/eval/debugger/debugger_server.cpp
%%DATADIR%%/src/runtime/eval/debugger/debugger_server.h
%%DATADIR%%/src/runtime/eval/debugger/debugger_thrift_buffer.cpp
%%DATADIR%%/src/runtime/eval/debugger/debugger_thrift_buffer.h
%%DATADIR%%/src/runtime/eval/debugger/dummy_sandbox.cpp
%%DATADIR%%/src/runtime/eval/debugger/dummy_sandbox.h
%%DATADIR%%/src/runtime/eval/eval.cpp
%%DATADIR%%/src/runtime/eval/eval.h
%%DATADIR%%/src/runtime/eval/ext/ext.cpp
%%DATADIR%%/src/runtime/eval/ext/ext.h
%%DATADIR%%/src/runtime/eval/parser/Makefile
%%DATADIR%%/src/runtime/eval/parser/hphp.tab.cpp
%%DATADIR%%/src/runtime/eval/parser/parser.cpp
%%DATADIR%%/src/runtime/eval/parser/parser.h
%%DATADIR%%/src/runtime/eval/runtime/assoc_list.cpp
%%DATADIR%%/src/runtime/eval/runtime/assoc_list.h
%%DATADIR%%/src/runtime/eval/runtime/code_coverage.cpp
%%DATADIR%%/src/runtime/eval/runtime/code_coverage.h
%%DATADIR%%/src/runtime/eval/runtime/eval_frame_injection.cpp
%%DATADIR%%/src/runtime/eval/runtime/eval_frame_injection.h
%%DATADIR%%/src/runtime/eval/runtime/eval_object_data.cpp
%%DATADIR%%/src/runtime/eval/runtime/eval_object_data.h
%%DATADIR%%/src/runtime/eval/runtime/eval_state.cpp
%%DATADIR%%/src/runtime/eval/runtime/eval_state.h
%%DATADIR%%/src/runtime/eval/runtime/file_repository.cpp
%%DATADIR%%/src/runtime/eval/runtime/file_repository.h
%%DATADIR%%/src/runtime/eval/runtime/variable_environment.cpp
%%DATADIR%%/src/runtime/eval/runtime/variable_environment.h
%%DATADIR%%/src/runtime/eval/runtime/variant_stack.cpp
%%DATADIR%%/src/runtime/eval/runtime/variant_stack.h
%%DATADIR%%/src/runtime/eval/strict_mode.cpp
%%DATADIR%%/src/runtime/eval/strict_mode.h
%%DATADIR%%/src/runtime/ext/JSON_parser.cpp
%%DATADIR%%/src/runtime/ext/JSON_parser.h
%%DATADIR%%/src/runtime/ext/Makefile
%%DATADIR%%/src/runtime/ext/README
%%DATADIR%%/src/runtime/ext/bcmath/add.c
%%DATADIR%%/src/runtime/ext/bcmath/bcmath.h
%%DATADIR%%/src/runtime/ext/bcmath/compare.c
%%DATADIR%%/src/runtime/ext/bcmath/config.h
%%DATADIR%%/src/runtime/ext/bcmath/debug.c
%%DATADIR%%/src/runtime/ext/bcmath/div.c
%%DATADIR%%/src/runtime/ext/bcmath/divmod.c
%%DATADIR%%/src/runtime/ext/bcmath/doaddsub.c
%%DATADIR%%/src/runtime/ext/bcmath/init.c
%%DATADIR%%/src/runtime/ext/bcmath/int2num.c
%%DATADIR%%/src/runtime/ext/bcmath/nearzero.c
%%DATADIR%%/src/runtime/ext/bcmath/neg.c
%%DATADIR%%/src/runtime/ext/bcmath/num2long.c
%%DATADIR%%/src/runtime/ext/bcmath/num2str.c
%%DATADIR%%/src/runtime/ext/bcmath/outofmem.c
%%DATADIR%%/src/runtime/ext/bcmath/output.c
%%DATADIR%%/src/runtime/ext/bcmath/private.h
%%DATADIR%%/src/runtime/ext/bcmath/raise.c
%%DATADIR%%/src/runtime/ext/bcmath/raisemod.c
%%DATADIR%%/src/runtime/ext/bcmath/recmul.c
%%DATADIR%%/src/runtime/ext/bcmath/rmzero.c
%%DATADIR%%/src/runtime/ext/bcmath/rt.c
%%DATADIR%%/src/runtime/ext/bcmath/sqrt.c
%%DATADIR%%/src/runtime/ext/bcmath/str2num.c
%%DATADIR%%/src/runtime/ext/bcmath/sub.c
%%DATADIR%%/src/runtime/ext/bcmath/zero.c
%%DATADIR%%/src/runtime/ext/crutch.cpp
%%DATADIR%%/src/runtime/ext/crutch.h
%%DATADIR%%/src/runtime/ext/ext.h
%%DATADIR%%/src/runtime/ext/ext_apache.cpp
%%DATADIR%%/src/runtime/ext/ext_apache.h
%%DATADIR%%/src/runtime/ext/ext_apc.cpp
%%DATADIR%%/src/runtime/ext/ext_apc.h
%%DATADIR%%/src/runtime/ext/ext_apd.cpp
%%DATADIR%%/src/runtime/ext/ext_apd.h
%%DATADIR%%/src/runtime/ext/ext_array.cpp
%%DATADIR%%/src/runtime/ext/ext_array.h
%%DATADIR%%/src/runtime/ext/ext_bcmath.cpp
%%DATADIR%%/src/runtime/ext/ext_bcmath.h
%%DATADIR%%/src/runtime/ext/ext_bzip2.cpp
%%DATADIR%%/src/runtime/ext/ext_bzip2.h
%%DATADIR%%/src/runtime/ext/ext_class.cpp
%%DATADIR%%/src/runtime/ext/ext_class.h
%%DATADIR%%/src/runtime/ext/ext_closure.cpp
%%DATADIR%%/src/runtime/ext/ext_closure.h
%%DATADIR%%/src/runtime/ext/ext_continuation.cpp
%%DATADIR%%/src/runtime/ext/ext_continuation.h
%%DATADIR%%/src/runtime/ext/ext_ctype.cpp
%%DATADIR%%/src/runtime/ext/ext_ctype.h
%%DATADIR%%/src/runtime/ext/ext_curl.cpp
%%DATADIR%%/src/runtime/ext/ext_curl.h
%%DATADIR%%/src/runtime/ext/ext_datetime.cpp
%%DATADIR%%/src/runtime/ext/ext_datetime.h
%%DATADIR%%/src/runtime/ext/ext_debugger.cpp
%%DATADIR%%/src/runtime/ext/ext_debugger.h
%%DATADIR%%/src/runtime/ext/ext_domdocument.cpp
%%DATADIR%%/src/runtime/ext/ext_domdocument.h
%%DATADIR%%/src/runtime/ext/ext_domdocument_includes.h
%%DATADIR%%/src/runtime/ext/ext_error.cpp
%%DATADIR%%/src/runtime/ext/ext_error.h
%%DATADIR%%/src/runtime/ext/ext_fb.cpp
%%DATADIR%%/src/runtime/ext/ext_fb.h
%%DATADIR%%/src/runtime/ext/ext_file.cpp
%%DATADIR%%/src/runtime/ext/ext_file.h
%%DATADIR%%/src/runtime/ext/ext_function.cpp
%%DATADIR%%/src/runtime/ext/ext_function.h
%%DATADIR%%/src/runtime/ext/ext_hash.cpp
%%DATADIR%%/src/runtime/ext/ext_hash.h
%%DATADIR%%/src/runtime/ext/ext_hotprofiler.cpp
%%DATADIR%%/src/runtime/ext/ext_iconv.cpp
%%DATADIR%%/src/runtime/ext/ext_iconv.h
%%DATADIR%%/src/runtime/ext/ext_icu.cpp
%%DATADIR%%/src/runtime/ext/ext_icu.h
%%DATADIR%%/src/runtime/ext/ext_icu_ucsdet.cpp
%%DATADIR%%/src/runtime/ext/ext_icu_ucsdet.h
%%DATADIR%%/src/runtime/ext/ext_icu_uspoof.cpp
%%DATADIR%%/src/runtime/ext/ext_icu_uspoof.h
%%DATADIR%%/src/runtime/ext/ext_image.cpp
%%DATADIR%%/src/runtime/ext/ext_image.h
%%DATADIR%%/src/runtime/ext/ext_imagesprite.cpp
%%DATADIR%%/src/runtime/ext/ext_imagesprite.h
%%DATADIR%%/src/runtime/ext/ext_imagesprite_include.h
%%DATADIR%%/src/runtime/ext/ext_imap.cpp
%%DATADIR%%/src/runtime/ext/ext_imap.h
%%DATADIR%%/src/runtime/ext/ext_intl.cpp
%%DATADIR%%/src/runtime/ext/ext_intl.h
%%DATADIR%%/src/runtime/ext/ext_ipc.cpp
%%DATADIR%%/src/runtime/ext/ext_ipc.h
%%DATADIR%%/src/runtime/ext/ext_iterator.cpp
%%DATADIR%%/src/runtime/ext/ext_iterator.h
%%DATADIR%%/src/runtime/ext/ext_json.cpp
%%DATADIR%%/src/runtime/ext/ext_json.h
%%DATADIR%%/src/runtime/ext/ext_ldap.cpp
%%DATADIR%%/src/runtime/ext/ext_ldap.h
%%DATADIR%%/src/runtime/ext/ext_magick.cpp
%%DATADIR%%/src/runtime/ext/ext_magick.h
%%DATADIR%%/src/runtime/ext/ext_mailparse.cpp
%%DATADIR%%/src/runtime/ext/ext_mailparse.h
%%DATADIR%%/src/runtime/ext/ext_math.cpp
%%DATADIR%%/src/runtime/ext/ext_math.h
%%DATADIR%%/src/runtime/ext/ext_mb.cpp
%%DATADIR%%/src/runtime/ext/ext_mb.h
%%DATADIR%%/src/runtime/ext/ext_mcrypt.cpp
%%DATADIR%%/src/runtime/ext/ext_mcrypt.h
%%DATADIR%%/src/runtime/ext/ext_memcache.cpp
%%DATADIR%%/src/runtime/ext/ext_memcache.h
%%DATADIR%%/src/runtime/ext/ext_memcached.cpp
%%DATADIR%%/src/runtime/ext/ext_memcached.h
%%DATADIR%%/src/runtime/ext/ext_misc.cpp
%%DATADIR%%/src/runtime/ext/ext_misc.h
%%DATADIR%%/src/runtime/ext/ext_mysql.cpp
%%DATADIR%%/src/runtime/ext/ext_mysql.h
%%DATADIR%%/src/runtime/ext/ext_network.cpp
%%DATADIR%%/src/runtime/ext/ext_network.h
%%DATADIR%%/src/runtime/ext/ext_openssl.cpp
%%DATADIR%%/src/runtime/ext/ext_openssl.h
%%DATADIR%%/src/runtime/ext/ext_options.cpp
%%DATADIR%%/src/runtime/ext/ext_options.h
%%DATADIR%%/src/runtime/ext/ext_output.cpp
%%DATADIR%%/src/runtime/ext/ext_output.h
%%DATADIR%%/src/runtime/ext/ext_pdo.cpp
%%DATADIR%%/src/runtime/ext/ext_pdo.h
%%DATADIR%%/src/runtime/ext/ext_posix.cpp
%%DATADIR%%/src/runtime/ext/ext_posix.h
%%DATADIR%%/src/runtime/ext/ext_preg.cpp
%%DATADIR%%/src/runtime/ext/ext_preg.h
%%DATADIR%%/src/runtime/ext/ext_process.cpp
%%DATADIR%%/src/runtime/ext/ext_process.h
%%DATADIR%%/src/runtime/ext/ext_reflection.cpp
%%DATADIR%%/src/runtime/ext/ext_reflection.h
%%DATADIR%%/src/runtime/ext/ext_server.cpp
%%DATADIR%%/src/runtime/ext/ext_server.h
%%DATADIR%%/src/runtime/ext/ext_session.cpp
%%DATADIR%%/src/runtime/ext/ext_session.h
%%DATADIR%%/src/runtime/ext/ext_simplexml.cpp
%%DATADIR%%/src/runtime/ext/ext_simplexml.h
%%DATADIR%%/src/runtime/ext/ext_simplexml_include.h
%%DATADIR%%/src/runtime/ext/ext_soap.cpp
%%DATADIR%%/src/runtime/ext/ext_soap.h
%%DATADIR%%/src/runtime/ext/ext_socket.cpp
%%DATADIR%%/src/runtime/ext/ext_socket.h
%%DATADIR%%/src/runtime/ext/ext_spl.cpp
%%DATADIR%%/src/runtime/ext/ext_spl.h
%%DATADIR%%/src/runtime/ext/ext_splfile.cpp
%%DATADIR%%/src/runtime/ext/ext_splfile.h
%%DATADIR%%/src/runtime/ext/ext_sqlite3.cpp
%%DATADIR%%/src/runtime/ext/ext_sqlite3.h
%%DATADIR%%/src/runtime/ext/ext_stream.cpp
%%DATADIR%%/src/runtime/ext/ext_stream.h
%%DATADIR%%/src/runtime/ext/ext_string.cpp
%%DATADIR%%/src/runtime/ext/ext_string.h
%%DATADIR%%/src/runtime/ext/ext_thread.cpp
%%DATADIR%%/src/runtime/ext/ext_thread.h
%%DATADIR%%/src/runtime/ext/ext_thrift.h
%%DATADIR%%/src/runtime/ext/ext_url.cpp
%%DATADIR%%/src/runtime/ext/ext_url.h
%%DATADIR%%/src/runtime/ext/ext_variable.cpp
%%DATADIR%%/src/runtime/ext/ext_variable.h
%%DATADIR%%/src/runtime/ext/ext_xml.cpp
%%DATADIR%%/src/runtime/ext/ext_xml.h
%%DATADIR%%/src/runtime/ext/ext_xmlreader.cpp
%%DATADIR%%/src/runtime/ext/ext_xmlreader.h
%%DATADIR%%/src/runtime/ext/ext_xmlwriter.cpp
%%DATADIR%%/src/runtime/ext/ext_xmlwriter.h
%%DATADIR%%/src/runtime/ext/ext_zlib.cpp
%%DATADIR%%/src/runtime/ext/ext_zlib.h
%%DATADIR%%/src/runtime/ext/extension.cpp
%%DATADIR%%/src/runtime/ext/extension.h
%%DATADIR%%/src/runtime/ext/hash/hash_adler32.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_adler32.h
%%DATADIR%%/src/runtime/ext/hash/hash_crc32.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_crc32.h
%%DATADIR%%/src/runtime/ext/hash/hash_engine.h
%%DATADIR%%/src/runtime/ext/hash/hash_furc.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_furc.h
%%DATADIR%%/src/runtime/ext/hash/hash_gost.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_gost.h
%%DATADIR%%/src/runtime/ext/hash/hash_haval.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_haval.h
%%DATADIR%%/src/runtime/ext/hash/hash_md.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_md.h
%%DATADIR%%/src/runtime/ext/hash/hash_murmur.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_murmur.h
%%DATADIR%%/src/runtime/ext/hash/hash_ripemd.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_ripemd.h
%%DATADIR%%/src/runtime/ext/hash/hash_salsa.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_salsa.h
%%DATADIR%%/src/runtime/ext/hash/hash_sha.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_sha.h
%%DATADIR%%/src/runtime/ext/hash/hash_snefru.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_snefru.h
%%DATADIR%%/src/runtime/ext/hash/hash_tiger.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_tiger.h
%%DATADIR%%/src/runtime/ext/hash/hash_whirlpool.cpp
%%DATADIR%%/src/runtime/ext/hash/hash_whirlpool.h
%%DATADIR%%/src/runtime/ext/hash/php_hash_crc32_tables.h
%%DATADIR%%/src/runtime/ext/hash/php_hash_gost_tables.h
%%DATADIR%%/src/runtime/ext/hash/php_hash_snefru_tables.h
%%DATADIR%%/src/runtime/ext/hash/php_hash_tiger_tables.h
%%DATADIR%%/src/runtime/ext/hash/php_hash_whirlpool_tables.h
%%DATADIR%%/src/runtime/ext/icu/ICUMatcher.cpp
%%DATADIR%%/src/runtime/ext/icu/ICUMatcher.h
%%DATADIR%%/src/runtime/ext/icu/ICUTransliterator.cpp
%%DATADIR%%/src/runtime/ext/icu/ICUTransliterator.h
%%DATADIR%%/src/runtime/ext/icu/LifeEventTokenizer.cpp
%%DATADIR%%/src/runtime/ext/icu/LifeEventTokenizer.h
%%DATADIR%%/src/runtime/ext/mailparse/mime.cpp
%%DATADIR%%/src/runtime/ext/mailparse/mime.h
%%DATADIR%%/src/runtime/ext/mailparse/rfc822.cpp
%%DATADIR%%/src/runtime/ext/mailparse/rfc822.h
%%DATADIR%%/src/runtime/ext/mysql_stats.cpp
%%DATADIR%%/src/runtime/ext/mysql_stats.h
%%DATADIR%%/src/runtime/ext/pdo_driver.cpp
%%DATADIR%%/src/runtime/ext/pdo_driver.h
%%DATADIR%%/src/runtime/ext/pdo_mysql.cpp
%%DATADIR%%/src/runtime/ext/pdo_mysql.h
%%DATADIR%%/src/runtime/ext/pdo_sqlite.cpp
%%DATADIR%%/src/runtime/ext/pdo_sqlite.h
%%DATADIR%%/src/runtime/ext/php_unicode.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_apache.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_apc.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_apd.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_array.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_bcmath.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_bzip2.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_class.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_closure.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_continuation.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_ctype.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_curl.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_datetime.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_debugger.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_domdocument.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_error.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_fb.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_file.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_function.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_hash.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_iconv.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_icu.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_icu_ucsdet.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_icu_uspoof.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_image.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_imagesprite.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_imap.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_intl.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_ipc.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_iterator.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_json.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_ldap.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_magick.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_mailparse.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_math.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_mb.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_mcrypt.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_memcache.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_memcached.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_misc.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_mysql.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_network.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_openssl.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_options.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_oracle.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_output.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_pdo.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_php_mcc.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_posix.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_preg.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_process.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_reflection.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_server.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_session.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_simplexml.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_soap.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_socket.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_spl.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_splfile.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_sqlite3.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_stream.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_string.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_thread.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_thrift.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_url.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_variable.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_xml.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_xmlreader.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_xmlwriter.h
%%DATADIR%%/src/runtime/ext/profile/extprofile_zlib.h
%%DATADIR%%/src/runtime/ext/quicklz.h
%%DATADIR%%/src/runtime/ext/quicklz.inc
%%DATADIR%%/src/runtime/ext/sep/base.php
%%DATADIR%%/src/runtime/ext/sep/mhash/Makefile
%%DATADIR%%/src/runtime/ext/sep/mhash/ext_mhash.cpp
%%DATADIR%%/src/runtime/ext/sep/mhash/ext_mhash.h
%%DATADIR%%/src/runtime/ext/sep/mhash/extmap_mhash.cpp
%%DATADIR%%/src/runtime/ext/sep/mhash/extmap_mhash.h
%%DATADIR%%/src/runtime/ext/sep/mhash/extprofile_mhash.h
%%DATADIR%%/src/runtime/ext/sep/mhash/mhash.idl.php
%%DATADIR%%/src/runtime/ext/sep/mhash/mhash.inc
%%DATADIR%%/src/runtime/ext/sep/mhash/test_ext_mhash.cpp
%%DATADIR%%/src/runtime/ext/sep/mhash/test_ext_mhash.h
%%DATADIR%%/src/runtime/ext/sep/rules.mk
%%DATADIR%%/src/runtime/ext/soap/encoding.cpp
%%DATADIR%%/src/runtime/ext/soap/encoding.h
%%DATADIR%%/src/runtime/ext/soap/packet.cpp
%%DATADIR%%/src/runtime/ext/soap/packet.h
%%DATADIR%%/src/runtime/ext/soap/schema.cpp
%%DATADIR%%/src/runtime/ext/soap/sdl.cpp
%%DATADIR%%/src/runtime/ext/soap/sdl.h
%%DATADIR%%/src/runtime/ext/soap/soap.cpp
%%DATADIR%%/src/runtime/ext/soap/soap.h
%%DATADIR%%/src/runtime/ext/soap/xml.cpp
%%DATADIR%%/src/runtime/ext/soap/xml.h
%%DATADIR%%/src/runtime/ext/thrift/binary.cpp
%%DATADIR%%/src/runtime/ext/thrift/compact.cpp
%%DATADIR%%/src/runtime/ext/thrift/transport.h
%%DATADIR%%/src/runtime/ext/unicode_data.h
%%DATADIR%%/src/runtime/makeall.sh
%%DATADIR%%/src/runtime/tmp/Makefile
%%DATADIR%%/src/runtime/tmp/README
%%DATADIR%%/src/runtime/tmp/cleanup.sh
%%DATADIR%%/src/runtime/tmp/mergecpp.sh
%%DATADIR%%/src/runtime/tmp/run.cpp
%%DATADIR%%/src/runtime/tmp/script.mk
%%DATADIR%%/src/runtime/tmp/single.mk
%%DATADIR%%/src/runtime/tmp/test.c
%%DATADIR%%/src/system/Makefile
%%DATADIR%%/src/system/apache.inc
%%DATADIR%%/src/system/apc.inc
%%DATADIR%%/src/system/apd.inc
%%DATADIR%%/src/system/array.inc
%%DATADIR%%/src/system/bcmath.inc
%%DATADIR%%/src/system/bzip2.inc
%%DATADIR%%/src/system/class.inc
%%DATADIR%%/src/system/classes/arrayaccess.php
%%DATADIR%%/src/system/classes/debugger.php
%%DATADIR%%/src/system/classes/directory.php
%%DATADIR%%/src/system/classes/directoryiterator.php
%%DATADIR%%/src/system/classes/exception.php
%%DATADIR%%/src/system/classes/fbmysqllexer.php
%%DATADIR%%/src/system/classes/iterator.php
%%DATADIR%%/src/system/classes/reflection.php
%%DATADIR%%/src/system/classes/soapfault.php
%%DATADIR%%/src/system/classes/splfile.php
%%DATADIR%%/src/system/classes/splobjectstorage.php
%%DATADIR%%/src/system/classes/stdclass.php
%%DATADIR%%/src/system/classes/xhprof.php
%%DATADIR%%/src/system/closure.inc
%%DATADIR%%/src/system/continuation.inc
%%DATADIR%%/src/system/ctype.inc
%%DATADIR%%/src/system/curl.inc
%%DATADIR%%/src/system/datetime.inc
%%DATADIR%%/src/system/debugger.inc
%%DATADIR%%/src/system/domdocument.inc
%%DATADIR%%/src/system/error.inc
%%DATADIR%%/src/system/ext.inc
%%DATADIR%%/src/system/fb.inc
%%DATADIR%%/src/system/file.inc
%%DATADIR%%/src/system/function.inc
%%DATADIR%%/src/system/gen/cls/AppendIterator.fw.h
%%DATADIR%%/src/system/gen/cls/AppendIterator.h
%%DATADIR%%/src/system/gen/cls/ArrayAccess.fw.h
%%DATADIR%%/src/system/gen/cls/ArrayAccess.h
%%DATADIR%%/src/system/gen/cls/ArrayIterator.fw.h
%%DATADIR%%/src/system/gen/cls/ArrayIterator.h
%%DATADIR%%/src/system/gen/cls/BadFunctionCallException.fw.h
%%DATADIR%%/src/system/gen/cls/BadFunctionCallException.h
%%DATADIR%%/src/system/gen/cls/BadMethodCallException.fw.h
%%DATADIR%%/src/system/gen/cls/BadMethodCallException.h
%%DATADIR%%/src/system/gen/cls/Countable.fw.h
%%DATADIR%%/src/system/gen/cls/Countable.h
%%DATADIR%%/src/system/gen/cls/DOMException.fw.h
%%DATADIR%%/src/system/gen/cls/DOMException.h
%%DATADIR%%/src/system/gen/cls/DebuggerCommand.fw.h
%%DATADIR%%/src/system/gen/cls/DebuggerCommand.h
%%DATADIR%%/src/system/gen/cls/Directory.fw.h
%%DATADIR%%/src/system/gen/cls/Directory.h
%%DATADIR%%/src/system/gen/cls/DirectoryIterator.fw.h
%%DATADIR%%/src/system/gen/cls/DirectoryIterator.h
%%DATADIR%%/src/system/gen/cls/DomainException.fw.h
%%DATADIR%%/src/system/gen/cls/DomainException.h
%%DATADIR%%/src/system/gen/cls/ErrorException.fw.h
%%DATADIR%%/src/system/gen/cls/ErrorException.h
%%DATADIR%%/src/system/gen/cls/Exception.fw.h
%%DATADIR%%/src/system/gen/cls/Exception.h
%%DATADIR%%/src/system/gen/cls/FB_MySQLLexer.fw.h
%%DATADIR%%/src/system/gen/cls/FB_MySQLLexer.h
%%DATADIR%%/src/system/gen/cls/FilterIterator.fw.h
%%DATADIR%%/src/system/gen/cls/FilterIterator.h
%%DATADIR%%/src/system/gen/cls/InvalidArgumentException.fw.h
%%DATADIR%%/src/system/gen/cls/InvalidArgumentException.h
%%DATADIR%%/src/system/gen/cls/Iterator.fw.h
%%DATADIR%%/src/system/gen/cls/Iterator.h
%%DATADIR%%/src/system/gen/cls/IteratorAggregate.fw.h
%%DATADIR%%/src/system/gen/cls/IteratorAggregate.h
%%DATADIR%%/src/system/gen/cls/IteratorIterator.fw.h
%%DATADIR%%/src/system/gen/cls/IteratorIterator.h
%%DATADIR%%/src/system/gen/cls/LengthException.fw.h
%%DATADIR%%/src/system/gen/cls/LengthException.h
%%DATADIR%%/src/system/gen/cls/LogicException.fw.h
%%DATADIR%%/src/system/gen/cls/LogicException.h
%%DATADIR%%/src/system/gen/cls/MutableArrayIterator.fw.h
%%DATADIR%%/src/system/gen/cls/MutableArrayIterator.h
%%DATADIR%%/src/system/gen/cls/OutOfBoundsException.fw.h
%%DATADIR%%/src/system/gen/cls/OutOfBoundsException.h
%%DATADIR%%/src/system/gen/cls/OutOfRangeException.fw.h
%%DATADIR%%/src/system/gen/cls/OutOfRangeException.h
%%DATADIR%%/src/system/gen/cls/OuterIterator.fw.h
%%DATADIR%%/src/system/gen/cls/OuterIterator.h
%%DATADIR%%/src/system/gen/cls/OverflowException.fw.h
%%DATADIR%%/src/system/gen/cls/OverflowException.h
%%DATADIR%%/src/system/gen/cls/PDOException.fw.h
%%DATADIR%%/src/system/gen/cls/PDOException.h
%%DATADIR%%/src/system/gen/cls/RangeException.fw.h
%%DATADIR%%/src/system/gen/cls/RangeException.h
%%DATADIR%%/src/system/gen/cls/RecursiveDirectoryIterator.fw.h
%%DATADIR%%/src/system/gen/cls/RecursiveDirectoryIterator.h
%%DATADIR%%/src/system/gen/cls/RecursiveIterator.fw.h
%%DATADIR%%/src/system/gen/cls/RecursiveIterator.h
%%DATADIR%%/src/system/gen/cls/RecursiveIteratorIterator.fw.h
%%DATADIR%%/src/system/gen/cls/RecursiveIteratorIterator.h
%%DATADIR%%/src/system/gen/cls/ReflectionClass.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionClass.h
%%DATADIR%%/src/system/gen/cls/ReflectionException.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionException.h
%%DATADIR%%/src/system/gen/cls/ReflectionExtension.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionExtension.h
%%DATADIR%%/src/system/gen/cls/ReflectionFunction.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionFunction.h
%%DATADIR%%/src/system/gen/cls/ReflectionFunctionAbstract.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionFunctionAbstract.h
%%DATADIR%%/src/system/gen/cls/ReflectionMethod.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionMethod.h
%%DATADIR%%/src/system/gen/cls/ReflectionObject.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionObject.h
%%DATADIR%%/src/system/gen/cls/ReflectionParameter.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionParameter.h
%%DATADIR%%/src/system/gen/cls/ReflectionProperty.fw.h
%%DATADIR%%/src/system/gen/cls/ReflectionProperty.h
%%DATADIR%%/src/system/gen/cls/Reflector.fw.h
%%DATADIR%%/src/system/gen/cls/Reflector.h
%%DATADIR%%/src/system/gen/cls/RuntimeException.fw.h
%%DATADIR%%/src/system/gen/cls/RuntimeException.h
%%DATADIR%%/src/system/gen/cls/SeekableIterator.fw.h
%%DATADIR%%/src/system/gen/cls/SeekableIterator.h
%%DATADIR%%/src/system/gen/cls/Serializable.fw.h
%%DATADIR%%/src/system/gen/cls/Serializable.h
%%DATADIR%%/src/system/gen/cls/SoapFault.fw.h
%%DATADIR%%/src/system/gen/cls/SoapFault.h
%%DATADIR%%/src/system/gen/cls/SplFileInfo.fw.h
%%DATADIR%%/src/system/gen/cls/SplFileInfo.h
%%DATADIR%%/src/system/gen/cls/SplFileObject.fw.h
%%DATADIR%%/src/system/gen/cls/SplFileObject.h
%%DATADIR%%/src/system/gen/cls/SplObjectStorage.fw.h
%%DATADIR%%/src/system/gen/cls/SplObjectStorage.h
%%DATADIR%%/src/system/gen/cls/Traversable.fw.h
%%DATADIR%%/src/system/gen/cls/Traversable.h
%%DATADIR%%/src/system/gen/cls/UnderflowException.fw.h
%%DATADIR%%/src/system/gen/cls/UnderflowException.h
%%DATADIR%%/src/system/gen/cls/UnexpectedValueException.fw.h
%%DATADIR%%/src/system/gen/cls/UnexpectedValueException.h
%%DATADIR%%/src/system/gen/cls/XhprofFrame.fw.h
%%DATADIR%%/src/system/gen/cls/XhprofFrame.h
%%DATADIR%%/src/system/gen/cls/__PHP_Incomplete_Class.fw.h
%%DATADIR%%/src/system/gen/cls/__PHP_Incomplete_Class.h
%%DATADIR%%/src/system/gen/cls/stdClass.fw.h
%%DATADIR%%/src/system/gen/cls/stdClass.h
%%DATADIR%%/src/system/gen/php/classes/arrayaccess.cpp
%%DATADIR%%/src/system/gen/php/classes/arrayaccess.fw.h
%%DATADIR%%/src/system/gen/php/classes/arrayaccess.fws.h
%%DATADIR%%/src/system/gen/php/classes/arrayaccess.h
%%DATADIR%%/src/system/gen/php/classes/debugger.cpp
%%DATADIR%%/src/system/gen/php/classes/debugger.fw.h
%%DATADIR%%/src/system/gen/php/classes/debugger.fws.h
%%DATADIR%%/src/system/gen/php/classes/debugger.h
%%DATADIR%%/src/system/gen/php/classes/directory.cpp
%%DATADIR%%/src/system/gen/php/classes/directory.fw.h
%%DATADIR%%/src/system/gen/php/classes/directory.fws.h
%%DATADIR%%/src/system/gen/php/classes/directory.h
%%DATADIR%%/src/system/gen/php/classes/directoryiterator.cpp
%%DATADIR%%/src/system/gen/php/classes/directoryiterator.fw.h
%%DATADIR%%/src/system/gen/php/classes/directoryiterator.fws.h
%%DATADIR%%/src/system/gen/php/classes/directoryiterator.h
%%DATADIR%%/src/system/gen/php/classes/exception.cpp
%%DATADIR%%/src/system/gen/php/classes/exception.fw.h
%%DATADIR%%/src/system/gen/php/classes/exception.fws.h
%%DATADIR%%/src/system/gen/php/classes/exception.h
%%DATADIR%%/src/system/gen/php/classes/fbmysqllexer.cpp
%%DATADIR%%/src/system/gen/php/classes/fbmysqllexer.fw.h
%%DATADIR%%/src/system/gen/php/classes/fbmysqllexer.fws.h
%%DATADIR%%/src/system/gen/php/classes/fbmysqllexer.h
%%DATADIR%%/src/system/gen/php/classes/iterator.cpp
%%DATADIR%%/src/system/gen/php/classes/iterator.fw.h
%%DATADIR%%/src/system/gen/php/classes/iterator.fws.h
%%DATADIR%%/src/system/gen/php/classes/iterator.h
%%DATADIR%%/src/system/gen/php/classes/reflection.cpp
%%DATADIR%%/src/system/gen/php/classes/reflection.fw.h
%%DATADIR%%/src/system/gen/php/classes/reflection.fws.h
%%DATADIR%%/src/system/gen/php/classes/reflection.h
%%DATADIR%%/src/system/gen/php/classes/soapfault.cpp
%%DATADIR%%/src/system/gen/php/classes/soapfault.fw.h
%%DATADIR%%/src/system/gen/php/classes/soapfault.fws.h
%%DATADIR%%/src/system/gen/php/classes/soapfault.h
%%DATADIR%%/src/system/gen/php/classes/splfile.cpp
%%DATADIR%%/src/system/gen/php/classes/splfile.fw.h
%%DATADIR%%/src/system/gen/php/classes/splfile.fws.h
%%DATADIR%%/src/system/gen/php/classes/splfile.h
%%DATADIR%%/src/system/gen/php/classes/splobjectstorage.cpp
%%DATADIR%%/src/system/gen/php/classes/splobjectstorage.fw.h
%%DATADIR%%/src/system/gen/php/classes/splobjectstorage.fws.h
%%DATADIR%%/src/system/gen/php/classes/splobjectstorage.h
%%DATADIR%%/src/system/gen/php/classes/stdclass.cpp
%%DATADIR%%/src/system/gen/php/classes/stdclass.fw.h
%%DATADIR%%/src/system/gen/php/classes/stdclass.fws.h
%%DATADIR%%/src/system/gen/php/classes/stdclass.h
%%DATADIR%%/src/system/gen/php/classes/xhprof.cpp
%%DATADIR%%/src/system/gen/php/classes/xhprof.fw.h
%%DATADIR%%/src/system/gen/php/classes/xhprof.fws.h
%%DATADIR%%/src/system/gen/php/classes/xhprof.h
%%DATADIR%%/src/system/gen/php/globals/constants.cpp
%%DATADIR%%/src/system/gen/php/globals/constants.fw.h
%%DATADIR%%/src/system/gen/php/globals/constants.fws.h
%%DATADIR%%/src/system/gen/php/globals/constants.h
%%DATADIR%%/src/system/gen/php/globals/symbols.cpp
%%DATADIR%%/src/system/gen/php/globals/symbols.fw.h
%%DATADIR%%/src/system/gen/php/globals/symbols.fws.h
%%DATADIR%%/src/system/gen/php/globals/symbols.h
%%DATADIR%%/src/system/gen/sys/dynamic_table_class.cpp
%%DATADIR%%/src/system/gen/sys/dynamic_table_constant.cpp
%%DATADIR%%/src/system/gen/sys/dynamic_table_func.no.cpp
%%DATADIR%%/src/system/gen/sys/literal_strings.h
%%DATADIR%%/src/system/gen/sys/literal_strings_0.no.cpp
%%DATADIR%%/src/system/gen/sys/literal_strings_remap.h
%%DATADIR%%/src/system/gen/sys/scalar_arrays.no.cpp
%%DATADIR%%/src/system/gen/sys/scalar_arrays_0.no.cpp
%%DATADIR%%/src/system/gen/sys/scalar_arrays_remap.h
%%DATADIR%%/src/system/gen/sys/scalar_integers.cpp
%%DATADIR%%/src/system/gen/sys/system_globals.cpp
%%DATADIR%%/src/system/gen/sys/system_globals.h
%%DATADIR%%/src/system/globals/Makefile
%%DATADIR%%/src/system/globals/constants.php
%%DATADIR%%/src/system/globals/symbols.php
%%DATADIR%%/src/system/hash.inc
%%DATADIR%%/src/system/helper.idl.php
%%DATADIR%%/src/system/helper.inc
%%DATADIR%%/src/system/iconv.inc
%%DATADIR%%/src/system/icu.inc
%%DATADIR%%/src/system/icu_ucsdet.inc
%%DATADIR%%/src/system/icu_uspoof.inc
%%DATADIR%%/src/system/image.inc
%%DATADIR%%/src/system/imagesprite.inc
%%DATADIR%%/src/system/imap.inc
%%DATADIR%%/src/system/intl.inc
%%DATADIR%%/src/system/ipc.inc
%%DATADIR%%/src/system/iterator.inc
%%DATADIR%%/src/system/json.inc
%%DATADIR%%/src/system/ldap.inc
%%DATADIR%%/src/system/lib/systemlib.cpp
%%DATADIR%%/src/system/lib/systemlib.h
%%DATADIR%%/src/system/magick.inc
%%DATADIR%%/src/system/mailparse.inc
%%DATADIR%%/src/system/math.inc
%%DATADIR%%/src/system/mb.inc
%%DATADIR%%/src/system/mcrypt.inc
%%DATADIR%%/src/system/memcache.inc
%%DATADIR%%/src/system/memcached.inc
%%DATADIR%%/src/system/misc.inc
%%DATADIR%%/src/system/mysql.inc
%%DATADIR%%/src/system/network.inc
%%DATADIR%%/src/system/openssl.inc
%%DATADIR%%/src/system/options.inc
%%DATADIR%%/src/system/output.inc
%%DATADIR%%/src/system/pdo.inc
%%DATADIR%%/src/system/posix.inc
%%DATADIR%%/src/system/preg.inc
%%DATADIR%%/src/system/process.inc
%%DATADIR%%/src/system/reflection.inc
%%DATADIR%%/src/system/server.inc
%%DATADIR%%/src/system/session.inc
%%DATADIR%%/src/system/simplexml.inc
%%DATADIR%%/src/system/soap.inc
%%DATADIR%%/src/system/socket.inc
%%DATADIR%%/src/system/spl.inc
%%DATADIR%%/src/system/splfile.inc
%%DATADIR%%/src/system/sqlite3.inc
%%DATADIR%%/src/system/stream.inc
%%DATADIR%%/src/system/string.inc
%%DATADIR%%/src/system/thread.inc
%%DATADIR%%/src/system/thrift.inc
%%DATADIR%%/src/system/url.inc
%%DATADIR%%/src/system/variable.inc
%%DATADIR%%/src/system/xml.inc
%%DATADIR%%/src/system/xmlreader.inc
%%DATADIR%%/src/system/xmlwriter.inc
%%DATADIR%%/src/system/zlib.inc
%%DATADIR%%/src/util/Makefile
%%DATADIR%%/src/util/alloc.cpp
%%DATADIR%%/src/util/alloc.h
%%DATADIR%%/src/util/async_func.cpp
%%DATADIR%%/src/util/async_func.h
%%DATADIR%%/src/util/async_job.cpp
%%DATADIR%%/src/util/async_job.h
%%DATADIR%%/src/util/atomic.cpp
%%DATADIR%%/src/util/atomic.h
%%DATADIR%%/src/util/base.h
%%DATADIR%%/src/util/bits.h
%%DATADIR%%/src/util/capability.cpp
%%DATADIR%%/src/util/capability.h
%%DATADIR%%/src/util/case_insensitive.h
%%DATADIR%%/src/util/chunk_list.h
%%DATADIR%%/src/util/compatibility.cpp
%%DATADIR%%/src/util/compatibility.h
%%DATADIR%%/src/util/compression.cpp
%%DATADIR%%/src/util/compression.h
%%DATADIR%%/src/util/config.h
%%DATADIR%%/src/util/cronolog.cpp
%%DATADIR%%/src/util/cronolog.h
%%DATADIR%%/src/util/cronoutils.cpp
%%DATADIR%%/src/util/cronoutils.h
%%DATADIR%%/src/util/dataset.cpp
%%DATADIR%%/src/util/dataset.h
%%DATADIR%%/src/util/db_conn.cpp
%%DATADIR%%/src/util/db_conn.h
%%DATADIR%%/src/util/db_dataset.cpp
%%DATADIR%%/src/util/db_dataset.h
%%DATADIR%%/src/util/db_filter.cpp
%%DATADIR%%/src/util/db_filter.h
%%DATADIR%%/src/util/db_mysql.cpp
%%DATADIR%%/src/util/db_mysql.h
%%DATADIR%%/src/util/db_query.cpp
%%DATADIR%%/src/util/db_query.h
%%DATADIR%%/src/util/exception.cpp
%%DATADIR%%/src/util/exception.h
%%DATADIR%%/src/util/file_cache.cpp
%%DATADIR%%/src/util/file_cache.h
%%DATADIR%%/src/util/hash.cpp
%%DATADIR%%/src/util/hash.h
%%DATADIR%%/src/util/hdf.cpp
%%DATADIR%%/src/util/hdf.h
%%DATADIR%%/src/util/job_queue.h
%%DATADIR%%/src/util/json.cpp
%%DATADIR%%/src/util/json.h
%%DATADIR%%/src/util/lfu_table.h
%%DATADIR%%/src/util/light_process.cpp
%%DATADIR%%/src/util/light_process.h
%%DATADIR%%/src/util/lock.cpp
%%DATADIR%%/src/util/lock.h
%%DATADIR%%/src/util/log_aggregator.cpp
%%DATADIR%%/src/util/log_aggregator.h
%%DATADIR%%/src/util/logger.cpp
%%DATADIR%%/src/util/logger.h
%%DATADIR%%/src/util/mutex.h
%%DATADIR%%/src/util/neo/cs_config.h
%%DATADIR%%/src/util/neo/neo_err.c
%%DATADIR%%/src/util/neo/neo_err.h
%%DATADIR%%/src/util/neo/neo_files.c
%%DATADIR%%/src/util/neo/neo_files.h
%%DATADIR%%/src/util/neo/neo_hash.c
%%DATADIR%%/src/util/neo/neo_hash.h
%%DATADIR%%/src/util/neo/neo_hdf.c
%%DATADIR%%/src/util/neo/neo_hdf.h
%%DATADIR%%/src/util/neo/neo_misc.c
%%DATADIR%%/src/util/neo/neo_misc.h
%%DATADIR%%/src/util/neo/neo_rand.c
%%DATADIR%%/src/util/neo/neo_rand.h
%%DATADIR%%/src/util/neo/neo_str.c
%%DATADIR%%/src/util/neo/neo_str.h
%%DATADIR%%/src/util/neo/ulist.c
%%DATADIR%%/src/util/neo/ulist.h
%%DATADIR%%/src/util/neo/ulocks.c
%%DATADIR%%/src/util/neo/ulocks.h
%%DATADIR%%/src/util/neo/wildmat.c
%%DATADIR%%/src/util/neo/wildmat.h
%%DATADIR%%/src/util/network.cpp
%%DATADIR%%/src/util/network.h
%%DATADIR%%/src/util/parser/Makefile
%%DATADIR%%/src/util/parser/hphp.tab.hpp
%%DATADIR%%/src/util/parser/hphp.x
%%DATADIR%%/src/util/parser/hphp.y
%%DATADIR%%/src/util/parser/lex.yy.cpp
%%DATADIR%%/src/util/parser/location.h
%%DATADIR%%/src/util/parser/parser.cpp
%%DATADIR%%/src/util/parser/parser.h
%%DATADIR%%/src/util/parser/rules.mk
%%DATADIR%%/src/util/parser/scanner.cpp
%%DATADIR%%/src/util/parser/scanner.h
%%DATADIR%%/src/util/pointer_list.h
%%DATADIR%%/src/util/pool.h
%%DATADIR%%/src/util/preprocess.cpp
%%DATADIR%%/src/util/preprocess.h
%%DATADIR%%/src/util/process.cpp
%%DATADIR%%/src/util/process.h
%%DATADIR%%/src/util/shared_memory_allocator.cpp
%%DATADIR%%/src/util/shared_memory_allocator.h
%%DATADIR%%/src/util/shm_counter.cpp
%%DATADIR%%/src/util/shm_counter.h
%%DATADIR%%/src/util/ssl_init.cpp
%%DATADIR%%/src/util/ssl_init.h
%%DATADIR%%/src/util/stack_trace.cpp
%%DATADIR%%/src/util/stack_trace.h
%%DATADIR%%/src/util/string_bag.cpp
%%DATADIR%%/src/util/string_bag.h
%%DATADIR%%/src/util/synchronizable.cpp
%%DATADIR%%/src/util/synchronizable.h
%%DATADIR%%/src/util/synchronizable_multi.cpp
%%DATADIR%%/src/util/synchronizable_multi.h
%%DATADIR%%/src/util/text_art.cpp
%%DATADIR%%/src/util/text_art.h
%%DATADIR%%/src/util/text_color.cpp
%%DATADIR%%/src/util/text_color.h
%%DATADIR%%/src/util/thread_local.cpp
%%DATADIR%%/src/util/thread_local.h
%%DATADIR%%/src/util/timer.cpp
%%DATADIR%%/src/util/timer.h
%%DATADIR%%/src/util/util.cpp
%%DATADIR%%/src/util/util.h
%%DATADIR%%/src/version
@dirrm %%DATADIR%%/src/util/parser
@dirrm %%DATADIR%%/src/util/neo
@dirrm %%DATADIR%%/src/util
@dirrm %%DATADIR%%/src/system/lib
@dirrm %%DATADIR%%/src/system/globals
@dirrm %%DATADIR%%/src/system/gen/sys
@dirrm %%DATADIR%%/src/system/gen/php/globals
@dirrm %%DATADIR%%/src/system/gen/php/classes
@dirrm %%DATADIR%%/src/system/gen/php
@dirrm %%DATADIR%%/src/system/gen/cls
@dirrm %%DATADIR%%/src/system/gen
@dirrm %%DATADIR%%/src/system/classes
@dirrm %%DATADIR%%/src/system
@dirrm %%DATADIR%%/src/runtime/tmp
@dirrm %%DATADIR%%/src/runtime/ext/thrift
@dirrm %%DATADIR%%/src/runtime/ext/soap
@dirrm %%DATADIR%%/src/runtime/ext/sep/mhash
@dirrm %%DATADIR%%/src/runtime/ext/sep
@dirrm %%DATADIR%%/src/runtime/ext/profile
@dirrm %%DATADIR%%/src/runtime/ext/mailparse
@dirrm %%DATADIR%%/src/runtime/ext/icu
@dirrm %%DATADIR%%/src/runtime/ext/hash
@dirrm %%DATADIR%%/src/runtime/ext/bcmath
@dirrm %%DATADIR%%/src/runtime/ext
@dirrm %%DATADIR%%/src/runtime/eval/runtime
@dirrm %%DATADIR%%/src/runtime/eval/parser
@dirrm %%DATADIR%%/src/runtime/eval/ext
@dirrm %%DATADIR%%/src/runtime/eval/debugger/cmd
@dirrm %%DATADIR%%/src/runtime/eval/debugger
@dirrm %%DATADIR%%/src/runtime/eval/base
@dirrm %%DATADIR%%/src/runtime/eval/ast
@dirrm %%DATADIR%%/src/runtime/eval/analysis
@dirrm %%DATADIR%%/src/runtime/eval
@dirrm %%DATADIR%%/src/runtime/base/zend
@dirrm %%DATADIR%%/src/runtime/base/util
@dirrm %%DATADIR%%/src/runtime/base/time
@dirrm %%DATADIR%%/src/runtime/base/taint
@dirrm %%DATADIR%%/src/runtime/base/shared
@dirrm %%DATADIR%%/src/runtime/base/server
@dirrm %%DATADIR%%/src/runtime/base/memory
@dirrm %%DATADIR%%/src/runtime/base/file
@dirrm %%DATADIR%%/src/runtime/base/debug
@dirrm %%DATADIR%%/src/runtime/base/array
@dirrm %%DATADIR%%/src/runtime/base
@dirrm %%DATADIR%%/src/runtime
@dirrm %%DATADIR%%/src
@dirrm %%DATADIR%%/CMake
@dirrmtry %%DATADIR%%/bin
@dirrmtry %%DATADIR%%