From a92d5ac3d3858bb356e752065594e90c8b2203d9 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 1 Jul 2023 17:30:24 -0700 Subject: Database initialization --- config.h.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'config.h.in') diff --git a/config.h.in b/config.h.in index 275f06d..c2b73af 100644 --- a/config.h.in +++ b/config.h.in @@ -3,6 +3,9 @@ /* "Buffer Size" */ #undef BUF_LEN +/* "Default Database to use" */ +#undef DB + /* Define to 1 if a SysV or X/Open compatible Curses library is present */ #undef HAVE_CURSES @@ -39,6 +42,9 @@ /* Define to 1 if is present */ #undef HAVE_NCURSES_H +/* Have the SQLITE3 library */ +#undef HAVE_SQLITE3 + /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H @@ -92,5 +98,11 @@ backward compatibility; new code need not use it. */ #undef STDC_HEADERS +/* "User Data Directory" */ +#undef USER_DATA_DIR + +/* "User Data Path" */ +#undef USER_DATA_PATH + /* Version number of package */ #undef VERSION -- cgit