Azamat H. Hackimov
|
79db9aa3e2
|
Move platform-specific defines and macros to own file crossplat.h
|
2024-08-20 23:09:27 +03:00 |
|
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 |
|
Louis Gombert
|
5372e01323
|
Run clang-format on legacy code
|
2024-06-15 20:13:59 +02:00 |
|
GravisZro
|
dc91b22635
|
Fix rebase breakage
|
2024-05-24 09:13:36 -04:00 |
|
GravisZro
|
d0be4f81bb
|
Move _stat macro to linux_fix.h
This is a fix for linux, so move it to correct location.
|
2024-05-24 08:53:03 -04:00 |
|
Louis Gombert
|
31b63bb79f
|
Add license to legacy utilities
Generated using script:
for file in \$(find ./legacy -type f | \grep -E "\.cpp|\.h")
do
mv $file temp.xxx
cp gplheader $file
cat temp.xxx >> $file
done
|
2024-04-20 18:33:12 +02:00 |
|
Louis Gombert
|
b0f7dc1437
|
Add D3 utilities source (from kevinbentley/add-missing)
Kevin Bentley <kevin.bentley@gmail.com>
|
2024-04-20 18:33:12 +02:00 |
|