]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-6294 DragonFly requires this also.
authorBrian West <brian@freeswitch.org>
Thu, 20 Mar 2014 18:08:30 +0000 (13:08 -0500)
committerBrian West <brian@freeswitch.org>
Fri, 21 Mar 2014 16:14:15 +0000 (11:14 -0500)
libs/sofia-sip/.update
libs/sofia-sip/libsofia-sip-ua/su/su_kqueue_port.c

index df6c959c29fc9ac6b7854ae62ae5cd9981a2a9d2..b88f7dad816fd5dce5dd7199e8a9f1385e9b5067 100644 (file)
@@ -1 +1 @@
-Thu Mar 20 08:00:42 CDT 2014
+Thu Mar 20 13:08:14 CDT 2014
index c394895de46d25cb36ff628d0c6efd8ef64e650c..f2318e11904b9b32cad8caa7f565a8de374241ee 100644 (file)
@@ -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))