From 0218669d627e2e2f20d8294cff5bb7803b539a7a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 24 Oct 2008 17:53:38 +0200 Subject: Remove include/local.h and move defines to more appropriate places. --- source4/include/includes.h | 2 -- source4/include/local.h | 51 ---------------------------------------------- 2 files changed, 53 deletions(-) delete mode 100644 source4/include/local.h (limited to 'source4/include') diff --git a/source4/include/includes.h b/source4/include/includes.h index 6065cfc17c..08d6cdb5f6 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -30,8 +30,6 @@ #endif #endif /* NO_CONFIG_H */ -#include "local.h" - #include "system/time.h" #include "system/wait.h" diff --git a/source4/include/local.h b/source4/include/local.h deleted file mode 100644 index 5036f54802..0000000000 --- a/source4/include/local.h +++ /dev/null @@ -1,51 +0,0 @@ -/* Copyright (C) 1995-1998 Samba-Team */ -/* Copyright (C) 1998 John H Terpstra */ - -/* local definitions for file server */ -#ifndef _LOCAL_H -#define _LOCAL_H - -/* The default workgroup - usually overridden in smb.conf */ -#ifndef DEFAULT_WORKGROUP -#define DEFAULT_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 */ -/* a service name. It will default to "global" if not defined here. */ -#define GLOBAL_NAME "global" -#define GLOBAL_NAME2 "globals" - -/* define what facility to use for syslog */ -#ifndef SYSLOG_FACILITY -#define SYSLOG_FACILITY LOG_DAEMON -#endif - -/* separators for lists */ -#define LIST_SEP " \t,\n\r" - -/* the default pager to use for the client "more" command. Users can - override this with the PAGER environment variable */ -#ifndef DEFAULT_PAGER -#define DEFAULT_PAGER "more" -#endif - -/* - * Default passwd chat script. - */ -#define DEFAULT_PASSWD_CHAT "*new*password* %n\\n *new*password* %n\\n *changed*" - -/* Max number of jobs per print queue. */ -#define PRINT_MAX_JOBID 10000 - -#endif -- cgit