From 74ab9515a48b312be5170dc3256e3fef8607e6a2 Mon Sep 17 00:00:00 2001
From: Brian West <brian@freeswitch.org>
Date: Thu, 20 Mar 2014 13:08:30 -0500
Subject: [PATCH] FS-6294 DragonFly requires this also.

---
 libs/sofia-sip/.update                             | 2 +-
 libs/sofia-sip/libsofia-sip-ua/su/su_kqueue_port.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libs/sofia-sip/.update b/libs/sofia-sip/.update
index df6c959c29..b88f7dad81 100644
--- a/libs/sofia-sip/.update
+++ b/libs/sofia-sip/.update
@@ -1 +1 @@
-Thu Mar 20 08:00:42 CDT 2014
+Thu Mar 20 13:08:14 CDT 2014
diff --git a/libs/sofia-sip/libsofia-sip-ua/su/su_kqueue_port.c b/libs/sofia-sip/libsofia-sip-ua/su/su_kqueue_port.c
index c394895de4..f2318e1190 100644
--- a/libs/sofia-sip/libsofia-sip-ua/su/su_kqueue_port.c
+++ b/libs/sofia-sip/libsofia-sip-ua/su/su_kqueue_port.c
@@ -51,7 +51,7 @@
 /* Some platforms apparently define the udata field of struct kevent as
  * intptr_t, whereas others define it as void*.  There doesn't seem to be an
  * easy way to tell them apart via autoconf, so we need to use OS macros. */
-#if defined(HAVE_INTTYPES_H) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__darwin__) && !defined(__APPLE__)
+#if defined(HAVE_INTTYPES_H) && !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__darwin__) && !defined(__APPLE__) && !defined(__DragonFly__)
 #define INT_TO_UDATA(x) ((intptr_t)(x))
 #else
 #define INT_TO_UDATA(x) ((void*)(intptr_t)(x))