Fix linking on Solaris. Fixes bug #568482.

Check for nsl and socket libraries and add them to
LIBS if they're found. They're needed for socket()
and gethostbyname() on Solaris.
This commit is contained in:
Brian Cameron 2009-01-23 10:00:11 +01:00 committed by Sebastian Dröge
parent c42c6d6da0
commit 16347bfa21

View file

@ -236,6 +236,10 @@ LIBS=$save_libs
dnl Check for a way to display the function name in debug output
AG_GST_CHECK_FUNCTION
dnl *** checks for socket and nsl libraries ***
AC_CHECK_FUNC(socket,,[AC_CHECK_LIB(socket,socket)])
AC_CHECK_FUNC(gethostbyname,,[AC_CHECK_LIB(nsl,gethostbyname)])
dnl *** checks for dependency libraries ***
dnl GLib is required