]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Revert "dpkg-shlibdeps: warning: dependency on libnsl.so.1 [..]"
authorAlexander Barton <alex@barton.de>
Wed, 9 Jul 2008 16:36:40 +0000 (18:36 +0200)
committerAlexander Barton <alex@barton.de>
Wed, 9 Jul 2008 16:36:40 +0000 (18:36 +0200)
- Solaris needs both -lsocket _and_ -lnsl
- A/UX needs -lUTIL

"... which totally sucks because we'd link libnsl on Linux, too
(where its not needed at all). So, we have to figure out how to tell
autocrap to NOT put -lnsl there unless it exports a symbol we need.
This also means that [...] has to be reverted (or done properly)."
-- Florian Westphal @ #ngircd

This reverts commit 2b14234abc252383679bae2d23861b773dc9713e.

configure.in

index a1d1452ca59d39db319fd79e21e1fda762dbb0ce..f02835fb9bca4d0b7eacaa00106ea90487235458 100644 (file)
@@ -125,7 +125,10 @@ AC_TYPE_SIZE_T
 
 
 # -- Libraries --
+
+AC_CHECK_LIB(UTIL,memmove)
 AC_CHECK_LIB(socket,bind)
+AC_CHECK_LIB(nsl,gethostent)
 
 # -- Functions --