Descent3/misc
Chris Sarbora 3da53e567f
Programmatically replace all __LINUX__ with POSIX
Steps:
```sh
srcs=$(mktemp)
find . -name "*.cpp" -or -name "*.c" -or -name "*.h" -or -name "*.hpp" -or -name "*.cc" -or -name "*.hh" > $srcs
xargs sed -i 's/ifndef __LINUX__/if !defined(POSIX)/' < $srcs
xargs sed -i 's/ifdef __LINUX__/if defined(POSIX)/' < $srcs
xargs sed -i 's/defined(__LINUX__)/defined(POSIX)/' < $srcs
```
2024-07-12 18:11:54 -05:00
..
tests [CMake] Enabled the CMake property USE_FOLDERS to provide a more structured project list in IDEs with the help of set(CMAKE_FOLDER "...") calls. 2024-07-03 19:55:04 +02:00
CMakeLists.txt Fix bad rebase for sdlmain.cpp 2024-06-29 18:28:23 +02:00
error.cpp Isolate misc module 2024-06-27 01:26:35 +03:00
log.cpp
log.h Isolate misc module 2024-06-27 01:26:35 +03:00
logfile.cpp
logfile.h Isolate misc module 2024-06-27 01:26:35 +03:00
pserror.h Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
psglob.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
psglob.h Isolate misc module 2024-06-27 01:26:35 +03:00
psrand.cpp
psrand.h Isolate misc module 2024-06-27 01:26:35 +03:00
pstring.cpp Fix missing header includes/restore third-party files 2024-05-23 23:14:40 -04:00
pstring.h Isolate misc module 2024-06-27 01:26:35 +03:00