From 8d8507fbf83b70925ea5d640bd2b8172707ec284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 7 Dec 2007 13:09:25 +0000 Subject: [PATCH] move static path into local headers that are not installed to prepare for configure-time relocations. Prompted by Hai Zaars FHS thread on heimdal-discuss git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22198 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hdb/hdb.h | 4 ---- lib/hdb/hdb_locl.h | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/hdb/hdb.h b/lib/hdb/hdb.h index 574cd9bb2..bc1b74401 100644 --- a/lib/hdb/hdb.h +++ b/lib/hdb/hdb.h @@ -135,10 +135,6 @@ struct hdb_so_method { krb5_error_code (*create)(krb5_context, HDB **, const char *filename); }; -#define HDB_DB_DIR "/var/heimdal" -#define HDB_DEFAULT_DB HDB_DB_DIR "/heimdal" -#define HDB_DB_FORMAT_ENTRY "hdb/db-format" - typedef krb5_error_code (*hdb_foreach_func_t)(krb5_context, HDB*, hdb_entry_ex*, void*); extern krb5_kt_ops hdb_kt_ops; diff --git a/lib/hdb/hdb_locl.h b/lib/hdb/hdb_locl.h index 1bd6befe7..13dc4ea34 100644 --- a/lib/hdb/hdb_locl.h +++ b/lib/hdb/hdb_locl.h @@ -64,4 +64,8 @@ #include #include +#define HDB_DB_DIR "/var/heimdal" +#define HDB_DEFAULT_DB HDB_DB_DIR "/heimdal" +#define HDB_DB_FORMAT_ENTRY "hdb/db-format" + #endif /* __HDB_LOCL_H__ */