diff options
| author | Erik Kundiman <erik@megapahit.org> | 2024-06-06 09:34:28 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2024-06-06 09:34:28 +0800 |
| commit | f3eb7559d62fbbee940ac89f34519cc39ea6c91d (patch) | |
| tree | ad1623f571058a4e0a1c16a213739768c405c568 /indra/llcommon/stdtypes.h | |
| parent | 3f12069fb1df21781ad97b719cc6dbe86ea11b89 (diff) | |
Change LL_FREEBSD to already existing __FreeBSD__
So we don't need to have a custom environment -DLL_FREEBSD=1 setting.
Diffstat (limited to 'indra/llcommon/stdtypes.h')
| -rw-r--r-- | indra/llcommon/stdtypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/stdtypes.h b/indra/llcommon/stdtypes.h index b95e8f222a..b40a718593 100644 --- a/indra/llcommon/stdtypes.h +++ b/indra/llcommon/stdtypes.h @@ -72,7 +72,7 @@ typedef unsigned __int64 U64; #else typedef long long int S64; typedef long long unsigned int U64; -#if LL_DARWIN || LL_LINUX || LL_FREEBSD +#if LL_DARWIN || LL_LINUX || __FreeBSD__ #define S64L(a) (a##LL) #define U64L(a) (a##ULL) #endif @@ -114,7 +114,7 @@ typedef U32 TPACKETID; #define FALSE (0) #endif -#if LL_FREEBSD +#if __FreeBSD__ #undef NULL #endif |
