Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/crypto/external/bsd/heimdal/dist/lib/hdb Conditionalise the ...
details: https://anonhg.NetBSD.org/src/rev/dcfa5f89d035
branches: trunk
changeset: 764183:dcfa5f89d035
user: elric <elric%NetBSD.org@localhost>
date: Wed Apr 13 18:23:42 2011 +0000
description:
Conditionalise the sqlite3 HDB backend.
diffstat:
crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (19 lines):
diff -r a2f047ad77bd -r dcfa5f89d035 crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c
--- a/crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c Wed Apr 13 18:14:29 2011 +0000
+++ b/crypto/external/bsd/heimdal/dist/lib/hdb/hdb.c Wed Apr 13 18:23:42 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: hdb.c,v 1.1.1.1 2011/04/13 18:14:42 elric Exp $ */
+/* $NetBSD: hdb.c,v 1.2 2011/04/13 18:23:42 elric Exp $ */
/*
* Copyright (c) 1997 - 2008 Kungliga Tekniska Högskolan
@@ -80,7 +80,9 @@
{ HDB_INTERFACE_VERSION, "ldap:", hdb_ldap_create},
{ HDB_INTERFACE_VERSION, "ldapi:", hdb_ldapi_create},
#endif
+#ifdef SQLITE3
{ HDB_INTERFACE_VERSION, "sqlite:", hdb_sqlite_create},
+#endif
{0, NULL, NULL}
};
Home |
Main Index |
Thread Index |
Old Index