]> arthur.barton.de Git - ngircd-alex.git/commit
configure.in: only add -lnsl when needed
authorFlorian Westphal <fw@strlen.de>
Wed, 17 Feb 2010 21:23:14 +0000 (22:23 +0100)
committerFlorian Westphal <fw@strlen.de>
Wed, 17 Feb 2010 21:25:30 +0000 (22:25 +0100)
commit20276f7cc967ec1a472715574adc6792b1598314
tree0b0c1492575c552f85a41fdcd69da545329a7039
parent6e8cf51bb216f956e7a6fdb5c61b0f2799bf8d2d
configure.in: only add -lnsl when needed

dpkg-shlibdeps: warning: dependency on libnsl.so.1 [..]
(they use none of its symbols).

As shown via commit 2b14234abc252383679bae2d23861b773dc9713e
(dpkg-shlibdeps: warning: dependency on libnsl.so.1) and the
following revert of that commit, we cannot simply drop
the AC_CHECK_LIB(nsl). Although -lnsl is indeed unneeded
when glibc is used, some platforms (e.g. Solaris) need it.

Use AC_SEARCH_LIBS instead to only link when the library exports
a particular symbol.
configure.in