diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2002-08-29 12:06:51 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2002-08-29 12:06:51 +0000 |
| commit | 14bb562f33dd5205ebbaee6a685ff66f7bc9638a (patch) | |
| tree | c767f5c9386a870ca621a7b7911bcb4beaa146d9 /src | |
| parent | 07fbd9acd7276e0edeb6c40285082c3232a9d7cb (diff) | |
| download | krb5-14bb562f33dd5205ebbaee6a685ff66f7bc9638a.tar.gz krb5-14bb562f33dd5205ebbaee6a685ff66f7bc9638a.tar.xz krb5-14bb562f33dd5205ebbaee6a685ff66f7bc9638a.zip | |
* configure.in: Configure util/et and util/ss only if they're going to be used
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14796 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/configure.in | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2ab0c63e0..7cd65d4d1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -2,6 +2,8 @@ * aclocal.m4 (CHOOSE_ET, CHOOSE_SS): New macros. (CONFIG_RULES): Invoke them. + * configure.in: Configure util/et and util/ss only if they're + going to be used. 2002-08-26 Ezra Peisach <epeisach@bu.edu> diff --git a/src/configure.in b/src/configure.in index 69a389269..65c0ea369 100644 --- a/src/configure.in +++ b/src/configure.in @@ -80,7 +80,13 @@ HOST_TYPE=$krb5_cv_host AC_SUBST(HOST_TYPE) dnl dnl -AC_CONFIG_SUBDIRS(util/et util/ss util/profile util/pty util/db2 include lib/crypto lib/krb5 lib/des425 lib/krb4 lib/kdb lib/gssapi lib/rpc lib/kadm5 krb524 kdc kadmin slave clients appl tests) +if test "$COM_ERR_VERSION" = k5 ; then + AC_CONFIG_SUBDIRS(util/et) +fi +if test "$SS_VERSION" = k5 ; then + AC_CONFIG_SUBDIRS(util/ss) +fi +AC_CONFIG_SUBDIRS(util/profile util/pty util/db2 include lib/crypto lib/krb5 lib/des425 lib/krb4 lib/kdb lib/gssapi lib/rpc lib/kadm5 krb524 kdc kadmin slave clients appl tests) AC_OUTPUT_COMMANDS([chmod +x krb5-config]) AC_OUTPUT_COMMANDS([echo timestamp > krb5-stamp-h]) K5_GEN_FILE(krb5-config) |
