r7586: ldb_sqlite3 making progress. add and search have indicated a willingness...
[Samba/ekacnet.git] / source4 / dynconfig.c
blob50dadee91e5a94aa822b9e84acc5e60309f9c2a0
1 /*
2 Unix SMB/CIFS implementation.
3 Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2003.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
22 #include "pstring.h"
24 /**
25 * @file dynconfig.c
27 * @brief Global configurations, initialized to configured defaults.
29 * This file should be the only file that depends on path
30 * configuration (--prefix, etc), so that if ./configure is re-run,
31 * all programs will be appropriately updated. Everything else in
32 * Samba should import extern variables from here, rather than relying
33 * on preprocessor macros.
35 * Eventually some of these may become even more variable, so that
36 * they can for example consistently be set across the whole of Samba
37 * by command-line parameters, config file entries, or environment
38 * variables.
40 * @todo Perhaps eventually these should be merged into the parameter
41 * table? There's kind of a chicken-and-egg situation there...
42 **/
44 const char *dyn_SBINDIR = SBINDIR,
45 *dyn_BINDIR = BINDIR;
47 pstring dyn_CONFIGFILE = CONFIGFILE; /**< Location of smb.conf file. **/
49 /** Log file directory. **/
50 const char *dyn_LOGFILEBASE = LOGFILEBASE;
52 const char *dyn_NCALRPCDIR = NCALRPCDIR;
54 /** Statically configured LanMan hosts. **/
55 pstring dyn_LMHOSTSFILE = LMHOSTSFILE;
57 /**
58 * @brief Samba library directory.
60 * @sa lib_path() to get the path to a file inside the LIBDIR.
61 **/
62 pstring dyn_LIBDIR = LIBDIR;
63 const fstring dyn_SHLIBEXT = SHLIBEXT;
65 /**
66 * @brief Directory holding lock files.
68 * Not writable, but used to set a default in the parameter table.
69 **/
70 const pstring dyn_LOCKDIR = LOCKDIR;
71 const pstring dyn_PIDDIR = PIDDIR;
73 const pstring dyn_SMB_PASSWD_FILE = SMB_PASSWD_FILE;
74 const pstring dyn_PRIVATE_DIR = PRIVATE_DIR;
75 const pstring dyn_SWATDIR = SWATDIR;