this repo has no description
1
fork

Configure Feed

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

Add expat and sqlite, Python 2.6 now also builds (but there are issues to resolve)

+26 -3
+12
.gitmodules
··· 104 104 path = src/external/zip 105 105 url = ../darling-zip.git 106 106 branch = darling 107 + [submodule "src/external/python"] 108 + path = src/external/python 109 + url = ../darling-python.git 110 + branch = darling 111 + [submodule "src/external/expat"] 112 + path = src/external/expat 113 + url = ../darling-expat.git 114 + branch = darling 115 + [submodule "src/external/sqlite"] 116 + path = src/external/sqlite 117 + url = ../darling-sqlite.git 118 + branch = darling
+3 -2
cmake/InstallSymlink.cmake
··· 20 20 if (BINARY_PACKAGING_MODE) 21 21 execute_process(COMMAND "${CMAKE_COMMAND}" -E create_symlink 22 22 ${_filepath} 23 - ${CMAKE_CURRENT_BINARY_DIR}/${_symname}) 24 - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${_symname} 23 + ${CMAKE_CURRENT_BINARY_DIR}/symlinks/${_symname}) 24 + file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/symlinks) 25 + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/symlinks/${_symname} 25 26 DESTINATION ${_installdir}) 26 27 else () 27 28 # scripting the symlink installation at install time should work
+5
etc/dylib.conf
··· 52 52 /usr/lib/liblzma.5.dylib=liblzma.so 53 53 /usr/lib/libpcre.dylib=libpcre.so 54 54 /usr/lib/libpcre.0.dylib=libpcre.so 55 + /usr/lib/libexpat.dylib=libexpat.so 56 + /usr/lib/libexpat.1.dylib=libexpat.so 57 + /usr/lib/libexpat.1.5.2.dylib=libexpat.so 58 + /usr/lib/libsqlite3.dylib=libsqlite3.so 59 + /usr/lib/libsqlite3.0.dylib=libsqlite3.so 55 60 56 61 [CoreFoundation.framework] 57 62 A=libCFFExtra.so
+3
src/CMakeLists.txt
··· 111 111 add_subdirectory(external/liblzma) 112 112 add_subdirectory(external/cfnetwork) 113 113 add_subdirectory(external/pcre) 114 + add_subdirectory(external/sqlite) 114 115 add_subdirectory(CFF) 115 116 add_subdirectory(CoreServices) 116 117 add_subdirectory(ApplicationServices) ··· 121 122 add_subdirectory(external/compiler-rt/lib/builtins) 122 123 add_subdirectory(CommonCrypto) 123 124 add_subdirectory(csu) 125 + add_subdirectory(external/python/2.6/Python-2.6.9) 126 + add_subdirectory(external/expat) 124 127 125 128 if (NOT DARLING_NO_EXECUTABLES) 126 129 add_subdirectory(external/shell_cmds)
+1 -1
src/dyld/darling
··· 21 21 SCRIPT=$(readlink -f "$0") 22 22 SCRIPTPATH=$(dirname "$SCRIPT") 23 23 DARLING_PREFIX=$(realpath "$SCRIPTPATH/..") 24 - MINIMUM_PREFIX_VERSION="1" 24 + MINIMUM_PREFIX_VERSION="2" 25 25 26 26 setup_prefix() { 27 27 prefix_pkg="/tmp/prefix.$$.pkg"
+1
src/libinfo/rpc
··· 1 + rpc.subproj
+1
src/libinfo/rpcsvc
··· 1 + nis.subproj/