OSF1V4.0.mk 566 B

12345678910111213141516171819202122232425
  1. #
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. # On OSF1 V4.0, pthreads is the default implementation strategy.
  6. # Classic nspr is also available.
  7. ifneq ($(OS_RELEASE),V3.2)
  8. USE_PTHREADS = 1
  9. ifeq ($(CLASSIC_NSPR), 1)
  10. USE_PTHREADS =
  11. IMPL_STRATEGY := _CLASSIC
  12. endif
  13. endif
  14. #
  15. # Config stuff for DEC OSF/1 V4.0
  16. #
  17. include $(CORE_DEPTH)/coreconf/OSF1.mk
  18. ifeq ($(OS_RELEASE),V4.0)
  19. OS_CFLAGS += -DOSF1V4
  20. endif