Takashi Iwai
558ddf7e27
- Backport upstream fixes: cleanups, non-glibc build fixes, fixes and enhancements of pcm_file plugin, etc. 0010-remove-unnecessary-obsolete-compat-hsearch_r.c.patch 0011-local.h-include-sys-types.h-to-fix-issues-with-pcm.h.patch 0012-test-chmap-Add-missing-usage-text-for-s-option.patch 0013-include-global.h-don-t-define-timeval-and-timespec-s.patch 0014-conf.c-use-portable-way-to-initialize-recursive-mute.patch 0015-pcm_file-fix-SEGFAULT-if-file-option-is-missing-whil.patch 0016-pcm_file-fixed-memory-leak.patch 0017-pcm_file-don-t-touch-infile-on-playback-and-output-f.patch 0018-pcm_file-document-new-argument-to-snd_pcm_file_open.patch - Fix aborting in races at closing dmix streams (bnc#852446): 0019-dmix-Don-t-use-assert-and-abort.patch - Don't include modprobe.d hack for 12.2 and older distros, which seem broken on them OBS-URL: https://build.opensuse.org/request/show/208679 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/alsa?expand=0&rev=143
31 lines
883 B
Diff
31 lines
883 B
Diff
From 10ecf963ca9ee7c491affadd4838ef8e35823d2c Mon Sep 17 00:00:00 2001
|
|
From: John Spencer <maillist-alsa@barfooze.de>
|
|
Date: Thu, 10 Oct 2013 18:56:22 +0200
|
|
Subject: [PATCH] local.h: include sys/types.h to fix issues with pcm.h
|
|
|
|
sys/types.h is required for the u_int_XX types used by pcm.h.
|
|
since a change in pcm.h is not desired, we add the inclusion
|
|
to the header that includes pcm.h during build.
|
|
|
|
Signed-off-by: John Spencer <maillist-alsa@barfooze.de>
|
|
Signed-off-by: Takashi Iwai <tiwai@suse.de>
|
|
---
|
|
include/local.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/include/local.h b/include/local.h
|
|
index f0db188ee580..9464efa49642 100644
|
|
--- a/include/local.h
|
|
+++ b/include/local.h
|
|
@@ -31,6 +31,7 @@
|
|
#include <endian.h>
|
|
#include <stdarg.h>
|
|
#include <sys/poll.h>
|
|
+#include <sys/types.h>
|
|
#include <errno.h>
|
|
#include <linux/types.h>
|
|
#include <linux/ioctl.h>
|
|
--
|
|
1.8.4.3
|
|
|