Index: /trunk/include/k/kDefs.h
===================================================================
--- /trunk/include/k/kDefs.h	(revision 14)
+++ /trunk/include/k/kDefs.h	(revision 15)
@@ -39,22 +39,24 @@
 /** Darwin - aka Mac OS X. */
 #define K_OS_DARWIN     1
+/** DragonFly BSD. */
+#define K_OS_DRAGONFLY  2
 /** FreeBSD. */
-#define K_OS_FREEBSD    2
+#define K_OS_FREEBSD    3
 /** Linux. */
-#define K_OS_LINUX      3
+#define K_OS_LINUX      4
 /** NetBSD. */
-#define K_OS_NETBSD     4
+#define K_OS_NETBSD     5
 /** NT (native). */
-#define K_OS_NT         5
+#define K_OS_NT         6
 /** OpenBSD*/
-#define K_OS_OPENBSD    6
+#define K_OS_OPENBSD    7
 /** OS/2 */
-#define K_OS_OS2        7
+#define K_OS_OS2        8
 /** Solaris */
-#define K_OS_SOLARIS    8
+#define K_OS_SOLARIS    9
 /** Windows. */
-#define K_OS_WINDOWS    9
+#define K_OS_WINDOWS    10
 /** The max K_OS_* value (exclusive). */
-#define K_OS_MAX        10
+#define K_OS_MAX        11
 /** @} */
 
@@ -73,4 +75,6 @@
 # if defined(__APPLE__)
 #  define K_OS      K_OS_DARWIN
+# elif defined(__DragonFly__)
+#  define K_OS      K_OS_DRAGONFLY
 # elif defined(__FreeBSD__) /*??*/
 #  define K_OS      K_OS_FREEBSD
