summaryrefslogtreecommitdiff
path: root/pr/src/md/unix/Makefile
diff options
context:
space:
mode:
authorwtc <devnull@localhost>1998-04-22 22:10:37 +0000
committerwtc <devnull@localhost>1998-04-22 22:10:37 +0000
commit238caaecf6b62fdc9ec1cb0f8e7b395a63dbc9ff (patch)
tree85f2f12084f1a08c8267cd2769da47dffaee6532 /pr/src/md/unix/Makefile
parent119b636c5da44fdd49b80c2f8be49e5d5c91fa90 (diff)
downloadnspr-hg-238caaecf6b62fdc9ec1cb0f8e7b395a63dbc9ff.tar.gz
Fixed build problems on BSD/OS. Some makefiles need to change:
the value of OS_ARCH is changed from BSD_386 to BSD_OS. In unix.c, we now conditionalize on the macros O_SYNC and O_FSYNC, as opposed to the platform macros like FREEBSD and BSDI. We acknowledge jason@ackley.net for reporting and providing a fix for this problem.
Diffstat (limited to 'pr/src/md/unix/Makefile')
-rw-r--r--pr/src/md/unix/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/pr/src/md/unix/Makefile b/pr/src/md/unix/Makefile
index 1f09acbb..16a5e52b 100644
--- a/pr/src/md/unix/Makefile
+++ b/pr/src/md/unix/Makefile
@@ -119,7 +119,7 @@ endif
ifeq ($(OS_ARCH),FreeBSD)
CSRCS += $(FREEBSD_CSRCS)
endif
-ifeq ($(OS_ARCH),BSD_386)
+ifeq ($(OS_ARCH),BSD_OS)
CSRCS += $(BSDI_CSRCS)
endif
ifeq ($(OS_ARCH),HP-UX)
@@ -174,7 +174,7 @@ ifeq ($(OS_ARCH), ReliantUNIX)
ASFILES = os_$(OS_ARCH).s
endif
-ifeq ($(OS_ARCH)$(OS_RELEASE),BSD_3862.1)
+ifeq ($(OS_ARCH)$(OS_RELEASE),BSD_OS2.1)
ASFILES = os_BSD_386_2.s
endif