Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/host
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2011-12-07 00:42:05 +0400
committerJason Perkins <starkos@industriousone.com>2011-12-07 00:42:05 +0400
commit974468375bba3fc2636345573854640feb876179 (patch)
tree747dd401f161fe78939421906425580358eb29a2 /src/host
parent07853b1e340b440c01157ecaab45a220ca216cbd (diff)
Patch 3429777: Support for DragonFly BSD (Joachim de Groot) and 3445049: Build fix for FreeBSD (Konstantin Tokarev)
Diffstat (limited to 'src/host')
-rwxr-xr-xsrc/host/premake.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/premake.h b/src/host/premake.h
index a9170e8..5f496e6 100755
--- a/src/host/premake.h
+++ b/src/host/premake.h
@@ -15,7 +15,7 @@
#if defined(__linux__)
#define PLATFORM_LINUX (1)
#define PLATFORM_STRING "linux"
-#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
#define PLATFORM_BSD (1)
#define PLATFORM_STRING "bsd"
#elif defined(__APPLE__) && defined(__MACH__)