fix freebsd build
SVN-Revision: 192
This commit is contained in:
parent
138252ae7c
commit
d0396f6543
1 changed files with 15 additions and 0 deletions
|
@ -59,8 +59,23 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <elf.h>
|
#include <elf.h>
|
||||||
|
#ifdef __FreeBSD__
|
||||||
|
/**
|
||||||
|
* This seems to work on FreeBSD 5.3, should
|
||||||
|
* work on all newer versions as well. I have
|
||||||
|
* no idea if it will work on versions < 5.3
|
||||||
|
*
|
||||||
|
* Joe Estock (guru) <jestock at nutextonline.com>
|
||||||
|
*/
|
||||||
|
#include <sys/endian.h>
|
||||||
|
#define bswap_64 __bswap64
|
||||||
|
#define bswap_32 __bswap32
|
||||||
|
#define bswap_16 __bswap16
|
||||||
|
#else
|
||||||
#include <endian.h>
|
#include <endian.h>
|
||||||
#include <byteswap.h>
|
#include <byteswap.h>
|
||||||
|
#endif /* defined(__FreeBSD__) */
|
||||||
|
|
||||||
|
|
||||||
#ifndef TRUE
|
#ifndef TRUE
|
||||||
#define TRUE 1
|
#define TRUE 1
|
||||||
|
|
Loading…
Reference in a new issue