this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Import CFOpenDirectoryPriv from OpenDirectory-146 and include some generated headers

+48 -1
+2 -1
cmake/use_ld64.cmake
··· 125 125 -Wl,-dylib_file,/usr/lib/libcoretls_cfhelpers.dylib:${CMAKE_BINARY_DIR}/src/external/coretls/libcoretls_cfhelpers.dylib \ 126 126 -Wl,-dylib_file,/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression:${CMAKE_BINARY_DIR}/src/private-frameworks/AppleFSCompression/AppleFSCompression \ 127 127 -Wl,-dylib_file,/usr/lib/libcoretls.dylib:${CMAKE_BINARY_DIR}/src/external/coretls/libcoretls.dylib \ 128 - -Wl,-dylib_file,/usr/lib/libenergytrace.dylib:${CMAKE_BINARY_DIR}/src/external/energytrace/libenergytrace.dylib") 128 + -Wl,-dylib_file,/usr/lib/libenergytrace.dylib:${CMAKE_BINARY_DIR}/src/external/energytrace/libenergytrace.dylib \ 129 + -Wl,-dylib_file,/System/Library/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory:${CMAKE_BINARY_DIR}/src/frameworks/CFOpenDirectory/CFOpenDirectory") 129 130 130 131 add_dependencies(${target} x86_64-apple-darwin11-ld) 131 132
+2
src/OpenDirectory/CMakeLists.txt
··· 31 31 objc 32 32 Foundation 33 33 ) 34 + 35 + reexport(OpenDirectory CFOpenDirectory ${CMAKE_BINARY_DIR}/src/frameworks/CFOpenDirectory/CFOpenDirectory)
+10
src/OpenDirectory/include/OpenDirectory/OpenDirectory.h
··· 41 41 #import <OpenDirectory/ODAttributeMap.h> 42 42 #import <OpenDirectory/ODModuleEntry.h> 43 43 44 + #ifdef DARLING 45 + #import <OpenDirectory/ODContext.h> 46 + 47 + #import <OpenDirectory/NSODContext.h> 48 + #import <OpenDirectory/NSODNode.h> 49 + #import <OpenDirectory/NSODQuery.h> 50 + #import <OpenDirectory/NSODRecord.h> 51 + #import <OpenDirectory/NSODSession.h> 52 + #endif 53 + 44 54 #endif /* __OBJC__ */
+34
src/OpenDirectory/include/OpenDirectory/OpenDirectoryPriv.h
··· 1 + /* 2 + * Copyright (c) 2005-2008 Apple Inc. All rights reserved. 3 + * 4 + * @APPLE_LICENSE_HEADER_START@ 5 + * 6 + * This file contains Original Code and/or Modifications of Original Code 7 + * as defined in and that are subject to the Apple Public Source License 8 + * Version 2.0 (the 'License'). You may not use this file except in 9 + * compliance with the License. Please obtain a copy of the License at 10 + * http://www.opensource.apple.com/apsl/ and read it before using this 11 + * file. 12 + * 13 + * The Original Code and all software distributed under the License are 14 + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 15 + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 16 + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 17 + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 18 + * Please see the License for the specific language governing rights and 19 + * limitations under the License. 20 + * 21 + * @APPLE_LICENSE_HEADER_END@ 22 + */ 23 + 24 + #ifndef __OPENDIRECTORYPRIV_H 25 + #define __OPENDIRECTORYPRIV_H 26 + 27 + #include <CFOpenDirectory/CFOpenDirectoryConstants.h> 28 + #include <CFOpenDirectory/CFOpenDirectoryPriv.h> 29 + 30 + #if __OBJC__ 31 + #import <OpenDirectory/NSOpenDirectoryPriv.h> 32 + #endif 33 + 34 + #endif