2016-07-26 18:51:15 +02:00
|
|
|
--- src/pcm-wav.cc.orig 2007-03-15 18:23:10 UTC
|
|
|
|
+++ src/pcm-wav.cc
|
2007-04-20 23:27:48 +02:00
|
|
|
@@ -14,6 +14,16 @@
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <iostream>
|
|
|
|
+#ifdef __NetBSD__
|
|
|
|
+# include <machine/byte_swap.h>
|
|
|
|
+#elif __FreeBSD__
|
|
|
|
+# include <sys/endian.h>
|
|
|
|
+# define __BYTE_ORDER _BYTE_ORDER
|
|
|
|
+# define __LITTLE_ENDIAN _LITTLE_ENDIAN
|
|
|
|
+# define __BIG_ENDIAN _BIG_ENDIAN
|
|
|
|
+#else
|
|
|
|
+# include <byteswap.h>
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
using std::cerr;
|
|
|
|
|