Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package adcli for openSUSE:Factory checked 
in at 2021-08-27 21:43:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/adcli (Old)
 and      /work/SRC/openSUSE:Factory/.adcli.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "adcli"

Fri Aug 27 21:43:25 2021 rev:5 rq:914203 version:0.9.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/adcli/adcli.changes      2021-04-10 
15:26:48.474338266 +0200
+++ /work/SRC/openSUSE:Factory/.adcli.new.1899/adcli.changes    2021-08-27 
21:43:36.361949802 +0200
@@ -1,0 +2,6 @@
+Fri Aug 13 08:46:13 UTC 2021 - Samuel Cabrero <scabr...@suse.de>
+
+- Fix build with glibc 2.34; (bsc#1189080); Add patch
+  0001-configure-check-for-ns_get16-and-ns_get32-as-well.patch
+
+-------------------------------------------------------------------

New:
----
  0001-configure-check-for-ns_get16-and-ns_get32-as-well.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ adcli.spec ++++++
--- /var/tmp/diff_new_pack.erg85y/_old  2021-08-27 21:43:36.913950441 +0200
+++ /var/tmp/diff_new_pack.erg85y/_new  2021-08-27 21:43:36.917950445 +0200
@@ -29,6 +29,8 @@
 Source2:        
https://gitlab.freedesktop.org/sbose/adcli/uploads/%{sighash}/%{name}-%{version}.tar.gz.sig
 # 
https://keys.openpgp.org/vks/v1/by-fingerprint/4A21C23848CDC107F487939849236C40EE9D57EB
 Source3:        %{name}.keyring
+Patch1:         0001-configure-check-for-ns_get16-and-ns_get32-as-well.patch
+BuildRequires:  automake
 BuildRequires:  libxslt-tools
 BuildRequires:  openldap2-devel
 BuildRequires:  pkgconfig
@@ -52,7 +54,7 @@
 This package contains the documentation for adcli.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
 %configure \

++++++ 0001-configure-check-for-ns_get16-and-ns_get32-as-well.patch ++++++
>From e841ba7513f3f8b6393183d2dea9adcbf7ba2e44 Mon Sep 17 00:00:00 2001
From: Sumit Bose <sb...@redhat.com>
Date: Wed, 28 Jul 2021 12:55:16 +0200
Subject: [PATCH] configure: check for ns_get16 and ns_get32 as well

With newer versions of glibc res_query() might ba already available in
glibc with ns_get16() and ns_get32() still requires libresolv.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1984891
---
 configure.ac | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index c6ff31d..fc6e790 100644
--- a/configure.ac
+++ b/configure.ac
@@ -98,13 +98,15 @@ AC_SUBST(LDAP_CFLAGS)
 # -------------------------------------------------------------------
 # resolv
 
-AC_MSG_CHECKING(for which library has res_query)
+AC_MSG_CHECKING([for which library has res_query, ns_get16 and ns_get32])
 for lib in "" "-lresolv"; do
        saved_LIBS="$LIBS"
        LIBS="$LIBS $lib"
        AC_LINK_IFELSE([
                AC_LANG_PROGRAM([#include <resolv.h>],
-                               [res_query (0, 0, 0, 0, 0)])
+                               [res_query (0, 0, 0, 0, 0);
+                                ns_get32 (NULL);
+                                ns_get16 (NULL);])
        ],
        [ AC_MSG_RESULT(${lib:-libc}); have_res_query="yes"; break; ],
        [ LIBS="$saved_LIBS" ])
-- 
2.32.0

Reply via email to