libdvdread: bump version (#8878)

remove compat recipe
This commit is contained in:
kenmays
2023-06-21 07:43:47 -07:00
committed by GitHub
parent 8a3f0b2963
commit 6d8cee8fba
4 changed files with 10 additions and 121 deletions

View File

@@ -0,0 +1,22 @@
From fd8bdcc61cd86129c35f112350d83e047530c73a Mon Sep 17 00:00:00 2001
From: Jerome Duval <jerome.duval@gmail.com>
Date: Wed, 3 Sep 2014 15:17:33 +0000
Subject: haiku patch
diff --git a/src/bswap.h b/src/bswap.h
index d3b2383..2f2358f 100644
--- a/src/bswap.h
+++ b/src/bswap.h
@@ -85,7 +85,7 @@
* functionality!
*/
-#elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined(_WIN32) || defined(__CYGWIN__) || defined(__BEOS__) || defined(__OS2__)
+#elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined(_WIN32) || defined(__CYGWIN__) || defined(__BEOS__) || defined(__OS2__) || defined(__HAIKU__)
#define B2N_16(x) \
x = ((((x) & 0xff00) >> 8) | \
(((x) & 0x00ff) << 8))
--
2.37.3