diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-18 20:10:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-18 20:10:07 +0000 |
commit | 80fe1b8037eacefb6f774260174dbdd985c29036 (patch) | |
tree | f6d761ea2808f76102b241b1048759c914d5ddf1 /configure | |
parent | b6b5a114fa6cd6af7db32b330a1f09d019214bfd (diff) |
Added -lrt for solaris
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1435 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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"; } } |