From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 14 May 2025 08:10:04 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uF5Jc-005Pd4-1L for lore@lore.pengutronix.de; Wed, 14 May 2025 08:10:04 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1uF5Jc-0008Bw-2x; Wed, 14 May 2025 08:10:04 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1uF5HP-0004xa-Ku; Wed, 14 May 2025 08:07:47 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1uF5HP-002fAZ-01; Wed, 14 May 2025 08:07:47 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1uF5HP-0025vz-1I; Wed, 14 May 2025 08:07:47 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Wed, 14 May 2025 08:07:47 +0200 Message-Id: <20250514060747.499460-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250506125250.2282628-4-ada@thorsis.com> References: <20250506125250.2282628-4-ada@thorsis.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] libmicrohttpd: version bump 0.9.76 -> 0.9.77 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: Alexander Dahl 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.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 95c186f8665f2b905c8376e15b9c67a504553aec. Michael [sent from post-receive hook] On Wed, 14 May 2025 08:07:47 +0200, Alexander Dahl wrote: > Mostly bugfix release. > > The new, improved eventfd configure check failed for cross compiling. > Just assume the kernel has CONFIG_EVENTFD enabled (recommended and > enabled if cgroups are enabled). > > Link: https://lists.gnu.org/archive/html/libmicrohttpd/2023-05/msg00008.html > Signed-off-by: Alexander Dahl > Message-Id: <20250506125250.2282628-4-ada@thorsis.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/libmicrohttpd.make b/rules/libmicrohttpd.make > index 441644751da0..7d8444b21bd5 100644 > --- a/rules/libmicrohttpd.make > +++ b/rules/libmicrohttpd.make > @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBMICROHTTPD) += libmicrohttpd > # > # Paths and names > # > -LIBMICROHTTPD_VERSION := 0.9.76 > -LIBMICROHTTPD_MD5 := a9f03510c521964ad40698471351673a > +LIBMICROHTTPD_VERSION := 0.9.77 > +LIBMICROHTTPD_MD5 := bc1b407093459ff5e7af2e3c0634d220 > LIBMICROHTTPD := libmicrohttpd-$(LIBMICROHTTPD_VERSION) > LIBMICROHTTPD_SUFFIX := tar.gz > LIBMICROHTTPD_URL := $(call ptx/mirror, GNU, libmicrohttpd/$(LIBMICROHTTPD).$(LIBMICROHTTPD_SUFFIX)) > @@ -43,6 +43,10 @@ endif > # autoconf > # > LIBMICROHTTPD_CONF_TOOL := autoconf > + > +LIBMICROHTTPD_CONF_ENV := $(CROSS_ENV) \ > + mhd_cv_eventfd_usable=yes > + > LIBMICROHTTPD_CONF_OPT := \ > $(CROSS_AUTOCONF_USR) \ > --disable-nls \