aboutsummaryrefslogtreecommitdiffstats
path: root/audio/kdemultimedia2
diff options
context:
space:
mode:
authorkevlo <kevlo@FreeBSD.org>2000-12-14 09:49:34 +0800
committerkevlo <kevlo@FreeBSD.org>2000-12-14 09:49:34 +0800
commitf8e08cb1cc0c19e86ecf9c0d43bbfb38f06837d6 (patch)
treeca558a9a1b638d2fc1248720679cf83f719defa8 /audio/kdemultimedia2
parentf64bb8227f163a834ce7d0ae08bac131b59cd462 (diff)
downloadfreebsd-ports-gnome-f8e08cb1cc0c19e86ecf9c0d43bbfb38f06837d6.tar.gz
freebsd-ports-gnome-f8e08cb1cc0c19e86ecf9c0d43bbfb38f06837d6.tar.zst
freebsd-ports-gnome-f8e08cb1cc0c19e86ecf9c0d43bbfb38f06837d6.zip
Add #define BE_SHORT(x)
Diffstat (limited to 'audio/kdemultimedia2')
-rw-r--r--audio/kdemultimedia2/files/patch-kmidi_config_h8
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/kdemultimedia2/files/patch-kmidi_config_h b/audio/kdemultimedia2/files/patch-kmidi_config_h
index 9fe8a83dcde3..fc82b4c0d9a1 100644
--- a/audio/kdemultimedia2/files/patch-kmidi_config_h
+++ b/audio/kdemultimedia2/files/patch-kmidi_config_h
@@ -8,11 +8,11 @@
-#define BE_LONG(x) __byte_swap_long(x)
+# include <osreldate.h>
+# if __FreeBSD_version <= 500000
-+# define LE_SHORT(x) __byte_swap_word(x)
-+# define LE_LONG(x) __byte_swap_long(x)
++# define BE_SHORT(x) __byte_swap_word(x)
++# define BE_LONG(x) __byte_swap_long(x)
+# else
-+# define LE_SHORT(x) __uint8_swap_uint16(x)
-+# define LE_LONG(x) __uint8_swap_uint32(x)
++# define BE_SHORT(x) __uint8_swap_uint16(x)
++# define BE_LONG(x) __uint8_swap_uint32(x)
+# endif
#else
#define BE_SHORT(x) XCHG_SHORT(x)