Descent3/manage
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
doorpage.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
doorpage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
gamefilepage.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
gamefilepage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
generic.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
genericpage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
manage.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
megapage.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
megapage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
pagelock.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
powerpage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
robotpage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
shippage.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
shippage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
soundpage.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
soundpage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
texpage.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
texpage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
weaponpage.cpp MANAGE: convert some global path variables to std::fs::path 2024-07-01 12:50:49 +03:00
weaponpage.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00