summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2009-10-28 16:31:59 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-02-27 21:09:16 +0200
commit50b83b3abecd87ffb8d35cdbda0860b15ce638cf (patch)
tree23e0ea2bfb5d56aad330ee972bf68ece55c6b0c0
parentb6dc0724315798a666573bda02b213110b8016b3 (diff)
add some FreeBSD compatibilitydahdi
git-svn-id: http://svn.asterisk.org/svn/octasic_api/oct612x/trunk@43 537310ab-6354-42db-a3cc-247b777f7be6
-rw-r--r--software/include/octtype.h4
-rw-r--r--software/octdeviceapi/oct6100api/oct6100_api/oct6100_channel.c5
-rw-r--r--software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c5
3 files changed, 14 insertions, 0 deletions
diff --git a/software/include/octtype.h b/software/include/octtype.h
index 9cba68f..7bed715 100644
--- a/software/include/octtype.h
+++ b/software/include/octtype.h
@@ -140,7 +140,11 @@ typedef unsigned int * PUINT;
typedef PSZ * PPSZ;
+#if defined(__FreeBSD__)
+#include <sys/stddef.h>
+#else
#include <linux/stddef.h>
+#endif
#endif
diff --git a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_channel.c b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_channel.c
index 0fe36d5..49a876f 100644
--- a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_channel.c
+++ b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_channel.c
@@ -32,7 +32,12 @@ $Octasic_Revision: 492 $
/***************************** INCLUDE FILES *******************************/
+#if defined(__FreeBSD__)
+#include <sys/types.h>
+#include <dahdi/compat/bsd.h>
+#else
#include <linux/slab.h>
+#endif
#include "octdef.h"
diff --git a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c
index 0afcc40..00c0fec 100644
--- a/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c
+++ b/software/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c
@@ -33,7 +33,12 @@ $Octasic_Revision: 347 $
/***************************** INCLUDE FILES *******************************/
+#if defined(__FreeBSD__)
+#include <sys/types.h>
+#include <dahdi/compat/bsd.h>
+#else
#include <linux/slab.h>
+#endif
#include "octdef.h"