this repo has no description
1
fork

Configure Feed

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

Some OpenDirectory work

+21 -1
+1
platform-include/launch.h
··· 1 + ../src/launchd/liblaunch/launch.h
+1
platform-include/opendirectory
··· 1 + ../src/opendirectory/include/opendirectory/
+1
platform-include/xpc/private.h
··· 1 + ../../src/external/libxpc/xpc/private.h
+7 -1
src/libinfo/CMakeLists.txt
··· 15 15 add_definitions(-D__APPLE__ -D__DYNAMIC__) 16 16 add_definitions(-D__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__=1080) 17 17 18 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc -D__DARWIN_UNIX03 -fPIC -w -ggdb") 18 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -nostdinc -D__DARWIN_UNIX03 -fPIC -ggdb") 19 19 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -nostdlib") 20 + 21 + add_compile_options( 22 + -Wno-macro-redefined 23 + ) 20 24 21 25 include_directories(${CMAKE_SOURCE_DIR}/src/libc/darwin) 22 26 include_directories(${CMAKE_SOURCE_DIR}/src/kernel/libsyscall/wrappers) ··· 64 68 libdispatch_shared 65 69 system_notify 66 70 platform 71 + xpc 72 + compiler_rt 67 73 DEPENDENCIES 68 74 resolv-darwin 69 75 )
+4
src/libinfo/membership.subproj/CMakeLists.txt
··· 10 10 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../lookup.subproj) 11 11 include_directories(${CMAKE_CURRENT_SOURCE_DIR}) 12 12 13 + add_definitions( 14 + -DDS_AVAILABLE 15 + ) 16 + 13 17 set(info-membership_sources 14 18 membership.c 15 19 )
+7
src/opendirectory/include/opendirectory/odipc.h
··· 1 + #ifndef _OD_ODIPC_H_ 2 + #define _OD_ODIPC_H_ 3 + 4 + #define kODMachMembershipPortNameDebug 1 5 + #define kODMachMembershipPortName 1 6 + 7 + #endif