mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-11 21:48:50 +01:00
* configure.ac: QNX puts resolver functions in libsocket. From Sean
Boudreau.
This commit is contained in:
parent
28c7223d13
commit
c472952fe5
@ -1,3 +1,8 @@
|
||||
2007-04-15 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* configure.ac: QNX puts resolver functions in libsocket. From
|
||||
Sean Boudreau.
|
||||
|
||||
2007-03-05 Werner Koch <wk@g10code.com>
|
||||
|
||||
Released 1.4.7.
|
||||
|
12
configure.ac
12
configure.ac
@ -660,12 +660,12 @@ if test x"$use_dns_pka" = xyes || test x"$use_dns_srv" = xyes || test x"$use_dns
|
||||
_dns_save_libs=$LIBS
|
||||
LIBS=""
|
||||
# the double underscore thing is a glibc-ism?
|
||||
AC_SEARCH_LIBS(res_query,resolv bind,,
|
||||
AC_SEARCH_LIBS(__res_query,resolv bind,,have_resolver=no))
|
||||
AC_SEARCH_LIBS(dn_expand,resolv bind,,
|
||||
AC_SEARCH_LIBS(__dn_expand,resolv bind,,have_resolver=no))
|
||||
AC_SEARCH_LIBS(dn_skipname,resolv bind,,
|
||||
AC_SEARCH_LIBS(__dn_skipname,resolv bind,,have_resolver=no))
|
||||
AC_SEARCH_LIBS(res_query,resolv bind socket,,
|
||||
AC_SEARCH_LIBS(__res_query,resolv bind socket,,have_resolver=no))
|
||||
AC_SEARCH_LIBS(dn_expand,resolv bind socket,,
|
||||
AC_SEARCH_LIBS(__dn_expand,resolv bind socket,,have_resolver=no))
|
||||
AC_SEARCH_LIBS(dn_skipname,resolv bind socket,,
|
||||
AC_SEARCH_LIBS(__dn_skipname,resolv bind socket,,have_resolver=no))
|
||||
|
||||
if test x"$have_resolver" != xno ; then
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user