From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 17 Jun 2022 08:21:04 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1o25Lr-004t9z-CJ for lore@lore.pengutronix.de; Fri, 17 Jun 2022 08:21:04 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o25Lr-0004T8-S8; Fri, 17 Jun 2022 08:21:03 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1o25LE-0004Sj-Ji; Fri, 17 Jun 2022 08:20:24 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1o25LC-0010Zy-2i; Fri, 17 Jun 2022 08:20:23 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.94.2) (envelope-from ) id 1o25LC-003SV2-Rz; Fri, 17 Jun 2022 08:20:22 +0200 Date: Fri, 17 Jun 2022 08:20:22 +0200 From: Michael Olbrich To: Linnea Gunnarsson Message-ID: Mail-Followup-To: Linnea Gunnarsson , ptxdist@pengutronix.de References: <20220613114314.3453414-1-linnea.gunnarsson@t2data.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220613114314.3453414-1-linnea.gunnarsson@t2data.com> X-Sent-From: Pengutronix Hildesheim X-URL: http://www.pengutronix.de/ X-IRC: #ptxdist @freenode X-Accept-Language: de,en X-Accept-Content-Type: text/plain Subject: Re: [ptxdist] [PATCH] alsa-lib: version bump 1.2.6.1 -> 1.2.7 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false On Mon, Jun 13, 2022 at 01:43:14PM +0200, Linnea Gunnarsson wrote: > Fixed memory leak. > Add 32-bit compilation support. > Improvements and bugfixes. > > Signed-off-by: Linnea Gunnarsson > --- > .../0001-add-largefile-support.patch | 32 +++++++++++++++++++ > patches/alsa-lib-1.2.7/autogen.sh | 1 + > patches/alsa-lib-1.2.7/series | 4 +++ > rules/alsa-lib.make | 4 +-- > 4 files changed, 39 insertions(+), 2 deletions(-) > create mode 100644 patches/alsa-lib-1.2.7/0001-add-largefile-support.patch > create mode 120000 patches/alsa-lib-1.2.7/autogen.sh > create mode 100644 patches/alsa-lib-1.2.7/series Please remove the patches for the old version. Michael > > diff --git a/patches/alsa-lib-1.2.7/0001-add-largefile-support.patch b/patches/alsa-lib-1.2.7/0001-add-largefile-support.patch > new file mode 100644 > index 000000000..40caa5480 > --- /dev/null > +++ b/patches/alsa-lib-1.2.7/0001-add-largefile-support.patch > @@ -0,0 +1,32 @@ > +From: Lucas Stach > +Date: Tue, 17 Oct 2017 12:29:22 +0200 > +Subject: [PATCH] add largefile support > + > +Signed-off-by: Lucas Stach > +--- > + configure.ac | 5 +++++ > + 1 file changed, 5 insertions(+) > + > +diff --git a/configure.ac b/configure.ac > +index 1089a9766593..0858563e9524 100644 > +--- a/configure.ac > ++++ b/configure.ac > +@@ -38,6 +38,9 @@ AM_PROG_LIBTOOL > + > + CC_NOUNDEFINED > + > ++dnl enable largefile > ++AC_SYS_LARGEFILE > ++ > + dnl Checks for header files. > + AC_HEADER_STDC > + AC_CONFIG_HEADERS(include/config.h) > +@@ -731,6 +734,8 @@ if test ! -L "$srcdir"/include/alsa ; then > + ln -sf . "$srcdir"/include/alsa > + fi > + > ++CPPFLAGS='-include $(CONFIG_HEADER)' > ++ > + AC_OUTPUT(Makefile doc/Makefile doc/pictures/Makefile doc/doxygen.cfg \ > + include/Makefile include/sound/Makefile include/sound/uapi/Makefile \ > + src/Versions src/Makefile \ > diff --git a/patches/alsa-lib-1.2.7/autogen.sh b/patches/alsa-lib-1.2.7/autogen.sh > new file mode 120000 > index 000000000..9f8a4cb7d > --- /dev/null > +++ b/patches/alsa-lib-1.2.7/autogen.sh > @@ -0,0 +1 @@ > +../autogen.sh > \ No newline at end of file > diff --git a/patches/alsa-lib-1.2.7/series b/patches/alsa-lib-1.2.7/series > new file mode 100644 > index 000000000..cab3f9ae2 > --- /dev/null > +++ b/patches/alsa-lib-1.2.7/series > @@ -0,0 +1,4 @@ > +# generated by git-ptx-patches > +#tag:base --start-number 1 > +0001-add-largefile-support.patch > +# e32eb79bf9ae6a22f1a3a5336617e2d3 - git-ptx-patches magic > diff --git a/rules/alsa-lib.make b/rules/alsa-lib.make > index c503315c7..045e497da 100644 > --- a/rules/alsa-lib.make > +++ b/rules/alsa-lib.make > @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_ALSA_LIB) += alsa-lib > # > # Paths and names > # > -ALSA_LIB_VERSION := 1.2.6.1 > -ALSA_LIB_MD5 := 039aae4a55e4a33f4c39b274fcc1dc5e > +ALSA_LIB_VERSION := 1.2.7 > +ALSA_LIB_MD5 := 485d2e9cb91806f0a5732d769cda2800 > ALSA_LIB := alsa-lib-$(ALSA_LIB_VERSION) > ALSA_LIB_SUFFIX := tar.bz2 > ALSA_LIB_URL := \ > -- > 2.34.1 > > > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |