Skip to content
Snippets Groups Projects
Commit 8fa93f02 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

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

parent 4b23e633
No related branches found
No related tags found
No related merge requests found
......@@ -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; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment