Mvanbaak said this was needed to compile on OpenBSD, so put it in the OpenBSD section.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@146920 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jeff Peeler 2008-10-06 22:59:58 +00:00
parent 50923eab5d
commit 623bc9d82a
1 changed files with 1 additions and 1 deletions

View File

@ -27,12 +27,12 @@
* Autodetect system endianess
*/
#include "asterisk/compat.h"
#ifndef __BYTE_ORDER
#ifdef __linux__
#include <endian.h>
#elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
#include "asterisk/compat.h"
#include <machine/endian.h>
#define __BYTE_ORDER BYTE_ORDER
#define __LITTLE_ENDIAN LITTLE_ENDIAN