summaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorMartin Kraemer <martin@apache.org>2000-04-14 16:32:20 +0200
committerMartin Kraemer <martin@apache.org>2000-04-14 16:32:20 +0200
commit20325a811b58ae116684b85e4600c9c0418a073a (patch)
treefc63ed7806d797bf9a9129c4411296d4144fb0ae /os
parentmore namespace cleanup (diff)
downloadapache2-20325a811b58ae116684b85e4600c9c0418a073a.tar.xz
apache2-20325a811b58ae116684b85e4600c9c0418a073a.zip
Fix minor configuration & platform dependencies
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84962 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/Makefile.in2
-rw-r--r--os/config.m415
2 files changed, 12 insertions, 5 deletions
diff --git a/os/Makefile.in b/os/Makefile.in
index 96234c1488..99649201a6 100644
--- a/os/Makefile.in
+++ b/os/Makefile.in
@@ -4,6 +4,6 @@ top_srcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
-SUBDIRS = $(OS)
+SUBDIRS = $(top_srcdir)/$(OS_DIR)
include $(top_srcdir)/build/rules.mk
diff --git a/os/config.m4 b/os/config.m4
index 8422e10082..d6e3949163 100644
--- a/os/config.m4
+++ b/os/config.m4
@@ -6,16 +6,23 @@ LIBPRE=lib
case "$PLATFORM" in
*beos*)
- OS="beos";;
+ OS="beos"
+ OS_DIR=os/$OS
+ ;;
*pc-os2_emx*)
- OS="os2"
LIBPRE=""
+ OS="os2"
+ OS_DIR=os/$OS
+ ;;
+bs2000*)
+ OS="unix"
+ OS_DIR=os/bs2000 # only the OS_DIR is platform specific.
;;
*)
- OS="unix";;
+ OS="unix"
+ OS_DIR=os/$OS;;
esac
-OS_DIR=os/$OS
AC_MSG_RESULT($OS)
APACHE_FAST_OUTPUT($OS_DIR/Makefile)