mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s3:include: move MAX_DEBUG_LEVEL from local.h to debug.h
metze
This commit is contained in:
parent
32189689df
commit
dbc934ee4b
@ -27,6 +27,15 @@
|
||||
* Debugging code. See also debug.c
|
||||
*/
|
||||
|
||||
/* the maximum debug level to compile into the code. This assumes a good
|
||||
optimising compiler that can remove unused code
|
||||
for embedded or low-memory systems set this to a value like 2 to get
|
||||
only important messages. This gives *much* smaller binaries
|
||||
*/
|
||||
#ifndef MAX_DEBUG_LEVEL
|
||||
#define MAX_DEBUG_LEVEL 1000
|
||||
#endif
|
||||
|
||||
/* mkproto.awk has trouble with ifdef'd function definitions (it ignores
|
||||
* the #ifdef directive and will read both definitions, thus creating two
|
||||
* diffferent prototype declarations), so we must do these by hand.
|
||||
|
@ -10,15 +10,6 @@
|
||||
#define WORKGROUP "WORKGROUP"
|
||||
#endif
|
||||
|
||||
/* the maximum debug level to compile into the code. This assumes a good
|
||||
optimising compiler that can remove unused code
|
||||
for embedded or low-memory systems set this to a value like 2 to get
|
||||
only important messages. This gives *much* smaller binaries
|
||||
*/
|
||||
#ifndef MAX_DEBUG_LEVEL
|
||||
#define MAX_DEBUG_LEVEL 1000
|
||||
#endif
|
||||
|
||||
/* This defines the section name in the configuration file that will contain */
|
||||
/* global parameters - that is, parameters relating to the whole server, not */
|
||||
/* just services. This name is then reserved, and may not be used as a */
|
||||
|
Loading…
Reference in New Issue
Block a user