summaryrefslogtreecommitdiffstats
path: root/third_party/libxml/libxml.xcodeproj/project.pbxproj
blob: 428693cf2eeeab84414675bcfe508c3190fb50f9 (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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 45;
	objects = {

/* Begin PBXAggregateTarget section */
		7B466AB40E5E3AA900C91F63 /* All */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 7B466AC50E5E3B1500C91F63 /* Build configuration list for PBXAggregateTarget "All" */;
			buildPhases = (
			);
			dependencies = (
				7B466AB80E5E3AB400C91F63 /* PBXTargetDependency */,
				7B466ABA0E5E3AB400C91F63 /* PBXTargetDependency */,
				7B466ABC0E5E3AB400C91F63 /* PBXTargetDependency */,
			);
			name = All;
			productName = All;
		};
		7BE970530D872DC200F86D4B /* libxml_config */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 7BE970570D872DC700F86D4B /* Build configuration list for PBXAggregateTarget "libxml_config" */;
			buildPhases = (
				7BE970520D872DC200F86D4B /* Pre-Build */,
			);
			dependencies = (
			);
			name = libxml_config;
			productName = libxml_config;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		7B12F48D0D8EE25A00CB6E8F /* c14n.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3620D8EE25900CB6E8F /* c14n.c */; };
		7B12F48E0D8EE25A00CB6E8F /* catalog.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3630D8EE25900CB6E8F /* catalog.c */; };
		7B12F48F0D8EE25A00CB6E8F /* chvalid.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F36A0D8EE25900CB6E8F /* chvalid.c */; };
		7B12F4910D8EE25A00CB6E8F /* debugXML.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3750D8EE25900CB6E8F /* debugXML.c */; };
		7B12F4920D8EE25A00CB6E8F /* dict.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3770D8EE25900CB6E8F /* dict.c */; };
		7B12F4930D8EE25A00CB6E8F /* DOCBparser.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3780D8EE25900CB6E8F /* DOCBparser.c */; };
		7B12F4950D8EE25A00CB6E8F /* encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F37A0D8EE25900CB6E8F /* encoding.c */; };
		7B12F4960D8EE25A00CB6E8F /* entities.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F37B0D8EE25900CB6E8F /* entities.c */; };
		7B12F4970D8EE25A00CB6E8F /* error.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F37C0D8EE25900CB6E8F /* error.c */; };
		7B12F4980D8EE25A00CB6E8F /* globals.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F37F0D8EE25900CB6E8F /* globals.c */; };
		7B12F4990D8EE25A00CB6E8F /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3810D8EE25900CB6E8F /* hash.c */; };
		7B12F49A0D8EE25A00CB6E8F /* HTMLparser.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3820D8EE25900CB6E8F /* HTMLparser.c */; };
		7B12F49B0D8EE25A00CB6E8F /* HTMLtree.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3830D8EE25900CB6E8F /* HTMLtree.c */; };
		7B12F4CD0D8EE25A00CB6E8F /* legacy.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3BA0D8EE25900CB6E8F /* legacy.c */; };
		7B12F4CF0D8EE25A00CB6E8F /* list.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3C10D8EE25900CB6E8F /* list.c */; };
		7B12F4D00D8EE25A00CB6E8F /* nanoftp.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3C50D8EE25900CB6E8F /* nanoftp.c */; };
		7B12F4D10D8EE25A00CB6E8F /* nanohttp.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3C60D8EE25900CB6E8F /* nanohttp.c */; };
		7B12F4D20D8EE25A00CB6E8F /* parser.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3C80D8EE25900CB6E8F /* parser.c */; };
		7B12F4D30D8EE25A00CB6E8F /* parserInternals.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3C90D8EE25900CB6E8F /* parserInternals.c */; };
		7B12F4D40D8EE25A00CB6E8F /* pattern.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3CA0D8EE25900CB6E8F /* pattern.c */; };
		7B12F4D50D8EE25A00CB6E8F /* relaxng.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3D00D8EE25900CB6E8F /* relaxng.c */; };
		7B12F4D80D8EE25A00CB6E8F /* SAX.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3D30D8EE25900CB6E8F /* SAX.c */; };
		7B12F4D90D8EE25A00CB6E8F /* SAX2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3D40D8EE25900CB6E8F /* SAX2.c */; };
		7B12F4DA0D8EE25A00CB6E8F /* schematron.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3D50D8EE25900CB6E8F /* schematron.c */; };
		7B12F4EA0D8EE25A00CB6E8F /* threads.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3E50D8EE25900CB6E8F /* threads.c */; };
		7B12F4EB0D8EE25A00CB6E8F /* tree.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3E80D8EE25900CB6E8F /* tree.c */; };
		7B12F4F40D8EE25A00CB6E8F /* uri.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3F10D8EE25900CB6E8F /* uri.c */; };
		7B12F4F50D8EE25A00CB6E8F /* valid.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3F20D8EE25900CB6E8F /* valid.c */; };
		7B12F4F80D8EE25A00CB6E8F /* xinclude.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3FC0D8EE25900CB6E8F /* xinclude.c */; };
		7B12F4F90D8EE25A00CB6E8F /* xlink.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F3FD0D8EE25900CB6E8F /* xlink.c */; };
		7B12F4FB0D8EE25A00CB6E8F /* xmlIO.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F4020D8EE25900CB6E8F /* xmlIO.c */; };
		7B12F4FD0D8EE25A00CB6E8F /* xmlmemory.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F4040D8EE25900CB6E8F /* xmlmemory.c */; };
		7B12F4FE0D8EE25A00CB6E8F /* xmlmodule.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F4050D8EE25900CB6E8F /* xmlmodule.c */; };
		7B12F4FF0D8EE25A00CB6E8F /* xmlreader.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F4060D8EE25900CB6E8F /* xmlreader.c */; };
		7B12F5000D8EE25A00CB6E8F /* xmlregexp.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F4070D8EE25900CB6E8F /* xmlregexp.c */; };
		7B12F5010D8EE25A00CB6E8F /* xmlsave.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F4080D8EE25900CB6E8F /* xmlsave.c */; };
		7B12F5020D8EE25A00CB6E8F /* xmlschemas.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F4090D8EE25900CB6E8F /* xmlschemas.c */; };
		7B12F5030D8EE25A00CB6E8F /* xmlschemastypes.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F40A0D8EE25900CB6E8F /* xmlschemastypes.c */; };
		7B12F5040D8EE25A00CB6E8F /* xmlstring.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F40B0D8EE25900CB6E8F /* xmlstring.c */; };
		7B12F5050D8EE25A00CB6E8F /* xmlunicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F40C0D8EE25900CB6E8F /* xmlunicode.c */; };
		7B12F5060D8EE25A00CB6E8F /* xmlwriter.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F40D0D8EE25900CB6E8F /* xmlwriter.c */; };
		7B12F5070D8EE25A00CB6E8F /* xpath.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F40E0D8EE25900CB6E8F /* xpath.c */; };
		7B12F5080D8EE25A00CB6E8F /* xpointer.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F40F0D8EE25A00CB6E8F /* xpointer.c */; };
		7B12F5550D8EE91800CB6E8F /* xmlcatalog.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F5540D8EE91800CB6E8F /* xmlcatalog.c */; };
		7B12F55A0D8EE93300CB6E8F /* libxml.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B12F2AC0D8EE24200CB6E8F /* libxml.a */; };
		7B12F5990D8EEB4A00CB6E8F /* xmllint.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B12F5980D8EEB4A00CB6E8F /* xmllint.c */; };
		7B12F59F0D8EEB6900CB6E8F /* libxml.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B12F2AC0D8EE24200CB6E8F /* libxml.a */; };
		7B466AD80E5E3BC200C91F63 /* libzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B466A7E0E5E385900C91F63 /* libzlib.a */; };
		7B466ADB0E5E3BD800C91F63 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B466A760E5E383D00C91F63 /* libicuuc.a */; };
		7B466ADE0E5E3BE200C91F63 /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B466A6E0E5E383D00C91F63 /* libicudata.a */; };
		7B466AE70E5E3C1000C91F63 /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B466A6E0E5E383D00C91F63 /* libicudata.a */; };
		7B466AE80E5E3C1000C91F63 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B466A760E5E383D00C91F63 /* libicuuc.a */; };
		7B466AE90E5E3C1000C91F63 /* libzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B466A7E0E5E385900C91F63 /* libzlib.a */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		7B12F2AF0D8EE24800CB6E8F /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7BE970460D872C5400F86D4B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7BE970530D872DC200F86D4B;
			remoteInfo = libxml_config;
		};
		7B12F5580D8EE92A00CB6E8F /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7BE970460D872C5400F86D4B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B12F2AB0D8EE24200CB6E8F;
			remoteInfo = xml;
		};
		7B12F59D0D8EEB5E00CB6E8F /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7BE970460D872C5400F86D4B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B12F2AB0D8EE24200CB6E8F;
			remoteInfo = xml;
		};
		7B466A6B0E5E383D00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD540D60D6F7EFE003CD41E;
			remoteInfo = genccode;
		};
		7B466A6D0E5E383D00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 82C262C40DCF9411005CFE91;
			remoteInfo = icudata;
		};
		7B466A6F0E5E383D00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD5408B0D6F743F003CD41E;
			remoteInfo = icudata_stub;
		};
		7B466A710E5E383D00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD53EA60D6F6FC7003CD41E;
			remoteInfo = icui18n;
		};
		7B466A730E5E383D00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD540260D6F727B003CD41E;
			remoteInfo = icutu;
		};
		7B466A750E5E383D00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD53AAB0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		7B466A770E5E383D00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = 7BD5410E0D6F8457003CD41E;
			remoteInfo = icupkg;
		};
		7B466A7D0E5E385900C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B466A790E5E385900C91F63 /* zlib.xcodeproj */;
			proxyType = 2;
			remoteGlobalIDString = D2AAC046055464E500DB518D;
			remoteInfo = zlib;
		};
		7B466AB70E5E3AB400C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7BE970460D872C5400F86D4B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B12F2AB0D8EE24200CB6E8F;
			remoteInfo = xml;
		};
		7B466AB90E5E3AB400C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7BE970460D872C5400F86D4B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B12F54D0D8EE8E400CB6E8F;
			remoteInfo = xmlcatalog;
		};
		7B466ABB0E5E3AB400C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7BE970460D872C5400F86D4B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 7B12F58E0D8EEB2F00CB6E8F;
			remoteInfo = xmllint;
		};
		7B466AD60E5E3BB200C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B466A790E5E385900C91F63 /* zlib.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = zlib;
		};
		7B466ADF0E5E3BEA00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 82C262C30DCF9411005CFE91;
			remoteInfo = icudata;
		};
		7B466AE10E5E3BEA00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53AAA0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		7B466AEA0E5E3C1B00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 82C262C30DCF9411005CFE91;
			remoteInfo = icudata;
		};
		7B466AEC0E5E3C1B00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = 7BD53AAA0D6F6671003CD41E;
			remoteInfo = icuuc;
		};
		7B466AEE0E5E3C1B00C91F63 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 7B466A790E5E385900C91F63 /* zlib.xcodeproj */;
			proxyType = 1;
			remoteGlobalIDString = D2AAC045055464E500DB518D;
			remoteInfo = zlib;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		7B12F2AC0D8EE24200CB6E8F /* libxml.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libxml.a; sourceTree = BUILT_PRODUCTS_DIR; };
		7B12F2B30D8EE25900CB6E8F /* acconfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = acconfig.h; sourceTree = "<group>"; };
		7B12F3620D8EE25900CB6E8F /* c14n.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = c14n.c; sourceTree = "<group>"; };
		7B12F3630D8EE25900CB6E8F /* catalog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = catalog.c; sourceTree = "<group>"; };
		7B12F36A0D8EE25900CB6E8F /* chvalid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chvalid.c; sourceTree = "<group>"; };
		7B12F36D0D8EE25900CB6E8F /* config.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = config.h.in; sourceTree = "<group>"; };
		7B12F3750D8EE25900CB6E8F /* debugXML.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = debugXML.c; sourceTree = "<group>"; };
		7B12F3770D8EE25900CB6E8F /* dict.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dict.c; sourceTree = "<group>"; };
		7B12F3780D8EE25900CB6E8F /* DOCBparser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = DOCBparser.c; sourceTree = "<group>"; };
		7B12F3790D8EE25900CB6E8F /* elfgcchack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = elfgcchack.h; sourceTree = "<group>"; };
		7B12F37A0D8EE25900CB6E8F /* encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = encoding.c; sourceTree = "<group>"; };
		7B12F37B0D8EE25900CB6E8F /* entities.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = entities.c; sourceTree = "<group>"; };
		7B12F37C0D8EE25900CB6E8F /* error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = error.c; sourceTree = "<group>"; };
		7B12F37F0D8EE25900CB6E8F /* globals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = globals.c; sourceTree = "<group>"; };
		7B12F3810D8EE25900CB6E8F /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hash.c; sourceTree = "<group>"; };
		7B12F3820D8EE25900CB6E8F /* HTMLparser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HTMLparser.c; sourceTree = "<group>"; };
		7B12F3830D8EE25900CB6E8F /* HTMLtree.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = HTMLtree.c; sourceTree = "<group>"; };
		7B12F3860D8EE25900CB6E8F /* c14n.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = c14n.h; sourceTree = "<group>"; };
		7B12F3870D8EE25900CB6E8F /* catalog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = catalog.h; sourceTree = "<group>"; };
		7B12F3880D8EE25900CB6E8F /* chvalid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chvalid.h; sourceTree = "<group>"; };
		7B12F3890D8EE25900CB6E8F /* debugXML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debugXML.h; sourceTree = "<group>"; };
		7B12F38A0D8EE25900CB6E8F /* dict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dict.h; sourceTree = "<group>"; };
		7B12F38B0D8EE25900CB6E8F /* DOCBparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DOCBparser.h; sourceTree = "<group>"; };
		7B12F38C0D8EE25900CB6E8F /* encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = encoding.h; sourceTree = "<group>"; };
		7B12F38D0D8EE25900CB6E8F /* entities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = entities.h; sourceTree = "<group>"; };
		7B12F38E0D8EE25900CB6E8F /* globals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = globals.h; sourceTree = "<group>"; };
		7B12F38F0D8EE25900CB6E8F /* hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hash.h; sourceTree = "<group>"; };
		7B12F3900D8EE25900CB6E8F /* HTMLparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLparser.h; sourceTree = "<group>"; };
		7B12F3910D8EE25900CB6E8F /* HTMLtree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTMLtree.h; sourceTree = "<group>"; };
		7B12F3920D8EE25900CB6E8F /* list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = list.h; sourceTree = "<group>"; };
		7B12F3930D8EE25900CB6E8F /* nanoftp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nanoftp.h; sourceTree = "<group>"; };
		7B12F3940D8EE25900CB6E8F /* nanohttp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nanohttp.h; sourceTree = "<group>"; };
		7B12F3950D8EE25900CB6E8F /* parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parser.h; sourceTree = "<group>"; };
		7B12F3960D8EE25900CB6E8F /* parserInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parserInternals.h; sourceTree = "<group>"; };
		7B12F3970D8EE25900CB6E8F /* pattern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pattern.h; sourceTree = "<group>"; };
		7B12F3980D8EE25900CB6E8F /* relaxng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = relaxng.h; sourceTree = "<group>"; };
		7B12F3990D8EE25900CB6E8F /* SAX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SAX.h; sourceTree = "<group>"; };
		7B12F39A0D8EE25900CB6E8F /* SAX2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SAX2.h; sourceTree = "<group>"; };
		7B12F39B0D8EE25900CB6E8F /* schemasInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = schemasInternals.h; sourceTree = "<group>"; };
		7B12F39C0D8EE25900CB6E8F /* schematron.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = schematron.h; sourceTree = "<group>"; };
		7B12F39D0D8EE25900CB6E8F /* threads.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = threads.h; sourceTree = "<group>"; };
		7B12F39E0D8EE25900CB6E8F /* tree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tree.h; sourceTree = "<group>"; };
		7B12F39F0D8EE25900CB6E8F /* uri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uri.h; sourceTree = "<group>"; };
		7B12F3A00D8EE25900CB6E8F /* valid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valid.h; sourceTree = "<group>"; };
		7B12F3A10D8EE25900CB6E8F /* xinclude.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xinclude.h; sourceTree = "<group>"; };
		7B12F3A20D8EE25900CB6E8F /* xlink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xlink.h; sourceTree = "<group>"; };
		7B12F3A30D8EE25900CB6E8F /* xmlautomata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlautomata.h; sourceTree = "<group>"; };
		7B12F3A40D8EE25900CB6E8F /* xmlerror.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlerror.h; sourceTree = "<group>"; };
		7B12F3A50D8EE25900CB6E8F /* xmlexports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlexports.h; sourceTree = "<group>"; };
		7B12F3A60D8EE25900CB6E8F /* xmlIO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlIO.h; sourceTree = "<group>"; };
		7B12F3A70D8EE25900CB6E8F /* xmlmemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlmemory.h; sourceTree = "<group>"; };
		7B12F3A80D8EE25900CB6E8F /* xmlmodule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlmodule.h; sourceTree = "<group>"; };
		7B12F3A90D8EE25900CB6E8F /* xmlreader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlreader.h; sourceTree = "<group>"; };
		7B12F3AA0D8EE25900CB6E8F /* xmlregexp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlregexp.h; sourceTree = "<group>"; };
		7B12F3AB0D8EE25900CB6E8F /* xmlsave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlsave.h; sourceTree = "<group>"; };
		7B12F3AC0D8EE25900CB6E8F /* xmlschemas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlschemas.h; sourceTree = "<group>"; };
		7B12F3AD0D8EE25900CB6E8F /* xmlschemastypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlschemastypes.h; sourceTree = "<group>"; };
		7B12F3AE0D8EE25900CB6E8F /* xmlstring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlstring.h; sourceTree = "<group>"; };
		7B12F3AF0D8EE25900CB6E8F /* xmlunicode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlunicode.h; sourceTree = "<group>"; };
		7B12F3B10D8EE25900CB6E8F /* xmlversion.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = xmlversion.h.in; sourceTree = "<group>"; };
		7B12F3B20D8EE25900CB6E8F /* xmlwriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlwriter.h; sourceTree = "<group>"; };
		7B12F3B30D8EE25900CB6E8F /* xpath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xpath.h; sourceTree = "<group>"; };
		7B12F3B40D8EE25900CB6E8F /* xpathInternals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xpathInternals.h; sourceTree = "<group>"; };
		7B12F3B50D8EE25900CB6E8F /* xpointer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xpointer.h; sourceTree = "<group>"; };
		7B12F3BA0D8EE25900CB6E8F /* legacy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = legacy.c; sourceTree = "<group>"; };
		7B12F3BD0D8EE25900CB6E8F /* libxml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = libxml.h; sourceTree = "<group>"; };
		7B12F3C10D8EE25900CB6E8F /* list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = list.c; sourceTree = "<group>"; };
		7B12F3C50D8EE25900CB6E8F /* nanoftp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nanoftp.c; sourceTree = "<group>"; };
		7B12F3C60D8EE25900CB6E8F /* nanohttp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nanohttp.c; sourceTree = "<group>"; };
		7B12F3C80D8EE25900CB6E8F /* parser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parser.c; sourceTree = "<group>"; };
		7B12F3C90D8EE25900CB6E8F /* parserInternals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parserInternals.c; sourceTree = "<group>"; };
		7B12F3CA0D8EE25900CB6E8F /* pattern.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pattern.c; sourceTree = "<group>"; };
		7B12F3D00D8EE25900CB6E8F /* relaxng.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = relaxng.c; sourceTree = "<group>"; };
		7B12F3D30D8EE25900CB6E8F /* SAX.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SAX.c; sourceTree = "<group>"; };
		7B12F3D40D8EE25900CB6E8F /* SAX2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SAX2.c; sourceTree = "<group>"; };
		7B12F3D50D8EE25900CB6E8F /* schematron.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = schematron.c; sourceTree = "<group>"; };
		7B12F3E50D8EE25900CB6E8F /* threads.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = threads.c; sourceTree = "<group>"; };
		7B12F3E80D8EE25900CB6E8F /* tree.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tree.c; sourceTree = "<group>"; };
		7B12F3F10D8EE25900CB6E8F /* uri.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uri.c; sourceTree = "<group>"; };
		7B12F3F20D8EE25900CB6E8F /* valid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = valid.c; sourceTree = "<group>"; };
		7B12F3FC0D8EE25900CB6E8F /* xinclude.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xinclude.c; sourceTree = "<group>"; };
		7B12F3FD0D8EE25900CB6E8F /* xlink.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xlink.c; sourceTree = "<group>"; };
		7B12F4020D8EE25900CB6E8F /* xmlIO.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlIO.c; sourceTree = "<group>"; };
		7B12F4040D8EE25900CB6E8F /* xmlmemory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlmemory.c; sourceTree = "<group>"; };
		7B12F4050D8EE25900CB6E8F /* xmlmodule.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlmodule.c; sourceTree = "<group>"; };
		7B12F4060D8EE25900CB6E8F /* xmlreader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlreader.c; sourceTree = "<group>"; };
		7B12F4070D8EE25900CB6E8F /* xmlregexp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlregexp.c; sourceTree = "<group>"; };
		7B12F4080D8EE25900CB6E8F /* xmlsave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlsave.c; sourceTree = "<group>"; };
		7B12F4090D8EE25900CB6E8F /* xmlschemas.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlschemas.c; sourceTree = "<group>"; };
		7B12F40A0D8EE25900CB6E8F /* xmlschemastypes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlschemastypes.c; sourceTree = "<group>"; };
		7B12F40B0D8EE25900CB6E8F /* xmlstring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlstring.c; sourceTree = "<group>"; };
		7B12F40C0D8EE25900CB6E8F /* xmlunicode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlunicode.c; sourceTree = "<group>"; };
		7B12F40D0D8EE25900CB6E8F /* xmlwriter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlwriter.c; sourceTree = "<group>"; };
		7B12F40E0D8EE25900CB6E8F /* xpath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xpath.c; sourceTree = "<group>"; };
		7B12F40F0D8EE25A00CB6E8F /* xpointer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xpointer.c; sourceTree = "<group>"; };
		7B12F54E0D8EE8E400CB6E8F /* xmlcatalog */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xmlcatalog; sourceTree = BUILT_PRODUCTS_DIR; };
		7B12F5540D8EE91800CB6E8F /* xmlcatalog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlcatalog.c; sourceTree = "<group>"; };
		7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = icu.xcodeproj; path = third_party/icu38/icu.xcodeproj; sourceTree = "<group>"; };
		7B12F58F0D8EEB2F00CB6E8F /* xmllint */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xmllint; sourceTree = BUILT_PRODUCTS_DIR; };
		7B12F5980D8EEB4A00CB6E8F /* xmllint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmllint.c; sourceTree = "<group>"; };
		7B466A5C0E5E381700C91F63 /* common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = "<group>"; };
		7B466A5D0E5E381700C91F63 /* debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = debug.xcconfig; sourceTree = "<group>"; };
		7B466A5E0E5E381700C91F63 /* executable.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = executable.xcconfig; sourceTree = "<group>"; };
		7B466A5F0E5E381700C91F63 /* release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = release.xcconfig; sourceTree = "<group>"; };
		7B466A600E5E381700C91F63 /* staticlib.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = staticlib.xcconfig; sourceTree = "<group>"; };
		7B466A790E5E385900C91F63 /* zlib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = zlib.xcodeproj; path = third_party/zlib/zlib.xcodeproj; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		7B12F2AA0D8EE24200CB6E8F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		7B12F54C0D8EE8E400CB6E8F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B466ADE0E5E3BE200C91F63 /* libicudata.a in Frameworks */,
				7B466ADB0E5E3BD800C91F63 /* libicuuc.a in Frameworks */,
				7B12F55A0D8EE93300CB6E8F /* libxml.a in Frameworks */,
				7B466AD80E5E3BC200C91F63 /* libzlib.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		7B12F58D0D8EEB2F00CB6E8F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B466AE70E5E3C1000C91F63 /* libicudata.a in Frameworks */,
				7B466AE80E5E3C1000C91F63 /* libicuuc.a in Frameworks */,
				7B12F59F0D8EEB6900CB6E8F /* libxml.a in Frameworks */,
				7B466AE90E5E3C1000C91F63 /* libzlib.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		7B12F2B10D8EE25900CB6E8F /* Source */ = {
			isa = PBXGroup;
			children = (
				7B12F3840D8EE25900CB6E8F /* include */,
				7B12F2B30D8EE25900CB6E8F /* acconfig.h */,
				7B12F3620D8EE25900CB6E8F /* c14n.c */,
				7B12F3630D8EE25900CB6E8F /* catalog.c */,
				7B12F36A0D8EE25900CB6E8F /* chvalid.c */,
				7B12F36D0D8EE25900CB6E8F /* config.h.in */,
				7B12F3750D8EE25900CB6E8F /* debugXML.c */,
				7B12F3770D8EE25900CB6E8F /* dict.c */,
				7B12F3780D8EE25900CB6E8F /* DOCBparser.c */,
				7B12F3790D8EE25900CB6E8F /* elfgcchack.h */,
				7B12F37A0D8EE25900CB6E8F /* encoding.c */,
				7B12F37B0D8EE25900CB6E8F /* entities.c */,
				7B12F37C0D8EE25900CB6E8F /* error.c */,
				7B12F37F0D8EE25900CB6E8F /* globals.c */,
				7B12F3810D8EE25900CB6E8F /* hash.c */,
				7B12F3820D8EE25900CB6E8F /* HTMLparser.c */,
				7B12F3830D8EE25900CB6E8F /* HTMLtree.c */,
				7B12F3BA0D8EE25900CB6E8F /* legacy.c */,
				7B12F3BD0D8EE25900CB6E8F /* libxml.h */,
				7B12F3C10D8EE25900CB6E8F /* list.c */,
				7B12F3C50D8EE25900CB6E8F /* nanoftp.c */,
				7B12F3C60D8EE25900CB6E8F /* nanohttp.c */,
				7B12F3C80D8EE25900CB6E8F /* parser.c */,
				7B12F3C90D8EE25900CB6E8F /* parserInternals.c */,
				7B12F3CA0D8EE25900CB6E8F /* pattern.c */,
				7B12F3D00D8EE25900CB6E8F /* relaxng.c */,
				7B12F3D30D8EE25900CB6E8F /* SAX.c */,
				7B12F3D40D8EE25900CB6E8F /* SAX2.c */,
				7B12F3D50D8EE25900CB6E8F /* schematron.c */,
				7B12F3E50D8EE25900CB6E8F /* threads.c */,
				7B12F3E80D8EE25900CB6E8F /* tree.c */,
				7B12F3F10D8EE25900CB6E8F /* uri.c */,
				7B12F3F20D8EE25900CB6E8F /* valid.c */,
				7B12F3FC0D8EE25900CB6E8F /* xinclude.c */,
				7B12F3FD0D8EE25900CB6E8F /* xlink.c */,
				7B12F5540D8EE91800CB6E8F /* xmlcatalog.c */,
				7B12F4020D8EE25900CB6E8F /* xmlIO.c */,
				7B12F5980D8EEB4A00CB6E8F /* xmllint.c */,
				7B12F4040D8EE25900CB6E8F /* xmlmemory.c */,
				7B12F4050D8EE25900CB6E8F /* xmlmodule.c */,
				7B12F4060D8EE25900CB6E8F /* xmlreader.c */,
				7B12F4070D8EE25900CB6E8F /* xmlregexp.c */,
				7B12F4080D8EE25900CB6E8F /* xmlsave.c */,
				7B12F4090D8EE25900CB6E8F /* xmlschemas.c */,
				7B12F40A0D8EE25900CB6E8F /* xmlschemastypes.c */,
				7B12F40B0D8EE25900CB6E8F /* xmlstring.c */,
				7B12F40C0D8EE25900CB6E8F /* xmlunicode.c */,
				7B12F40D0D8EE25900CB6E8F /* xmlwriter.c */,
				7B12F40E0D8EE25900CB6E8F /* xpath.c */,
				7B12F40F0D8EE25A00CB6E8F /* xpointer.c */,
			);
			name = Source;
			sourceTree = "<group>";
		};
		7B12F3840D8EE25900CB6E8F /* include */ = {
			isa = PBXGroup;
			children = (
				7B12F3850D8EE25900CB6E8F /* libxml */,
			);
			path = include;
			sourceTree = "<group>";
		};
		7B12F3850D8EE25900CB6E8F /* libxml */ = {
			isa = PBXGroup;
			children = (
				7B12F3860D8EE25900CB6E8F /* c14n.h */,
				7B12F3870D8EE25900CB6E8F /* catalog.h */,
				7B12F3880D8EE25900CB6E8F /* chvalid.h */,
				7B12F3890D8EE25900CB6E8F /* debugXML.h */,
				7B12F38A0D8EE25900CB6E8F /* dict.h */,
				7B12F38B0D8EE25900CB6E8F /* DOCBparser.h */,
				7B12F38C0D8EE25900CB6E8F /* encoding.h */,
				7B12F38D0D8EE25900CB6E8F /* entities.h */,
				7B12F38E0D8EE25900CB6E8F /* globals.h */,
				7B12F38F0D8EE25900CB6E8F /* hash.h */,
				7B12F3900D8EE25900CB6E8F /* HTMLparser.h */,
				7B12F3910D8EE25900CB6E8F /* HTMLtree.h */,
				7B12F3920D8EE25900CB6E8F /* list.h */,
				7B12F3930D8EE25900CB6E8F /* nanoftp.h */,
				7B12F3940D8EE25900CB6E8F /* nanohttp.h */,
				7B12F3950D8EE25900CB6E8F /* parser.h */,
				7B12F3960D8EE25900CB6E8F /* parserInternals.h */,
				7B12F3970D8EE25900CB6E8F /* pattern.h */,
				7B12F3980D8EE25900CB6E8F /* relaxng.h */,
				7B12F3990D8EE25900CB6E8F /* SAX.h */,
				7B12F39A0D8EE25900CB6E8F /* SAX2.h */,
				7B12F39B0D8EE25900CB6E8F /* schemasInternals.h */,
				7B12F39C0D8EE25900CB6E8F /* schematron.h */,
				7B12F39D0D8EE25900CB6E8F /* threads.h */,
				7B12F39E0D8EE25900CB6E8F /* tree.h */,
				7B12F39F0D8EE25900CB6E8F /* uri.h */,
				7B12F3A00D8EE25900CB6E8F /* valid.h */,
				7B12F3A10D8EE25900CB6E8F /* xinclude.h */,
				7B12F3A20D8EE25900CB6E8F /* xlink.h */,
				7B12F3A30D8EE25900CB6E8F /* xmlautomata.h */,
				7B12F3A40D8EE25900CB6E8F /* xmlerror.h */,
				7B12F3A50D8EE25900CB6E8F /* xmlexports.h */,
				7B12F3A60D8EE25900CB6E8F /* xmlIO.h */,
				7B12F3A70D8EE25900CB6E8F /* xmlmemory.h */,
				7B12F3A80D8EE25900CB6E8F /* xmlmodule.h */,
				7B12F3A90D8EE25900CB6E8F /* xmlreader.h */,
				7B12F3AA0D8EE25900CB6E8F /* xmlregexp.h */,
				7B12F3AB0D8EE25900CB6E8F /* xmlsave.h */,
				7B12F3AC0D8EE25900CB6E8F /* xmlschemas.h */,
				7B12F3AD0D8EE25900CB6E8F /* xmlschemastypes.h */,
				7B12F3AE0D8EE25900CB6E8F /* xmlstring.h */,
				7B12F3AF0D8EE25900CB6E8F /* xmlunicode.h */,
				7B12F3B10D8EE25900CB6E8F /* xmlversion.h.in */,
				7B12F3B20D8EE25900CB6E8F /* xmlwriter.h */,
				7B12F3B30D8EE25900CB6E8F /* xpath.h */,
				7B12F3B40D8EE25900CB6E8F /* xpathInternals.h */,
				7B12F3B50D8EE25900CB6E8F /* xpointer.h */,
			);
			path = libxml;
			sourceTree = "<group>";
		};
		7B12F5620D8EE9DE00CB6E8F /* Projects */ = {
			isa = PBXGroup;
			children = (
				7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */,
				7B466A790E5E385900C91F63 /* zlib.xcodeproj */,
			);
			name = Projects;
			path = ../..;
			sourceTree = "<group>";
		};
		7B466A5B0E5E37FC00C91F63 /* Configuration */ = {
			isa = PBXGroup;
			children = (
				7B466A5C0E5E381700C91F63 /* common.xcconfig */,
				7B466A5D0E5E381700C91F63 /* debug.xcconfig */,
				7B466A5E0E5E381700C91F63 /* executable.xcconfig */,
				7B466A5F0E5E381700C91F63 /* release.xcconfig */,
				7B466A600E5E381700C91F63 /* staticlib.xcconfig */,
			);
			name = Configuration;
			path = ../../build;
			sourceTree = "<group>";
		};
		7B466A610E5E383D00C91F63 /* Products */ = {
			isa = PBXGroup;
			children = (
				7B466A6C0E5E383D00C91F63 /* genccode */,
				7B466A6E0E5E383D00C91F63 /* libicudata.a */,
				7B466A700E5E383D00C91F63 /* libicudata_stub.a */,
				7B466A720E5E383D00C91F63 /* libicui18n.a */,
				7B466A740E5E383D00C91F63 /* libicutu.a */,
				7B466A760E5E383D00C91F63 /* libicuuc.a */,
				7B466A780E5E383D00C91F63 /* icupkg */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		7B466A7A0E5E385900C91F63 /* Products */ = {
			isa = PBXGroup;
			children = (
				7B466A7E0E5E385900C91F63 /* libzlib.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		7BE970440D872C5400F86D4B = {
			isa = PBXGroup;
			children = (
				7B466A5B0E5E37FC00C91F63 /* Configuration */,
				7B12F2B10D8EE25900CB6E8F /* Source */,
				7B12F5620D8EE9DE00CB6E8F /* Projects */,
				7BE970620D87321900F86D4B /* Products */,
			);
			sourceTree = "<group>";
		};
		7BE970620D87321900F86D4B /* Products */ = {
			isa = PBXGroup;
			children = (
				7B12F2AC0D8EE24200CB6E8F /* libxml.a */,
				7B12F54E0D8EE8E400CB6E8F /* xmlcatalog */,
				7B12F58F0D8EEB2F00CB6E8F /* xmllint */,
			);
			name = Products;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		7B12F2AB0D8EE24200CB6E8F /* xml */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 7B12F5090D8EE25A00CB6E8F /* Build configuration list for PBXNativeTarget "xml" */;
			buildPhases = (
				7B12F2A90D8EE24200CB6E8F /* Sources */,
				7B12F2AA0D8EE24200CB6E8F /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				7B12F2B00D8EE24800CB6E8F /* PBXTargetDependency */,
			);
			name = xml;
			productName = xml;
			productReference = 7B12F2AC0D8EE24200CB6E8F /* libxml.a */;
			productType = "com.apple.product-type.library.static";
		};
		7B12F54D0D8EE8E400CB6E8F /* xmlcatalog */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 7B12F5530D8EE8F500CB6E8F /* Build configuration list for PBXNativeTarget "xmlcatalog" */;
			buildPhases = (
				7B12F54B0D8EE8E400CB6E8F /* Sources */,
				7B12F54C0D8EE8E400CB6E8F /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				7B466AE20E5E3BEA00C91F63 /* PBXTargetDependency */,
				7B466AE00E5E3BEA00C91F63 /* PBXTargetDependency */,
				7B12F5590D8EE92A00CB6E8F /* PBXTargetDependency */,
				7B466AD70E5E3BB200C91F63 /* PBXTargetDependency */,
			);
			name = xmlcatalog;
			productName = xmlcatalog;
			productReference = 7B12F54E0D8EE8E400CB6E8F /* xmlcatalog */;
			productType = "com.apple.product-type.tool";
		};
		7B12F58E0D8EEB2F00CB6E8F /* xmllint */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 7B12F5970D8EEB3E00CB6E8F /* Build configuration list for PBXNativeTarget "xmllint" */;
			buildPhases = (
				7B12F58C0D8EEB2F00CB6E8F /* Sources */,
				7B12F58D0D8EEB2F00CB6E8F /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				7B466AEB0E5E3C1B00C91F63 /* PBXTargetDependency */,
				7B466AED0E5E3C1B00C91F63 /* PBXTargetDependency */,
				7B12F59E0D8EEB5E00CB6E8F /* PBXTargetDependency */,
				7B466AEF0E5E3C1B00C91F63 /* PBXTargetDependency */,
			);
			name = xmllint;
			productName = xmllint;
			productReference = 7B12F58F0D8EEB2F00CB6E8F /* xmllint */;
			productType = "com.apple.product-type.tool";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		7BE970460D872C5400F86D4B /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = 7BE970490D872C5400F86D4B /* Build configuration list for PBXProject "libxml" */;
			compatibilityVersion = "Xcode 3.1";
			hasScannedForEncodings = 0;
			mainGroup = 7BE970440D872C5400F86D4B;
			productRefGroup = 7BE970620D87321900F86D4B /* Products */;
			projectDirPath = "";
			projectReferences = (
				{
					ProductGroup = 7B466A610E5E383D00C91F63 /* Products */;
					ProjectRef = 7B12F5680D8EEA7E00CB6E8F /* icu.xcodeproj */;
				},
				{
					ProductGroup = 7B466A7A0E5E385900C91F63 /* Products */;
					ProjectRef = 7B466A790E5E385900C91F63 /* zlib.xcodeproj */;
				},
			);
			projectRoot = "";
			targets = (
				7B466AB40E5E3AA900C91F63 /* All */,
				7BE970530D872DC200F86D4B /* libxml_config */,
				7B12F2AB0D8EE24200CB6E8F /* xml */,
				7B12F54D0D8EE8E400CB6E8F /* xmlcatalog */,
				7B12F58E0D8EEB2F00CB6E8F /* xmllint */,
			);
		};
