Treat SunOS5.6 as a separate platform due to thread lib differences

This commit is contained in:
Kurt Zeilenga 1998-08-14 23:58:38 +00:00
parent 4b23e633b1
commit 8fa93f02ec

View File

@ -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; \