From: Mark Eichin Date: Fri, 28 Apr 1995 15:16:56 +0000 (+0000) Subject: * configure.in: correct use of --with-krb4 to match top level X-Git-Tag: krb5-1.0-beta5~150 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a8c1481384d626a49fba78c3bfd0284ced21562a;p=krb5.git * configure.in: correct use of --with-krb4 to match top level git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5602 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/admin/ChangeLog b/src/admin/ChangeLog index 92e24d2b5..065499a83 100644 --- a/src/admin/ChangeLog +++ b/src/admin/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 28 11:15:56 1995 Mark Eichin + + * configure.in: correct use of --with-krb4 to match top level. + Sat Jul 16 09:18:49 1994 Tom Yu (tlyu at dragons-lair) * configure.in (in all relevant subdirs): another try at making diff --git a/src/admin/configure.in b/src/admin/configure.in index 28f5995c7..30e791096 100644 --- a/src/admin/configure.in +++ b/src/admin/configure.in @@ -1,7 +1,14 @@ AC_INIT(configure.in) WITH_CCOPTS AC_SET_BUILDTOP -AC_ARG_WITH([krb4],[include Kerberos V4 support],convert=convert,convert=) +AC_ARG_WITH([krb4],[include Kerberos V4 support],,withval=yes)dnl +if test $withval = no; then + AC_MSG_RESULT(disabling kdb5_convert) + convert= +else + AC_MSG_RESULT(kdb5_convert included) + convert=convert +fi CONFIG_DIRS(create destroy edit stash aname $convert) MAKE_SUBDIRS("making",all) MAKE_SUBDIRS("cleaning",clean) diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog index 1905f2afc..1536fa32f 100644 --- a/src/include/krb5/ChangeLog +++ b/src/include/krb5/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 28 11:11:54 1995 Mark Eichin + + * configure.in: correct use of --with-krb4 to match top level. + Thu Apr 27 17:39:04 1995 Keith Vetter (keithv@fusion.com) * k5-config.h: Added MAXPATHLEN constant. diff --git a/src/include/krb5/configure.in b/src/include/krb5/configure.in index 1152628b0..6276d1ba3 100644 --- a/src/include/krb5/configure.in +++ b/src/include/krb5/configure.in @@ -133,8 +133,13 @@ AC_ARG_ENABLE([athena], [ --enable-athena build with MIT Project Athena configuration], AC_DEFINE(KRB5_ATHENA_COMPAT),) -AC_ARG_WITH([krb4], -[ --with-krb4=KRB4DIR build with Kerberos V4 backwards compatibility], -AC_DEFINE(KRB5_KRB4_COMPAT),,) - +AC_ARG_WITH([krb4],, +dnl leave out help string, see top level for that +,withval=yes)dnl +if test $withval = no; then + AC_MSG_RESULT(No Kerberos 4 compatibility) +else + AC_MSG_RESULT(Kerberos 4 compatibility enabled) + AC_DEFINE(KRB5_KRB4_COMPAT) +fi V5_AC_OUTPUT_MAKEFILE