From: Ruben Kerkhof Date: Thu, 7 May 2015 20:17:29 +0000 (+0200) Subject: Don't link everything with librt on Solaris 10 X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~28^2~54^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c5249bd1010cae71e2c051bc560b1fb3bcfe1a7;p=thirdparty%2Fpdns.git Don't link everything with librt on Solaris 10 Now that we detect that we need to link in librt for clock_gettime, this is not needed anymore. --- diff --git a/configure.ac b/configure.ac index b2cea28e34..807b64e4a3 100644 --- a/configure.ac +++ b/configure.ac @@ -144,7 +144,7 @@ THREADFLAGS="" case "$host_os" in solaris2.10) - LIBS="-lposix4 -lpthread $RT_LIBS $LIBS" + LIBS="-lposix4 -lpthread $LIBS" CXXFLAGS="-D_REENTRANT $CXXFLAGS" have_solaris="yes" ;;