]> git.pld-linux.org Git - packages/eb.git/blame - eb-link.patch
- added link patch (kill unnecessary linking with -lnsl); release 5
[packages/eb.git] / eb-link.patch
CommitLineData
edc12787
JB
1--- eb-4.4.3/configure.ac.orig 2010-03-08 13:18:28.000000000 +0100
2+++ eb-4.4.3/configure.ac 2020-08-31 06:15:57.001336125 +0200
3@@ -237,12 +237,9 @@
4 dnl *
5 dnl * Libraries.
6 dnl *
7-AC_CHECK_LIB(resolv, res_query)
8-if test "$ac_cv_lib_resolv_res_query" = no; then
9- AC_CHECK_LIB(bind, res_query)
10-fi
11-AC_CHECK_LIB(nsl, gethostname)
12-AC_CHECK_LIB(socket, socket)
13+AC_SEARCH_LIBS(res_query, [resolv bind])
14+AC_SEARCH_LIBS(gethostname, nsl)
15+AC_SEARCH_LIBS(socket, socket)
16
17 dnl *
18 dnl * Library Functions.
This page took 0.07897 seconds and 4 git commands to generate.