r18447: make sure we bail out if the config.h is not generated
[sfrench/samba-autobuild/.git] / source4 / include / includes.h
1 #ifndef _INCLUDES_H
2 #define _INCLUDES_H
3 /* 
4    Unix SMB/CIFS implementation.
5    Machine customisation and include handling
6    Copyright (C) Andrew Tridgell 1994-1998
7    Copyright (C) 2002 by Martin Pool <mbp@samba.org>
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef NO_CONFIG_H /* for some tests */
25 #include "lib/replace/replace.h"
26
27 /* make sure we have included the correct config.h */
28 #ifndef CONFIG_H_IS_FROM_SAMBA
29 #warn  "make sure you have removed all config.h files from standalone builds!"
30 #error "the included config.h isn't from samba!"
31 #endif
32
33 #endif /* NO_CONFIG_H */
34  
35 #include "local.h"
36
37 #ifdef __GNUC__
38 /** gcc attribute used on function parameters so that it does not emit
39  * warnings about them being unused. **/
40 #  define UNUSED(param) param __attribute__ ((unused))
41 #else
42 #  define UNUSED(param) param
43 /** Feel free to add definitions for other compilers here. */
44 #endif
45
46 #ifndef _PUBLIC_
47 #ifdef HAVE_VISIBILITY_ATTR
48 #  define _PUBLIC_ __attribute__((visibility("default")))
49 #else
50 #  define _PUBLIC_
51 #endif
52 #endif
53
54 #ifndef PRINTF_ATTRIBUTE
55 #if __GNUC__ >= 3
56 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
57  * the parameter containing the format, and a2 the index of the first
58  * argument. Note that some gcc 2.x versions don't handle this
59  * properly **/
60 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
61 #else
62 #define PRINTF_ATTRIBUTE(a1, a2)
63 #endif
64 #endif
65
66 #ifndef NORETURN_ATTRIBUTE
67 #if (__GNUC__ >= 3)
68 #define NORETURN_ATTRIBUTE __attribute__ ((noreturn))
69 #else
70 #define NORETURN_ATTRIBUTE
71 #endif
72 #endif
73
74 /* mark smb_panic() as noreturn, so static analysers know that it is
75    used like abort */
76 _PUBLIC_ void smb_panic(const char *why) NORETURN_ATTRIBUTE;
77
78 #include "system/time.h"
79 #include "system/wait.h"
80
81 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
82
83 /* Lists, trees, caching, database... */
84 #include "talloc/talloc.h"
85 #include "core.h"
86 #include "charset/charset.h"
87 #include "util/util.h"
88 #include "param/param.h"
89 #include "librpc/gen_ndr/misc.h"
90
91 struct smbcli_tree;
92 #include "libcli/util/error.h"
93
94 /* String routines */
95 #include "util/safe_string.h"
96
97 #if 0
98 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
99 #define TALLOC_ABORT(reason) smb_panic(reason)
100 #endif
101
102 #endif /* _INCLUDES_H */