PATCH - libdispatch.xcodeproj/project.pbxproj include missing source files to project
For convenience for those using Xcode; xxx_kevent.c, malloc_zone.h, etc. Joakim host:gcd/trunk/libdispatch.xcodeproj> svn diff Index: project.pbxproj =================================================================== --- project.pbxproj (revision 162) +++ project.pbxproj (working copy) @@ -12,6 +12,10 @@ 721F5C5D0F15520500FF03A6 /* semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 721F5C5C0F15520500FF03A6 /* semaphore.h */; settings = {ATTRIBUTES = (Public, ); }; }; 721F5CCF0F15553500FF03A6 /* semaphore.c in Sources */ = {isa = PBXBuildFile; fileRef = 721F5CCE0F15553500FF03A6 /* semaphore.c */; }; 72CC94300ECCD8750031B751 /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = 72CC942F0ECCD8750031B751 /* base.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8543EE8010B18CE400B1048D /* queue_kevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 8543EE7F10B18CE400B1048D /* queue_kevent.c */; }; + 8543EE8210B18CF400B1048D /* source_kevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 8543EE8110B18CF400B1048D /* source_kevent.c */; }; + 85A41C3510B18DA400ED1D95 /* kevent_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A41C3410B18DA400ED1D95 /* kevent_internal.h */; }; + 85A41C4010B18DEC00ED1D95 /* malloc_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A41C3F10B18DEC00ED1D95 /* malloc_zone.h */; }; 96032E4B0F5CC8C700241C5F /* time.c in Sources */ = {isa = PBXBuildFile; fileRef = 96032E4A0F5CC8C700241C5F /* time.c */; }; 96032E4D0F5CC8D100241C5F /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 96032E4C0F5CC8D100241C5F /* time.h */; settings = {ATTRIBUTES = (Public, ); }; }; 961B99360F3E83980006BC96 /* benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 961B99350F3E83980006BC96 /* benchmark.h */; settings = {ATTRIBUTES = (Private, ); }; }; @@ -55,6 +59,10 @@ 72CC940C0ECCD5720031B751 /* dispatch_object.3 */ = {isa = PBXFileReference; explicitFileType = text.man; fileEncoding = 4; name = dispatch_object.3; path = man/dispatch_object.3; sourceTree = "<group>"; }; 72CC940D0ECCD5720031B751 /* dispatch.3 */ = {isa = PBXFileReference; explicitFileType = text.man; fileEncoding = 4; name = dispatch.3; path = man/dispatch.3; sourceTree = "<group>"; }; 72CC942F0ECCD8750031B751 /* base.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = base.h; path = dispatch/base.h; sourceTree = "<group>"; }; + 8543EE7F10B18CE400B1048D /* queue_kevent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = queue_kevent.c; path = src/queue_kevent.c; sourceTree = "<group>"; }; + 8543EE8110B18CF400B1048D /* source_kevent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = source_kevent.c; path = src/source_kevent.c; sourceTree = "<group>"; }; + 85A41C3410B18DA400ED1D95 /* kevent_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = kevent_internal.h; path = src/kevent_internal.h; sourceTree = "<group>"; }; + 85A41C3F10B18DEC00ED1D95 /* malloc_zone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = malloc_zone.h; path = src/shims/malloc_zone.h; sourceTree = "<group>"; }; 96032E4A0F5CC8C700241C5F /* time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = time.c; path = src/time.c; sourceTree = "<group>"; }; 96032E4C0F5CC8D100241C5F /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = time.h; path = dispatch/time.h; sourceTree = "<group>"; }; 960F0E7D0F3FB232000D88BF /* dispatch_apply.3 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = dispatch_apply.3; path = man/dispatch_apply.3; sourceTree = "<group>"; }; @@ -137,6 +145,8 @@ 96032E4A0F5CC8C700241C5F /* time.c */, 2EC9C9B70E8809EF00E2499A /* legacy.c */, FC7BED950E8361E600161930 /* protocol.defs */, + 8543EE7F10B18CE400B1048D /* queue_kevent.c */, + 8543EE8110B18CF400B1048D /* source_kevent.c */, FC18329D10992387003403D5 /* shims */, ); name = Source; @@ -182,6 +192,7 @@ FC1832A0109923B3003403D5 /* shims */ = { isa = PBXGroup; children = ( + 85A41C3F10B18DEC00ED1D95 /* malloc_zone.h */, FC1832A2109923C7003403D5 /* perfmon.h */, FC1832A3109923C7003403D5 /* time.h */, FC1832A4109923C7003403D5 /* tsd.h */, @@ -228,6 +239,7 @@ 96929D950F3EA2170041FF5D /* queue_internal.h */, 5A5D13AB0F6B280500197CC3 /* semaphore_internal.h */, FC0B34780FA2851C0080FFA0 /* source_internal.h */, + 85A41C3410B18DA400ED1D95 /* kevent_internal.h */, FC1832A0109923B3003403D5 /* shims */, ); name = "Project Headers"; @@ -265,6 +277,8 @@ FC1832A6109923C7003403D5 /* perfmon.h in Headers */, FC1832A7109923C7003403D5 /* time.h in Headers */, FC1832A8109923C7003403D5 /* tsd.h in Headers */, + 85A41C3510B18DA400ED1D95 /* kevent_internal.h in Headers */, + 85A41C4010B18DEC00ED1D95 /* malloc_zone.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -386,6 +400,8 @@ 96032E4B0F5CC8C700241C5F /* time.c in Sources */, FC18329F109923A7003403D5 /* mach.c in Sources */, E4BF990110A89607007655D0 /* time.c in Sources */, + 8543EE8010B18CE400B1048D /* queue_kevent.c in Sources */, + 8543EE8210B18CF400B1048D /* source_kevent.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; };
participants (1)
-
Joakim Johansson