Descent3/linux
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
..
CMakeLists.txt Isolate misc module 2024-06-27 01:26:35 +03:00
linux_fix.h Replace Global* memory functions 2024-06-15 22:07:45 +03:00
lnxapp.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
lnxapp.h Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
lnxcon_null.cpp Cleanup linux console code 2024-06-02 03:41:50 +03:00
lnxcon_raw.cpp Cleanup linux console code 2024-06-02 03:41:50 +03:00
lnxcon.cpp Windows SDL2 compilation 2024-06-29 18:21:37 +02:00
lnxcontroller.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
lnxcontroller.h
lnxdata.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
registry.cpp Windows SDL2 compilation 2024-06-29 18:21:37 +02:00
registry.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00