Do not build in v4server if krb4 support is not included
authorEzra Peisach <epeisach@mit.edu>
Thu, 19 Sep 1996 12:07:35 +0000 (12:07 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 19 Sep 1996 12:07:35 +0000 (12:07 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9095 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/ChangeLog
src/kadmin/configure.in

index cc6b22669197cf27799334d413bde693ed277f3e..9d45b1eae1023c57b61e020fa72701a9c45dde45 100644 (file)
@@ -1,3 +1,8 @@
+Thu Sep 19 08:06:20 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * configure.in: Do not build in v4server if compiling without
+               krb4. 
+
 Wed Sep 11 16:27:04 1996  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * configure.in: no longer build import and export since they
index 082a6dfdbd592b7f95e89acd74e92c4eb5ba9bbe..f596cb477c7cd7611b72cd799add1075e4848dbf 100644 (file)
@@ -1,6 +1,10 @@
 AC_INIT(configure.in)
 CONFIG_RULES
-dnl CONFIG_DIRS(kpasswd v5server v5client)
-CONFIG_DIRS(cli dbutil passwd ktutil server v4server v5passwdd)
+if test -z "$KRB4_LIB"; then
+v4server=""
+else
+v4server=v4server
+fi
+CONFIG_DIRS(cli dbutil passwd ktutil server $v4server v5passwdd)
 DO_SUBDIRS
 V5_AC_OUTPUT_MAKEFILE