mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
FreeBSD related changes: physical cdrom fix, audio merge PR: ports/74015 Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
12 lines
240 B
C
12 lines
240 B
C
Index: qemu/audio/audio.c
|
|
@@ -28,6 +28,10 @@
|
|
|
|
#include "audio/audio_int.h"
|
|
|
|
+#ifndef INT16_MAX
|
|
+#define INT16_MAX 0x7fff
|
|
+#endif
|
|
+
|
|
#define dolog(...) AUD_log ("audio", __VA_ARGS__)
|
|
#ifdef DEBUG
|
|
#define ldebug(...) dolog (__VA_ARGS__)
|