Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 185899 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in (+2 lines)
Lines 104-109 Link Here
104
104
105
KRB_PTHREADS
105
KRB_PTHREADS
106
106
107
PKG_CHECK_MODULES([sqlite], [sqlite3])
108
107
AC_ARG_ENABLE(dce, 
109
AC_ARG_ENABLE(dce, 
108
	AS_HELP_STRING([--enable-dce],[if you want support for DCE/DFS PAG's]))
110
	AS_HELP_STRING([--enable-dce],[if you want support for DCE/DFS PAG's]))
109
if test "$enable_dce" = yes; then
111
if test "$enable_dce" = yes; then
(-)lib/Makefile.am (-1 / +1 lines)
Lines 18-23 Link Here
18
dir_hcrypto = hcrypto
18
dir_hcrypto = hcrypto
19
endif
19
endif
20
20
21
SUBDIRS = roken vers editline $(dir_com_err) sl wind asn1 sqlite \
21
SUBDIRS = roken vers editline $(dir_com_err) sl wind asn1 \
22
	$(dir_hcrypto) hx509 krb5 ntlm kafs gssapi hdb kadm5 \
22
	$(dir_hcrypto) hx509 krb5 ntlm kafs gssapi hdb kadm5 \
23
	auth $(dir_45) $(dir_otp) $(dir_dce)
23
	auth $(dir_45) $(dir_otp) $(dir_dce)
(-)lib/krb5/Makefile.am (-2 / +2 lines)
Lines 2-8 Link Here
2
2
3
include $(top_srcdir)/Makefile.am.common
3
include $(top_srcdir)/Makefile.am.common
4
4
5
AM_CPPFLAGS += $(INCLUDE_krb4) $(INCLUDE_hcrypto) -I../com_err -I$(srcdir)/../com_err -I$(srcdir)/../sqlite
5
AM_CPPFLAGS += $(INCLUDE_krb4) $(INCLUDE_hcrypto) -I../com_err -I$(srcdir)/../com_err $(sqlite_CFLAGS)
6
6
7
bin_PROGRAMS = verify_krb5_conf
7
bin_PROGRAMS = verify_krb5_conf
8
8
Lines 53-59 Link Here
53
53
54
libkrb5_la_LIBADD = \
54
libkrb5_la_LIBADD = \
55
	$(LIB_pkinit) \
55
	$(LIB_pkinit) \
56
	../sqlite/libsqlite.la \
56
	$(sqlite_LIBS) \
57
	$(LIB_com_err) \
57
	$(LIB_com_err) \
58
	$(LIB_hcrypto) \
58
	$(LIB_hcrypto) \
59
	$(top_builddir)/lib/asn1/libasn1.la \
59
	$(top_builddir)/lib/asn1/libasn1.la \
(-)lib/krb5/scache.c (-1 / +1 lines)
Lines 32-38 Link Here
32
 */
32
 */
33
33
34
#include "krb5_locl.h"
34
#include "krb5_locl.h"
35
#include "sqlite3.h"
35
#include <sqlite3.h>
36
36
37
RCSID("$Id$");
37
RCSID("$Id$");
38
38

Return to bug 185899