mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Ladislav Michl <ladis@linux-mips.org>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] alsa: version bump 1.0.24 -> 1.0.29
Date: Wed, 30 Sep 2015 11:57:12 +0200	[thread overview]
Message-ID: <20150930095712.GA2641@localhost.localdomain> (raw)

Signed-off-by: Ladislav Michl <ladis@linux-mips.org>

---

 b/rules/alsa-lib.make                                                            |    5 -
 b/rules/alsa-utils.make                                                          |    4 -
 patches/alsa-lib-1.0.24.1/0001-ctlparse-Respect-softfloat-configure-option.patch |   35 ----------
 patches/alsa-lib-1.0.24.1/series                                                 |    1
 4 files changed, 4 insertions(+), 41 deletions(-)

diff --git a/patches/alsa-lib-1.0.24.1/0001-ctlparse-Respect-softfloat-configure-option.patch b/patches/alsa-lib-1.0.24.1/0001-ctlparse-Respect-softfloat-configure-option.patch
deleted file mode 100644
index fcc98e7..0000000
--- a/patches/alsa-lib-1.0.24.1/0001-ctlparse-Respect-softfloat-configure-option.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 1720d30ad82ebb8b5f52fc08c6c610e51203fa89 Mon Sep 17 00:00:00 2001
-From: Alexander Stein <a.stein@systec-electronic.com>
-Date: Thu, 19 May 2011 15:16:36 +0200
-Subject: [PATCH] ctlparse: Respect softfloat configure option
-
-If we want softlfoat we can't use ceil which uses libm.
-
-Signed-off-by: Alexander Stein <a.stein@systec-electronic.com>
-Signed-off-by: Takashi Iwai <tiwai@suse.de>
----
- src/control/ctlparse.c |    9 +++++++++
- 1 files changed, 9 insertions(+), 0 deletions(-)
-
-diff --git a/src/control/ctlparse.c b/src/control/ctlparse.c
-index a929816..a16f96a 100644
---- a/src/control/ctlparse.c
-+++ b/src/control/ctlparse.c
-@@ -33,8 +33,17 @@
- 
- /* Function to convert from percentage to volume. val = percentage */
- 
-+#ifdef HAVE_SOFT_FLOAT
-+static inline long int convert_prange1(long val, long min, long max)
-+{
-+	long temp = val * (max - min);
-+	return temp / 100 + min + ((temp % 100) == 0 ? 0 : 1);
-+}
-+#else
-+
- #define convert_prange1(val, min, max) \
- 	ceil((val) * ((max) - (min)) * 0.01 + (min))
-+#endif
- 
- #define check_range(val, min, max) \
- 	((val < min) ? (min) : ((val > max) ? (max) : (val)))
diff --git a/patches/alsa-lib-1.0.24.1/series b/patches/alsa-lib-1.0.24.1/series
deleted file mode 100644
index fc771e0..0000000
--- a/patches/alsa-lib-1.0.24.1/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-ctlparse-Respect-softfloat-configure-option.patch
diff --git a/rules/alsa-lib.make b/rules/alsa-lib.make
index e949274..c53ad41 100644
--- a/rules/alsa-lib.make
+++ b/rules/alsa-lib.make
@@ -20,8 +20,8 @@ PACKAGES-$(PTXCONF_ALSA_LIB) += alsa-lib
 ALSA_LIB_SUFFIX		:= tar.bz2
 
 ifdef PTXCONF_ALSA_LIB_FULL
-ALSA_LIB_VERSION	:= 1.0.24.1
-ALSA_LIB_MD5		:= 7cc05f25e1d5b65da8fb3fdcd540f226
+ALSA_LIB_VERSION	:= 1.0.29
+ALSA_LIB_MD5		:= de67e0eca72474d6b1121037dafe1024
 ALSA_LIB		:= alsa-lib-$(ALSA_LIB_VERSION)
 ALSA_LIB_URL		:= \
 	http://dl.ambiweb.de/mirrors/ftp.alsa-project.org/lib/$(ALSA_LIB).$(ALSA_LIB_SUFFIX) \
@@ -51,7 +51,6 @@ ALSA_LIB_ENV 	:= $(CROSS_ENV)
 #
 ALSA_LIB_AUTOCONF := \
 	$(CROSS_AUTOCONF_USR) \
-	--enable-static \
 	--enable-shared \
 	--enable-fast-install \
 	--enable-libtool-lock \
diff --git a/rules/alsa-utils.make b/rules/alsa-utils.make
index 4b06ab0..a0429f2 100644
--- a/rules/alsa-utils.make
+++ b/rules/alsa-utils.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_ALSA_UTILS) += alsa-utils
 #
 # Paths and names
 #
-ALSA_UTILS_VERSION	:= 1.0.24.2
-ALSA_UTILS_MD5		:= 8238cd57cb301d1c36bcf0ecb59ce6b2
+ALSA_UTILS_VERSION	:= 1.0.29
+ALSA_UTILS_MD5		:= 6b289bf874c4c9a63f4b3973093dd404
 ALSA_UTILS		:= alsa-utils-$(ALSA_UTILS_VERSION)
 ALSA_UTILS_SUFFIX	:= tar.bz2
 ALSA_UTILS_URL		:= \
-- 
2.1.4


-- 
ptxdist mailing list
ptxdist@pengutronix.de

                 reply	other threads:[~2015-09-30  9:57 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150930095712.GA2641@localhost.localdomain \
    --to=ladis@linux-mips.org \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox