mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
Treat SunOS5.6 as a separate platform due to thread lib differences
This commit is contained in:
parent
4b23e633b1
commit
8fa93f02ec
1 changed files with 6 additions and 1 deletions
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 a new issue