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:
parent
d917d662ae
commit
d6e2cb105e
3 changed files with 66 additions and 6 deletions
|
@ -8,13 +8,13 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=alsa-lib
|
PKG_NAME:=alsa-lib
|
||||||
PKG_VERSION:=1.1.9
|
PKG_VERSION:=1.2.2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/lib/ \
|
PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/lib/ \
|
||||||
http://distfiles.gentoo.org/distfiles/
|
http://distfiles.gentoo.org/distfiles/
|
||||||
PKG_HASH:=488373aef5396682f3a411a6d064ae0ad196b9c96269d0bb912fbdeec94b994b
|
PKG_HASH:=d8e853d8805574777bbe40937812ad1419c9ea7210e176f0def3e6ed255ab3ec
|
||||||
|
|
||||||
PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>, \
|
PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>, \
|
||||||
Peter Wagner <tripolar@gmx.at>
|
Peter Wagner <tripolar@gmx.at>
|
||||||
|
@ -32,7 +32,7 @@ define Package/alsa-lib
|
||||||
TITLE:=ALSA (Advanced Linux Sound Architecture) library
|
TITLE:=ALSA (Advanced Linux Sound Architecture) library
|
||||||
URL:=http://www.alsa-project.org/
|
URL:=http://www.alsa-project.org/
|
||||||
DEPENDS:=@AUDIO_SUPPORT +kmod-sound-core +libpthread +librt
|
DEPENDS:=@AUDIO_SUPPORT +kmod-sound-core +libpthread +librt
|
||||||
LICENSE:=LGPLv2.1-or-later
|
LICENSE:=LGPL-2.1-or-later
|
||||||
LICENSE_FILES:=COPYING
|
LICENSE_FILES:=COPYING
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -41,6 +41,20 @@ define Package/alsa-lib/description
|
||||||
You must have enabled the ALSA support in the kernel.
|
You must have enabled the ALSA support in the kernel.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/aserver
|
||||||
|
SECTION:=sound
|
||||||
|
CATEGORY:=Sound
|
||||||
|
TITLE:=ALSA (Advanced Linux Sound Architecture) server
|
||||||
|
URL:=http://www.alsa-project.org/
|
||||||
|
DEPENDS:=+alsa-lib
|
||||||
|
LICENSE:=GPL-2.0-or-later
|
||||||
|
LICENSE_FILES:=aserver/COPYING
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/aserver/description
|
||||||
|
This is the aserver application for ALSA.
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/alsa-lib/conffiles
|
define Package/alsa-lib/conffiles
|
||||||
/etc/asound.conf
|
/etc/asound.conf
|
||||||
endef
|
endef
|
||||||
|
@ -51,8 +65,8 @@ CONFIGURE_ARGS+= \
|
||||||
--disable-python \
|
--disable-python \
|
||||||
--disable-debug \
|
--disable-debug \
|
||||||
--without-debug \
|
--without-debug \
|
||||||
$(SOFT_FLOAT_CONFIG_OPTION) \
|
--without-versioned \
|
||||||
--with-versioned=no
|
$(SOFT_FLOAT_CONFIG_OPTION)
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include/
|
$(INSTALL_DIR) $(1)/usr/include/
|
||||||
|
@ -64,6 +78,9 @@ define Build/InstallDev
|
||||||
$(CP) \
|
$(CP) \
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libasound.{la,so*} \
|
$(PKG_INSTALL_DIR)/usr/lib/libasound.{la,so*} \
|
||||||
$(1)/usr/lib/
|
$(1)/usr/lib/
|
||||||
|
$(CP) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/libatopology.{la,so*} \
|
||||||
|
$(1)/usr/lib/
|
||||||
$(INSTALL_DATA) \
|
$(INSTALL_DATA) \
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/alsa.pc \
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/alsa.pc \
|
||||||
$(1)/usr/lib/pkgconfig/
|
$(1)/usr/lib/pkgconfig/
|
||||||
|
@ -79,6 +96,9 @@ define Package/alsa-lib/install
|
||||||
$(CP) \
|
$(CP) \
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libasound.so.* \
|
$(PKG_INSTALL_DIR)/usr/lib/libasound.so.* \
|
||||||
$(1)/usr/lib/
|
$(1)/usr/lib/
|
||||||
|
$(CP) \
|
||||||
|
$(PKG_INSTALL_DIR)/usr/lib/libatopology.so.* \
|
||||||
|
$(1)/usr/lib/
|
||||||
|
|
||||||
$(INSTALL_DIR) $(1)/usr/share/alsa/{cards,pcm}
|
$(INSTALL_DIR) $(1)/usr/share/alsa/{cards,pcm}
|
||||||
$(INSTALL_DATA) \
|
$(INSTALL_DATA) \
|
||||||
|
@ -92,4 +112,10 @@ define Package/alsa-lib/install
|
||||||
$(1)/usr/share/alsa/cards/
|
$(1)/usr/share/alsa/cards/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/aserver/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/aserver $(1)/usr/bin
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,alsa-lib))
|
$(eval $(call BuildPackage,alsa-lib))
|
||||||
|
$(eval $(call BuildPackage,aserver))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- a/src/Makefile.in
|
--- a/src/Makefile.in
|
||||||
+++ b/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)
|
libasound.la: $(libasound_la_OBJECTS) $(libasound_la_DEPENDENCIES) $(EXTRA_libasound_la_DEPENDENCIES)
|
||||||
|
|
34
libs/alsa-lib/patches/200-usleep.patch
Normal file
34
libs/alsa-lib/patches/200-usleep.patch
Normal file
|
@ -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;
|
Loading…
Reference in a new issue