this repo has no description
1
fork

Configure Feed

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

Fix darling.c wiping what it shouldn't, update Cocotron submodule

+10 -1
+1
src/native/CMakeLists.txt
··· 7 7 wrap_elf(png libpng.so) 8 8 wrap_elf(tiff libtiff.so) 9 9 wrap_elf(X11 libX11.so) 10 + wrap_elf(XRandR libXrandr.so) 10 11 wrap_elf(cairo libcairo.so) 11 12 wrap_elf(GL libGL.so) 12 13 wrap_elf(EGL libEGL.so)
+9 -1
src/startup/darling.c
··· 909 909 "/var/run" 910 910 }; 911 911 912 + char fullpath[4096]; 913 + strcpy(fullpath, prefix); 914 + const size_t prefixLen = strlen(fullpath); 915 + 912 916 for (size_t i = 0; i < sizeof(dirs)/sizeof(dirs[0]); i++) 913 - wipeDir(dirs[i]); 917 + { 918 + fullpath[prefixLen] = 0; 919 + strcat(fullpath, dirs[i]); 920 + wipeDir(fullpath); 921 + } 914 922 } 915 923 916 924 char* defaultPrefixPath(void)