this repo has no description
1
fork

Configure Feed

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

posix1e builds

+17 -1
+3 -1
libc/CMakeLists.txt
··· 58 58 add_subdirectory(secure) 59 59 add_subdirectory(regex) 60 60 add_subdirectory(pthreads) 61 + add_subdirectory(posix1e) 61 62 62 63 add_library(system_c SHARED 63 64 $<TARGET_OBJECTS:libc-db> ··· 78 79 $<TARGET_OBJECTS:libc-secure> 79 80 $<TARGET_OBJECTS:libc-regex> 80 81 $<TARGET_OBJECTS:libc-pthreads> 81 - $<TARGET_OBJECTS:libc-pthreads_cancelable>) 82 + $<TARGET_OBJECTS:libc-pthreads_cancelable> 83 + $<TARGET_OBJECTS:libc-posix1e>) 82 84 83 85 # TODO: see ./xcodescripts/variants.xcconfig 84 86
+14
libc/posix1e/CMakeLists.txt
··· 1 + project(libc-posix1e) 2 + 3 + cmake_minimum_required(VERSION 2.4.0) 4 + 5 + set(posix1e_sources 6 + acl.c 7 + acl_entry.c 8 + acl_file.c 9 + acl_flag.c 10 + acl_perm.c 11 + #acl_translate.c # doesn't build 12 + ) 13 + 14 + add_library(libc-posix1e OBJECT ${posix1e_sources})