[BACK]Return to configure.in CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

Diff for /src/usr.bin/sudo/Attic/configure.in between version 1.16 and 1.17

version 1.16, 2003/04/03 19:15:34 version 1.17, 2003/04/07 03:31:10
Line 1 
Line 1 
 dnl  dnl
 dnl Process this file with GNU autoconf to produce a configure script.  dnl Process this file with GNU autoconf to produce a configure script.
 dnl $Sudo: configure.in,v 1.381 2003/04/02 18:45:35 millert Exp $  dnl $Sudo: configure.in,v 1.382 2003/04/04 17:45:24 millert Exp $
 dnl  dnl
 dnl Copyright (c) 1994-1996,1998-2003 Todd C. Miller <Todd.Miller@courtesan.com>  dnl Copyright (c) 1994-1996,1998-2003 Todd C. Miller <Todd.Miller@courtesan.com>
 dnl  dnl
 AC_INIT(sudo, 1.6.7p2)  AC_INIT(sudo, 1.6.7p3)
 AC_CONFIG_HEADER(config.h pathnames.h)  AC_CONFIG_HEADER(config.h pathnames.h)
 dnl  dnl
 dnl This won't work before AC_INIT()  dnl This won't work before AC_INIT()
 dnl  dnl
 AC_MSG_NOTICE([Configuring Sudo version 1.6.7p2])  AC_MSG_NOTICE([Configuring Sudo version 1.6.7p3])
 dnl  dnl
 dnl Variables that get substituted in the Makefile and man pages  dnl Variables that get substituted in the Makefile and man pages
 dnl  dnl
Line 1779 
Line 1779 
         AUTH_OBJS="${AUTH_OBJS} kerb5.o"          AUTH_OBJS="${AUTH_OBJS} kerb5.o"
         CPPFLAGS="$CPPFLAGS `krb5-config --cflags`"          CPPFLAGS="$CPPFLAGS `krb5-config --cflags`"
         SUDO_LIBS="$SUDO_LIBS `krb5-config --libs`"          SUDO_LIBS="$SUDO_LIBS `krb5-config --libs`"
           dnl
           dnl Try to determine whether we have Heimdal or MIT Kerberos
           dnl
           AC_MSG_CHECKING(whether we are using Heimdal)
           AC_TRY_COMPILE([#include <krb5.h>], [const char *tmp = heimdal_version;],
               [
                   AC_MSG_RESULT(yes)
                   AC_DEFINE(HAVE_HEIMDAL, 1, [Define if your Kerberos is Heimdal.])
               ]
           )
     fi      fi
 fi  fi
 if test -n "$with_kerb5" -a -z "$KRB5CONFIG"; then  if test -n "$with_kerb5" -a -z "$KRB5CONFIG"; then
Line 1810 
Line 1820 
     AC_TRY_COMPILE([#include <krb5.h>], [const char *tmp = heimdal_version;],      AC_TRY_COMPILE([#include <krb5.h>], [const char *tmp = heimdal_version;],
         [          [
             AC_MSG_RESULT(yes)              AC_MSG_RESULT(yes)
               AC_DEFINE(HAVE_HEIMDAL, 1, [Define if your Kerberos is Heimdal.])
             SUDO_LIBS="${SUDO_LIBS} -lkrb5 -ldes -lcom_err -lasn1"              SUDO_LIBS="${SUDO_LIBS} -lkrb5 -ldes -lcom_err -lasn1"
             AC_CHECK_LIB(roken, main, [SUDO_LIBS="${SUDO_LIBS} -lroken"])              AC_CHECK_LIB(roken, main, [SUDO_LIBS="${SUDO_LIBS} -lroken"])
         ], [          ], [

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17