From 80fe1b8037eacefb6f774260174dbdd985c29036 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 18 May 2005 20:10:07 +0000 Subject: Added -lrt for solaris git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1435 e03df62e-2008-0410-955e-edbf42e46eb7 --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 15adf5bdf..fbb07e138 100755 --- a/configure +++ b/configure @@ -385,7 +385,10 @@ sub getosflags { } if ($config{OSNAME} =~ /SunOS/) { # solaris/sunos needs these - $config{LDLIBS} = $config{LDLIBS} . " -lsocket -lnsl"; + # socket = bsd sockets api + # nsl = dns stuff + # rt = POSIX realtime extensions + $config{LDLIBS} = $config{LDLIBS} . " -lsocket -lnsl -lrt"; } } -- cgit v1.2.3