From: Kurt Zeilenga Date: Fri, 14 Aug 1998 23:58:38 +0000 (+0000) Subject: Treat SunOS5.6 as a separate platform due to thread lib differences X-Git-Tag: LDAP_3_3+prerelease~7 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8fa93f02ec65f8ab9da7036606c0344eb7701439;p=openldap Treat SunOS5.6 as a separate platform due to thread lib differences --- diff --git a/Makefile b/Makefile index 05b7363c32..3b313842d3 100644 --- a/Makefile +++ b/Makefile @@ -257,7 +257,12 @@ makeconfig: .makefiles buildtools echo "SunOS release $$OSRELEASE unknown..."; exit 1; \ fi; \ if [ $$OSRELEASE -ge "5" ]; then \ - PLATFORM="sunos5"; \ + MINORVER=`echo $$OSRELEASE|sed 's/^.*\.//'` ; \ + if [ $$MINORVER -ge "6" ]; then \ + PLATFORM="sunos56" ; \ + else \ + PLATFORM="sunos5"; \ + fi; \ else \ PLATFORM="sunos4"; \ fi; \