From: Adhemerval Zanella Date: Thu, 30 Dec 2021 11:57:56 +0000 (-0300) Subject: resolv: Do not build libanl.so for ABIs starting at 2.35 X-Git-Tag: glibc-2.35~160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=737e873b305d8a2d925a8e346b84910eae5a39b3;p=thirdparty%2Fglibc.git resolv: Do not build libanl.so for ABIs starting at 2.35 --- diff --git a/resolv/Makefile b/resolv/Makefile index 59e599535c7..ed353386d9e 100644 --- a/resolv/Makefile +++ b/resolv/Makefile @@ -78,8 +78,12 @@ generate := mtrace-tst-leaks.out tst-leaks.mtrace tst-leaks2.mtrace extra-libs := libresolv libnss_dns ifeq ($(have-thread-library),yes) -extra-libs += libanl routines += gai_sigqueue +endif + +ifeq ($(have-GLIBC_2.34)$(have-thread-library),yesyes) +# Empty compatibility library for old binaries. +extra-libs += libanl tests += \ tst-bug18665 \