/* 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 #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 #include #include /* * 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