mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 23:18:42 +01:00
alsa-lib: Update to 1.2.2
Added aserver application. Fixed license information. Small consistency updates. Added usleep patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
--- a/src/Makefile.in
|
||||
+++ b/src/Makefile.in
|
||||
@@ -493,7 +493,7 @@ clean-libLTLIBRARIES:
|
||||
@@ -490,7 +490,7 @@ clean-libLTLIBRARIES:
|
||||
}
|
||||
|
||||
libasound.la: $(libasound_la_OBJECTS) $(libasound_la_DEPENDENCIES) $(EXTRA_libasound_la_DEPENDENCIES)
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
--- a/src/pcm/pcm_shm.c
|
||||
+++ b/src/pcm/pcm_shm.c
|
||||
@@ -45,6 +45,14 @@
|
||||
#include <netdb.h>
|
||||
#include "aserver.h"
|
||||
|
||||
+#if _POSIX_C_SOURCE >= 200809L
|
||||
+#define usleep(a) \
|
||||
+ do { \
|
||||
+ const struct timespec req = {0, a * 1000}; \
|
||||
+ nanosleep(&req, NULL); \
|
||||
+ } while(0)
|
||||
+#endif
|
||||
+
|
||||
#ifndef PIC
|
||||
/* entry for static linking */
|
||||
const char *_snd_module_pcm_shm = "";
|
||||
--- a/src/ucm/ucm_local.h
|
||||
+++ b/src/ucm/ucm_local.h
|
||||
@@ -53,6 +53,14 @@
|
||||
#define SEQUENCE_ELEMENT_TYPE_CSET_TLV 6
|
||||
#define SEQUENCE_ELEMENT_TYPE_CMPT_SEQ 7
|
||||
|
||||
+#if _POSIX_C_SOURCE >= 200809L
|
||||
+#define usleep(a) \
|
||||
+ do { \
|
||||
+ const struct timespec req = {0, a * 1000}; \
|
||||
+ nanosleep(&req, NULL); \
|
||||
+ } while(0)
|
||||
+#endif
|
||||
+
|
||||
struct ucm_value {
|
||||
struct list_head list;
|
||||
char *name;
|
||||
Reference in New Issue
Block a user