390.1.2
by Monty Taylor
Fixed copyright headers in drizzled/ |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2008 Sun Microsystems
|
|
5 |
*
|
|
6 |
* This program is free software; you can redistribute it and/or modify
|
|
7 |
* it under the terms of the GNU General Public License as published by
|
|
8 |
* the Free Software Foundation; either version 2 of the License, or
|
|
9 |
* (at your option) any later version.
|
|
10 |
*
|
|
11 |
* This program is distributed in the hope that it will be useful,
|
|
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 |
* GNU General Public License for more details.
|
|
15 |
*
|
|
16 |
* You should have received a copy of the GNU General Public License
|
|
17 |
* along with this program; if not, write to the Free Software
|
|
18 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
19 |
*/
|
|
20 |
||
21 |
/* Version numbers for protocol && drizzled */
|
|
22 |
||
23 |
#ifndef _drizzled_version_h
|
|
24 |
#define _drizzled_version_h
|
|
25 |
||
1
by brian
clean slate |
26 |
#define PROTOCOL_VERSION @PROTOCOL_VERSION@
|
319.1.1
by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_ |
27 |
#define DRIZZLE_SERVER_VERSION "@VERSION@"
|
28 |
#define DRIZZLE_BASE_VERSION "drizzle-@DRIZZLE_BASE_VERSION@"
|
|
29 |
#define DRIZZLE_SERVER_SUFFIX_DEF "@DRIZZLE_SERVER_SUFFIX@"
|
|
1
by brian
clean slate |
30 |
#define FRM_VER @DOT_FRM_VERSION@
|
319.1.1
by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_ |
31 |
#define DRIZZLE_VERSION_ID @DRIZZLE_VERSION_ID@
|
301
by Brian Aker
Clean up port startup |
32 |
#define DRIZZLE_PORT @DRIZZLE_TCP_PORT@
|
33 |
#define DRIZZLE_PORT_DEFAULT @DRIZZLE_TCP_PORT_DEFAULT@
|
|
319.1.1
by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_ |
34 |
#define DRIZZLE_CONFIG_NAME "drizzled"
|
35 |
#define DRIZZLE_COMPILATION_COMMENT "@COMPILATION_COMMENT@"
|
|
1
by brian
clean slate |
36 |
|
37 |
||
38 |
#ifndef LICENSE
|
|
39 |
#define LICENSE GPL
|
|
40 |
#endif /* LICENSE */ |
|
41 |
||
390.1.2
by Monty Taylor
Fixed copyright headers in drizzled/ |
42 |
#endif /* _drizzled_version_h */ |