[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Shishi 1.0.1 released
From: |
Eray Aslan |
Subject: |
Re: Shishi 1.0.1 released |
Date: |
Fri, 10 Aug 2012 09:14:50 +0300 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120722 Thunderbird/14.0 |
On 08/09/2012 12:39 AM, Simon Josefsson wrote:
> I just pushed another patch to resolve resolver linking issues,
> could you test whether it also solves your problem?
That would be commit 63023d749f4f7 I guess. Still no go:
[...]
checking for res_query... no
checking for res_query in -lresolv... no
configure: WARNING: no libresolv, SRV RRs not used
> You didn't mention which OS you were using, is it a BSD system?
Sorry, this is linux.
Basically, any non-ancient glibc defines res_query in resolv.h and
implements __res_query() only:
$ grep -w "define res_query" /usr/include/resolv.h
#define res_query __res_query
$ nm -D /usr/lib64/libresolv.so | grep res_query$
0000000000007ae0 T __res_query
i.e. AC_CHECK_LIB cannot find res_query in libresolv without including
resolv.h in its test. Hence, my patch.
--
Eray Aslan <address@hidden>