]> code.citadel.org Git - citadel.git/commitdiff
* configure.in: don't use gcc on Digital Unix
authorNathan Bryant <loanshark@uncensored.citadel.org>
Wed, 30 Sep 1998 22:18:04 +0000 (22:18 +0000)
committerNathan Bryant <loanshark@uncensored.citadel.org>
Wed, 30 Sep 1998 22:18:04 +0000 (22:18 +0000)
citadel/ChangeLog
citadel/configure.in

index 12dc64f7bc70a3c40e7e6ced6de4413fc7d1bf51..def4696852cc81a1f4f7e6bceaeeab47084d6225 100644 (file)
@@ -6,6 +6,7 @@
        * citadel.c, commands.c, messages.c: use time_t properly
        * citserver.c: include <limits.h>
        * config.guess, config.sub, install-sh: new files
+       * configure.in: don't use gcc on Digital Unix
 
 Tue Sep 29 23:17:34 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * room_ops.c: modified usergoto() to look at the new data structures
index c51635c491c8128859e028d2d6245750adbe6f92..7356a0ee3e8b0d2594932268bdf193fa3ccebfd1 100644 (file)
@@ -16,6 +16,16 @@ AC_ARG_ENABLE(ansi-color, [  --enable-ansi-color     enable ANSI color (default
        AC_DEFINE(ANSI_COLOR)
 fi])
 
+AC_CANONICAL_HOST
+case "$host" in
+       alpha*-dec-osf*)
+               dnl We can't use gcc on Digital UNIX due to header file probs
+               if test -z "$CC"; then
+                       CC=cc
+               fi
+       ;;
+esac
+
 dnl Checks for programs.
 AC_PROG_CC
 if test "$GCC" = yes; then