backed out that compiler detection change for Tru64. it's not incredibly
authorNathan Bryant <loanshark@uncensored.citadel.org>
Tue, 16 Oct 2001 19:18:49 +0000 (19:18 +0000)
committerNathan Bryant <loanshark@uncensored.citadel.org>
Tue, 16 Oct 2001 19:18:49 +0000 (19:18 +0000)
important and results in broken autoconf macro expansions.

citadel/ChangeLog
citadel/configure.ac

index 1c4d47364149886e8eeb0781ebfb7c8762dffd0b..3ee501550866d1ef73b65c2ff0183f627bbf7198 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 580.62  2001/10/16 19:18:49  nbryant
+ backed out that compiler detection change for Tru64. it's not incredibly
+ important and results in broken autoconf macro expansions.
+
  Revision 580.61  2001/10/16 18:36:33  nbryant
  reinstate -export-dynamic for citserver in case libtool decides to build
  static libraries (why?)
@@ -2812,3 +2816,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
+
index 31334de8cda77ba330532c3196325f7310fa62d0..cc8f0e3e95230579cb0aa99bb923944679198075 100644 (file)
@@ -62,6 +62,7 @@ case "$host" in
        dnl Digital Unix has an odd way to build for pthreads, and we can't
        dnl build pthreads programs with gcc due to header problems.
        alpha*-dec-osf*)
+               test -z "$CC" && CC=cc
                PTHREAD_LIBS="-lpthread -lexc"
                check_pthread=no
        ;;
@@ -86,14 +87,7 @@ case "$host" in
 esac
 
 dnl Checks for programs.
-case "$host" in
-       alpha*-dec-osf*)
-               AC_PROG_CC(cc gcc /usr/ucb/cc c89)
-       ;;
-       *)
-               AC_PROG_CC
-       ;;
-esac
+AC_PROG_CC
 
 dnl Set up system-dependent compiler flags.
 if test "$GCC" = yes; then