mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-01 14:15:49 +08:00
Treat SunOS5.6 as a separate platform due to thread lib differences
This commit is contained in:
parent
4b23e633b1
commit
8fa93f02ec
7
Makefile
7
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; \
|
||||
|
Loading…
Reference in New Issue
Block a user