From: Kurt Zeilenga Date: Fri, 28 Aug 1998 05:44:46 +0000 (+0000) Subject: Missed on of the FreeBSD split pieces X-Git-Tag: PHP3_TOOL_0_0~106 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f7b5714171b9f2656a0bff80a46ffd2df847031d;p=openldap Missed on of the FreeBSD split pieces --- diff --git a/Makefile b/Makefile index a19ecd2cf2..888b30a507 100644 --- a/Makefile +++ b/Makefile @@ -296,7 +296,12 @@ makeconfig: .makefiles buildtools PLATFORM="netbsd" \ ;; \ FreeBSD) \ - PLATFORM="freebsd" \ + MAJRELEASE=`echo $$OSRELEASE | sed 's/\..*//'` ; \ + if [ $$MAJRELEASE -lt 3 ]; then \ + PLATFORM="freebsd2" ; \ + else \ + PLATFORM="freebsd3" ; \ + fi; \ ;; \ NeXTSTEP) \ PLATFORM="nextstep" \