coar 99/05/27 08:28:09
Modified: apr configure.in
Log:
Don't proceed with configuration if we don't recognise the
platform.
Revision Changes Path
1.15 +6 -0 apache-apr/apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apache-apr/apr/configure.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- configure.in 1999/05/27 14:56:43 1.14
+++ configure.in 1999/05/27 15:28:08 1.15
@@ -78,6 +78,12 @@
OSDIR="beos"
fi
+dnl Verify that we've determined the platform, or all that follows is
pointless
+if (test "x$PLATFORM" = "x"); then
+ echo "** Don't know how to build for platform \"$SYS_SW\"."
+ exit 1
+fi
+
dnl Checks for header files.
AC_HEADER_STDC