summaryrefslogtreecommitdiff
path: root/indra/llfilesystem
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2023-07-12 20:37:38 +0800
committerErik Kundiman <erik@megapahit.org>2023-07-19 15:57:07 +0800
commitb8952a7df228abd03783665ece0e91e2f0fd63bd (patch)
treeb2eff1355cc64520abbe6074139dba0ccd0d0a4e /indra/llfilesystem
parente7ad9b00ce677fc38f0dec809dc160e7bb307dd2 (diff)
FreeBSD can use lldir_linux too
Diffstat (limited to 'indra/llfilesystem')
-rw-r--r--indra/llfilesystem/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llfilesystem/CMakeLists.txt b/indra/llfilesystem/CMakeLists.txt
index 9f24f75eab..23193a30ea 100644
--- a/indra/llfilesystem/CMakeLists.txt
+++ b/indra/llfilesystem/CMakeLists.txt
@@ -30,7 +30,7 @@ if (DARWIN)
LIST(APPEND llfilesystem_HEADER_FILES lldir_mac.h)
endif (DARWIN)
-if (LINUX)
+if (LINUX OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
LIST(APPEND llfilesystem_SOURCE_FILES lldir_linux.cpp)
LIST(APPEND llfilesystem_HEADER_FILES lldir_linux.h)
@@ -40,7 +40,7 @@ if (LINUX)
"-DAPP_RO_DATA_DIR=\\\"${APP_SHARE_DIR}\\\""
)
endif (INSTALL)
-endif (LINUX)
+endif (LINUX OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
if (WINDOWS)
LIST(APPEND llfilesystem_SOURCE_FILES lldir_win32.cpp)