/* End PBXProject section */

/* Begin PBXReferenceProxy section */
		7B466A6C0E5E383D00C91F63 /* genccode */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = genccode;
			remoteRef = 7B466A6B0E5E383D00C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		7B466A6E0E5E383D00C91F63 /* libicudata.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicudata.a;
			remoteRef = 7B466A6D0E5E383D00C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		7B466A700E5E383D00C91F63 /* libicudata_stub.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicudata_stub.a;
			remoteRef = 7B466A6F0E5E383D00C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		7B466A720E5E383D00C91F63 /* libicui18n.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicui18n.a;
			remoteRef = 7B466A710E5E383D00C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		7B466A740E5E383D00C91F63 /* libicutu.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicutu.a;
			remoteRef = 7B466A730E5E383D00C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		7B466A760E5E383D00C91F63 /* libicuuc.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libicuuc.a;
			remoteRef = 7B466A750E5E383D00C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		7B466A780E5E383D00C91F63 /* icupkg */ = {
			isa = PBXReferenceProxy;
			fileType = "compiled.mach-o.executable";
			path = icupkg;
			remoteRef = 7B466A770E5E383D00C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
		7B466A7E0E5E385900C91F63 /* libzlib.a */ = {
			isa = PBXReferenceProxy;
			fileType = archive.ar;
			path = libzlib.a;
			remoteRef = 7B466A7D0E5E385900C91F63 /* PBXContainerItemProxy */;
			sourceTree = BUILT_PRODUCTS_DIR;
		};
/* End PBXReferenceProxy section */

/* Begin PBXShellScriptBuildPhase section */
		7BE970520D872DC200F86D4B /* Pre-Build */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
				"$(SRCROOT)/config.h.in",
				"$(SRCROOT)/include/libxml/xmlversion.h.in",
			);
			name = "Pre-Build";
			outputPaths = (
				"$(CONFIGURATION_TEMP_DIR)/generated/config.h",
				"$(CONFIGURATION_TEMP_DIR)/generated/include/libxml/xmlversion.h",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "set -ex\nexec \"${PROJECT_FILE_PATH}/${PRODUCT_NAME}_prebuild.sh\" \"${@}\"\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		7B12F2A90D8EE24200CB6E8F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B12F48D0D8EE25A00CB6E8F /* c14n.c in Sources */,
				7B12F48E0D8EE25A00CB6E8F /* catalog.c in Sources */,
				7B12F48F0D8EE25A00CB6E8F /* chvalid.c in Sources */,
				7B12F4910D8EE25A00CB6E8F /* debugXML.c in Sources */,
				7B12F4920D8EE25A00CB6E8F /* dict.c in Sources */,
				7B12F4930D8EE25A00CB6E8F /* DOCBparser.c in Sources */,
				7B12F4950D8EE25A00CB6E8F /* encoding.c in Sources */,
				7B12F4960D8EE25A00CB6E8F /* entities.c in Sources */,
				7B12F4970D8EE25A00CB6E8F /* error.c in Sources */,
				7B12F4980D8EE25A00CB6E8F /* globals.c in Sources */,
				7B12F4990D8EE25A00CB6E8F /* hash.c in Sources */,
				7B12F49A0D8EE25A00CB6E8F /* HTMLparser.c in Sources */,
				7B12F49B0D8EE25A00CB6E8F /* HTMLtree.c in Sources */,
				7B12F4CD0D8EE25A00CB6E8F /* legacy.c in Sources */,
				7B12F4CF0D8EE25A00CB6E8F /* list.c in Sources */,
				7B12F4D00D8EE25A00CB6E8F /* nanoftp.c in Sources */,
				7B12F4D10D8EE25A00CB6E8F /* nanohttp.c in Sources */,
				7B12F4D20D8EE25A00CB6E8F /* parser.c in Sources */,
				7B12F4D30D8EE25A00CB6E8F /* parserInternals.c in Sources */,
				7B12F4D40D8EE25A00CB6E8F /* pattern.c in Sources */,
				7B12F4D50D8EE25A00CB6E8F /* relaxng.c in Sources */,
				7B12F4D80D8EE25A00CB6E8F /* SAX.c in Sources */,
				7B12F4D90D8EE25A00CB6E8F /* SAX2.c in Sources */,
				7B12F4DA0D8EE25A00CB6E8F /* schematron.c in Sources */,
				7B12F4EA0D8EE25A00CB6E8F /* threads.c in Sources */,
				7B12F4EB0D8EE25A00CB6E8F /* tree.c in Sources */,
				7B12F4F40D8EE25A00CB6E8F /* uri.c in Sources */,
				7B12F4F50D8EE25A00CB6E8F /* valid.c in Sources */,
				7B12F4F80D8EE25A00CB6E8F /* xinclude.c in Sources */,
				7B12F4F90D8EE25A00CB6E8F /* xlink.c in Sources */,
				7B12F4FB0D8EE25A00CB6E8F /* xmlIO.c in Sources */,
				7B12F4FD0D8EE25A00CB6E8F /* xmlmemory.c in Sources */,
				7B12F4FE0D8EE25A00CB6E8F /* xmlmodule.c in Sources */,
				7B12F4FF0D8EE25A00CB6E8F /* xmlreader.c in Sources */,
				7B12F5000D8EE25A00CB6E8F /* xmlregexp.c in Sources */,
				7B12F5010D8EE25A00CB6E8F /* xmlsave.c in Sources */,
				7B12F5020D8EE25A00CB6E8F /* xmlschemas.c in Sources */,
				7B12F5030D8EE25A00CB6E8F /* xmlschemastypes.c in Sources */,
				7B12F5040D8EE25A00CB6E8F /* xmlstring.c in Sources */,
				7B12F5050D8EE25A00CB6E8F /* xmlunicode.c in Sources */,
				7B12F5060D8EE25A00CB6E8F /* xmlwriter.c in Sources */,
				7B12F5070D8EE25A00CB6E8F /* xpath.c in Sources */,
				7B12F5080D8EE25A00CB6E8F /* xpointer.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		7B12F54B0D8EE8E400CB6E8F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B12F5550D8EE91800CB6E8F /* xmlcatalog.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		7B12F58C0D8EEB2F00CB6E8F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7B12F5990D8EEB4A00CB6E8F /* xmllint.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		7B12F2B00D8EE24800CB6E8F /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7BE970530D872DC200F86D4B /* libxml_config */;
			targetProxy = 7B12F2AF0D8EE24800CB6E8F /* PBXContainerItemProxy */;
		};
		7B12F5590D8EE92A00CB6E8F /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B12F2AB0D8EE24200CB6E8F /* xml */;
			targetProxy = 7B12F5580D8EE92A00CB6E8F /* PBXContainerItemProxy */;
		};
		7B12F59E0D8EEB5E00CB6E8F /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B12F2AB0D8EE24200CB6E8F /* xml */;
			targetProxy = 7B12F59D0D8EEB5E00CB6E8F /* PBXContainerItemProxy */;
		};
		7B466AB80E5E3AB400C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B12F2AB0D8EE24200CB6E8F /* xml */;
			targetProxy = 7B466AB70E5E3AB400C91F63 /* PBXContainerItemProxy */;
		};
		7B466ABA0E5E3AB400C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B12F54D0D8EE8E400CB6E8F /* xmlcatalog */;
			targetProxy = 7B466AB90E5E3AB400C91F63 /* PBXContainerItemProxy */;
		};
		7B466ABC0E5E3AB400C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 7B12F58E0D8EEB2F00CB6E8F /* xmllint */;
			targetProxy = 7B466ABB0E5E3AB400C91F63 /* PBXContainerItemProxy */;
		};
		7B466AD70E5E3BB200C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = zlib;
			targetProxy = 7B466AD60E5E3BB200C91F63 /* PBXContainerItemProxy */;
		};
		7B466AE00E5E3BEA00C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icudata;
			targetProxy = 7B466ADF0E5E3BEA00C91F63 /* PBXContainerItemProxy */;
		};
		7B466AE20E5E3BEA00C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icuuc;
			targetProxy = 7B466AE10E5E3BEA00C91F63 /* PBXContainerItemProxy */;
		};
		7B466AEB0E5E3C1B00C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icudata;
			targetProxy = 7B466AEA0E5E3C1B00C91F63 /* PBXContainerItemProxy */;
		};
		7B466AED0E5E3C1B00C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = icuuc;
			targetProxy = 7B466AEC0E5E3C1B00C91F63 /* PBXContainerItemProxy */;
		};
		7B466AEF0E5E3C1B00C91F63 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = zlib;
			targetProxy = 7B466AEE0E5E3C1B00C91F63 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		7B12F2AD0D8EE24200CB6E8F /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A600E5E381700C91F63 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = xml;
			};
			name = Debug;
		};
		7B12F2AE0D8EE24200CB6E8F /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A600E5E381700C91F63 /* staticlib.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = xml;
			};
			name = Release;
		};
		7B12F5500D8EE8E400CB6E8F /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A5E0E5E381700C91F63 /* executable.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = xmlcatalog;
			};
			name = Debug;
		};
		7B12F5510D8EE8E400CB6E8F /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A5E0E5E381700C91F63 /* executable.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = xmlcatalog;
			};
			name = Release;
		};
		7B12F5910D8EEB2F00CB6E8F /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A5E0E5E381700C91F63 /* executable.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = xmllint;
			};
			name = Debug;
		};
		7B12F5920D8EEB2F00CB6E8F /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A5E0E5E381700C91F63 /* executable.xcconfig */;
			buildSettings = {
				PRODUCT_NAME = xmllint;
			};
			name = Release;
		};
		7B466AB50E5E3AA900C91F63 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = All;
			};
			name = Debug;
		};
		7B466AB60E5E3AA900C91F63 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = All;
			};
			name = Release;
		};
		7BE970470D872C5400F86D4B /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A5D0E5E381700C91F63 /* debug.xcconfig */;
			buildSettings = {
				GCC_PREFIX_HEADER = ../zlib/zconf.h;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(GCC_PREPROCESSOR_DEFINITIONS)",
					HAVE_CONFIG_H,
					_REENTRANT,
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				HEADER_SEARCH_PATHS = (
					"$(CONFIGURATION_TEMP_DIR)/generated",
					"$(CONFIGURATION_TEMP_DIR)/generated/include",
					include,
					../icu38/public/common,
				);
				XCODEPROJ_DEPTH = ../..;
			};
			name = Debug;
		};
		7BE970480D872C5400F86D4B /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 7B466A5F0E5E381700C91F63 /* release.xcconfig */;
			buildSettings = {
				GCC_PREFIX_HEADER = ../zlib/zconf.h;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(GCC_PREPROCESSOR_DEFINITIONS)",
					HAVE_CONFIG_H,
					_REENTRANT,
				);
				GCC_TREAT_WARNINGS_AS_ERRORS = NO;
				HEADER_SEARCH_PATHS = (
					"$(CONFIGURATION_TEMP_DIR)/generated",
					"$(CONFIGURATION_TEMP_DIR)/generated/include",
					include,
					../icu38/public/common,
				);
				XCODEPROJ_DEPTH = ../..;
			};
			name = Release;
		};
		7BE970540D872DC200F86D4B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = libxml_config;
			};
			name = Debug;
		};
		7BE970550D872DC200F86D4B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = libxml_config;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		7B12F5090D8EE25A00CB6E8F /* Build configuration list for PBXNativeTarget "xml" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7B12F2AD0D8EE24200CB6E8F /* Debug */,
				7B12F2AE0D8EE24200CB6E8F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		7B12F5530D8EE8F500CB6E8F /* Build configuration list for PBXNativeTarget "xmlcatalog" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7B12F5500D8EE8E400CB6E8F /* Debug */,
				7B12F5510D8EE8E400CB6E8F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		7B12F5970D8EEB3E00CB6E8F /* Build configuration list for PBXNativeTarget "xmllint" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7B12F5910D8EEB2F00CB6E8F /* Debug */,
				7B12F5920D8EEB2F00CB6E8F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		7B466AC50E5E3B1500C91F63 /* Build configuration list for PBXAggregateTarget "All" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7B466AB50E5E3AA900C91F63 /* Debug */,
				7B466AB60E5E3AA900C91F63 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		7BE970490D872C5400F86D4B /* Build configuration list for PBXProject "libxml" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7BE970470D872C5400F86D4B /* Debug */,
				7BE970480D872C5400F86D4B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		7BE970570D872DC700F86D4B /* Build configuration list for PBXAggregateTarget "libxml_config" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7BE970540D872DC200F86D4B /* Debug */,
				7BE970550D872DC200F86D4B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 7BE970460D872C5400F86D4B /* Project object */;
}