From: Todd C. Miller Date: Mon, 5 Jul 1999 20:10:21 +0000 (+0000) Subject: define -D__EXTENSIONS__ for solaris so we get crypt() proto X-Git-Tag: SUDO_1_6_0~266 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=82353107e2477f35e280a0026a718df17563068e;p=sudo define -D__EXTENSIONS__ for solaris so we get crypt() proto --- diff --git a/configure.in b/configure.in index c88dff9fd..c3e9bdf97 100644 --- a/configure.in +++ b/configure.in @@ -989,6 +989,8 @@ case "$host" in fi ;; *-*-solaris2*) + # To get the crypt(3) prototype (so we pass -Wall) + CFLAGS="${CFLAGS} -D__EXTENSIONS__" # AFS support needs -lucb if test "$with_AFS" = "yes"; then AFS_LIBS="-lc -lucb"