add HP to the list of os's that don't like MMAP'd IO

This commit is contained in:
jdunn%netscape.com 1999-09-11 00:49:20 +00:00
Родитель 06a32ebf71
Коммит bcd4460655
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -36,8 +36,8 @@ MKSHLIB :=
include $(topsrcdir)/config/config.mk
# Memory mapped files are not supported under QNX, Neutrino and BeOS
ifeq (,$(filter BeOS QNX,$(OS_ARCH)))
# Memory mapped files are not supported under QNX, Neutrino, HP-UX and BeOS
ifeq (,$(filter BeOS HP-UX QNX,$(OS_ARCH)))
DEFINES += -DUSE_MMAP_REGISTRY_IO
CSRCS += mmapio.c
endif