summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
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";
}
}