1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
*
* PrimeBase Media Stream for MySQL
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Original author: Paul McCullagh (H&G2JCtL)
* Continued development: Barry Leslie
*
* 2007-05-30
*
* CORE SYSTEM:
* Compilation flags. Should be included at the top of all
* source files.
*
*/
#ifndef __CSCONFIG_H__
#define __CSCONFIG_H__
#if defined(MYSQL_SERVER) || defined(DRIZZLED)
// Because mysql_priv.h can redefine system data types it is not safe to include it
// in some souce code files and not others because of what it may do to structures defined
// in other headers. So the only safe thing I can think of is to include it in all source code
// files.
#ifdef DRIZZLED
#include "config.h"
#include <drizzled/common.h>
#else
#include "my_global.h"
#include "mysql_priv.h"
#endif
/* Note: mysql_priv.h messes with new, which caused a crash. */
#ifdef new
#undef new
#endif
#else
#include "config.h"
#endif //defined(MYSQL_SERVER) || defined(DRIZZLED)
#include <sys/types.h>
#include <inttypes.h>
#include <unistd.h>
/*
* This enables everything that GNU can do. The macro is actually
* recommended for new programs.
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#ifndef NODEBUG
#ifdef DEBUG
#ifndef DBUG_OFF
#ifndef DEBUG
#define DEBUG
#endif
#endif
#endif
#endif
/*
* What operating system are we on?
*/
#ifdef __darwin__
#define OS_MACINTOSH
#endif
#if defined(MSDOS) || defined(__WIN__) || defined(_WIN64)
#define OS_WINDOWS
#endif
#ifdef __sun
#define OS_SOLARIS
#endif
#ifdef OS_WINDOWS
#ifdef _DEBUG
#ifndef NODEBUG
#ifndef DBUG_OFF
#ifndef DEBUG
#define DEBUG
#endif
#endif
#endif
#endif
#endif
#endif
|