From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: avahi: Enable libdns_sd compatibility. Date: Sat, 19 Sep 2015 11:57:41 -0400 Message-ID: <877fnml7uy.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZdKWG-0008BN-7s for guix-devel@gnu.org; Sat, 19 Sep 2015 11:57:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZdKWF-0007LE-7W for guix-devel@gnu.org; Sat, 19 Sep 2015 11:57:44 -0400 Received: from mail.fsf.org ([208.118.235.13]:35218) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZdKWF-0007L5-5M for guix-devel@gnu.org; Sat, 19 Sep 2015 11:57:43 -0400 Received: from 209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.40.86]:58218 helo=izanagi) by mail.fsf.org with esmtpsa (TLS-1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1ZdKWE-0007Ov-Lu for guix-devel@gnu.org; Sat, 19 Sep 2015 11:57:42 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hey folks, I was trying to package the Mumble VOIP program and ran into an issue with Avahi. Mumble requires that Avahi be compiled with libdns_sd compatibility. The patch is very simple, but entails rebuilding some 300 packages, notably the massive Qt beast. Would this patch have to wait for the next core-updates? --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-avahi-Enable-libdns_sd-compatibility.patch >From 56ba8b433783ca847fbd433114afe6374289cddc Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 19 Sep 2015 11:36:45 -0400 Subject: [PATCH] gnu: avahi: Enable libdns_sd compatibility. * gnu/packages/avahi.scm (avahi): Add '--enable-compat-libdns_sd' configure flag. --- gnu/packages/avahi.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/avahi.scm b/gnu/packages/avahi.scm index 517df32..b6eef1a 100644 --- a/gnu/packages/avahi.scm +++ b/gnu/packages/avahi.scm @@ -52,7 +52,8 @@ "--disable-xmltoman" "--enable-tests" "--disable-qt3" "--disable-qt4" - "--disable-gtk" "--disable-gtk3"))) + "--disable-gtk" "--disable-gtk3" + "--enable-compat-libdns_sd"))) (inputs `(("expat" ,expat) ("glib" ,glib) -- 2.5.0 --=-=-= Content-Type: text/plain Thanks, -- David Thompson GPG Key: 0FF1D807 --=-=-=--