From: Todd C. Miller Date: Mon, 8 Jul 1996 04:04:40 +0000 (+0000) Subject: BSD/OS >= 2.0 now uses shlicc instead of just gcc X-Git-Tag: SUDO_1_5_0~119 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32581d8a9fb6e74a4436b7d16c73c3e41853f88e;p=sudo BSD/OS >= 2.0 now uses shlicc instead of just gcc --- diff --git a/configure.in b/configure.in index ebad538a5..ecc1aa9ae 100644 --- a/configure.in +++ b/configure.in @@ -453,6 +453,14 @@ case "$OS" in "next") echo "Looks like NeXTstep" ;; "bsd/386" | "bsd/os") echo "Looks like BSDi BSD/OS" + # Use shlicc unless asked to do otherwise + if test "$OSREV" -ge 2 -a "${with_CC+set}" != set -a \ + "$ac_cv_prog_CC" = "gcc"; then + echo 'using shlicc as CC' + ac_cv_prog_CC=shlicc + CC="$ac_cv_prog_CC" + fi + # This should always be true but why not be careful... if test "$with_C2" = "yes"; then SHADOW_TYPE="SPW_BSD" fi