summaryrefslogtreecommitdiffstats
path: root/source/dynconfig.c
Commit message (Collapse)AuthorAgeFilesLines
* r15848: Introduce commandline options to set the remainder of the parameters inJames Peach2007-10-101-5/+5
| | | | | dynconfig.c. This is mainly useful for test harness scripts, hence the lack of short options.
* Fix copyright statements for various pieces of Anthony Liguori's work.Jim McDonough2003-08-011-1/+1
|
* merge from HEAD - enable dynamic RPC modulesJim McDonough2003-02-141-1/+3
|
* Merge a bunch of trivial changes from HEAD. The difference remainingTim Potter2002-11-291-4/+0
| | | | | | | | | should actual functional differences between HEAD and 3.0. - Mostly reformatting - Removal of unecessary #include "smb.h" - Merge of dyn_DRIVERFILE removal - Silly bug fix for python code
* updated the 3.0 branch from the head branch - ready for alpha18Andrew Tridgell2002-07-151-0/+1
|
* Removed version number from file header.Tim Potter2002-01-301-1/+1
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* Move all other paths into dynconfigMartin Pool2001-11-191-4/+13
|
* dyn_LOCKDIR should be const because it's never modified directly --Martin Pool2001-11-191-1/+1
| | | | | it's just copied in to the parameter table and optionally overridden there.
* oopsum.Martin Pool2001-11-191-1/+1
|
* LIBDIR and LOCKDIR are dynamically configured too.Martin Pool2001-11-191-0/+17
|
* LMHOSTSFILE is now dynamically configured too.Martin Pool2001-11-191-0/+2
|
* Store some path names in global variables initialized to configureMartin Pool2001-11-191-1/+1
| | | | default, rather than in preprocessor macros.
* Source file defining global variables for configuration paths. ThisMartin Pool2001-11-191-0/+45
has two purposes: - If ./configure is re-run to configure Samba for a new set of path or prefix, then when Samba is re-built it really will use the new paths. - This is a step towards making sure all programs can be consistently told to use a different configuration file or prefix directory, which is required for testing. Possibly not true at the moment.