summaryrefslogtreecommitdiffstats
path: root/src/lib/configure.in
blob: 142b8da48d04ec7ad41ed597e40806e9bba4abaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
AC_INIT(configure.in)
CONFIG_RULES
if test $krb5_cv_build_krb4_libs = yes ; then
	AC_MSG_RESULT(building Kerberos 4 libraries)
	AC_ARG_WITH([kdb4],
	[  --with-kdb4		use Kerberos version 4 database library.
	  --without-kdb4	Avoid using Kerberos version 4 database library.],
	,
	withval=no)dnl
	if test "$withval" = no; then
		kdb4=
	else
		kdb4=kdb4
	fi
	krb4=krb4
else
	AC_MSG_RESULT(skipping Kerberos 4 libraries)
	kdb4=
	krb4=
fi
CONFIG_DIRS(crypto des425 $kdb4 $krb4 krb5 kdb gssapi kadm)
AC_PROG_ARCHIVE
AC_PROG_RANLIB
_MAKE_SUBDIRS("making",all-unix-subdirs,all)
MAKE_SUBDIRS("cleaning",clean)
MAKE_SUBDIRS("installing",install)
MAKE_SUBDIRS("checking",check)
AppendRule([all-unix:: all-unix-subdirs])
V5_AC_OUTPUT_MAKEFILE