]> diplodocus.org Git - nmh/blob - m4/netlibs.m4
getpass.c: Move interface to own file.
[nmh] / m4 / netlibs.m4
1 dnl Updated for more modern systems. Check to see if we need to link against
2 dnl optional libraries for networking functions.
3 dnl
4
5 AC_DEFUN([NMH_CHECK_NETLIBS],
6 [AC_SEARCH_LIBS([gethostbyname], [nsl], ,
7 [AC_MSG_ERROR([gethostbyname not found])])
8 AC_SEARCH_LIBS([connect], [socket], , [AC_MSG_ERROR([connect not found])])
9 ])dnl