00001 00002 00003 // remain unaware of platform differences. 00010 00011 /*********************************************************************** 00012 Copyright (c) 1998 by Kevin Atkinson, (c) 1999, 2000 and 2001 by 00013 MySQL AB, and (c) 2004-2006 by Educational Technology Resources, Inc. 00014 Others may also hold copyrights on code in this file. See the CREDITS 00015 file in the top directory of the distribution for details. 00016 00017 This file is part of MySQL++. 00018 00019 MySQL++ is free software; you can redistribute it and/or modify it 00020 under the terms of the GNU Lesser General Public License as published 00021 by the Free Software Foundation; either version 2.1 of the License, or 00022 (at your option) any later version. 00023 00024 MySQL++ is distributed in the hope that it will be useful, but WITHOUT 00025 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00026 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 00027 License for more details. 00028 00029 You should have received a copy of the GNU Lesser General Public 00030 License along with MySQL++; if not, write to the Free Software 00031 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 00032 USA 00033 ***********************************************************************/ 00034 00035 #if !defined(DOXYGEN_IGNORE) 00036 // Doxygen will not generate documentation for the following stuff. 00037 00038 #include <mysql_version.h> 00039 00040 #if defined(__WIN32__) || defined(_WIN32) 00041 # define MYSQLPP_PLATFORM_WINDOWS 00042 00043 // Windows compiler support. Tested with Microsoft Visual C++, 00044 // Borland C++ Builder, and MinGW GCC. 00045 # include <winsock.h> 00046 00047 // The shutdown_level argument was added in MySQL 4.1.3 and in 5.0.1. 00048 # if ((MYSQL_VERSION_ID >= 40103) && (MYSQL_VERSION_ID <= 49999)) || (MYSQL_VERSION_ID >= 50001) 00049 # define HAVE_MYSQL_SHUTDOWN_LEVEL_ARG 00050 # endif 00051 00052 // Stuff for Visual C++ only 00053 # if defined(_MSC_VER) 00054 // Disable whining about using 'this' as a member initializer on VC++. 00055 # pragma warning(disable: 4355) 00056 // Disable whining about implicit conversions to bool 00057 # pragma warning(disable: 4800) 00058 // Disable nagging about new "secure" functions like strncpy_s() 00059 # pragma warning(disable: 4996) 00060 // Call _snprintf() for VC++ version of snprintf() function 00061 # define snprintf _snprintf 00062 # endif 00063 00064 // Define DLL import/export tags for Windows compilers, where we build 00065 // the library into a DLL, for LGPL license compatibility reasons. 00066 // (This is based on a similar mechanism in wxWindows.) 00067 00068 #ifdef MYSQLPP_MAKING_DLL 00069 // When making the DLL, export tagged symbols, so they appear 00070 // in the import library. 00071 #define MYSQLPP_EXPORT __declspec(dllexport) 00072 #elif !defined(MYSQLPP_NO_DLL) 00073 // We must be _using_ the DLL, so import symbols instead. 00074 #define MYSQLPP_EXPORT __declspec(dllimport) 00075 #else 00076 // Not making a DLL at all, so no-op these declspecs 00077 #define MYSQLPP_EXPORT 00078 #endif 00079 #else 00080 // If not Windows, we assume some sort of Unixy build environment, 00081 // where autotools is used. (This includes Cygwin!) #include the 00082 // config.h file only if this file was included from a non-header 00083 // file, because headers must not be dependent on config.h. 00084 # if defined(MYSQLPP_NOT_HEADER) 00085 # include "config.h" 00086 # endif 00087 00088 // Make DLL stuff a no-op on this platform. 00089 #define MYSQLPP_EXPORT 00090 #endif 00091 00092 #endif // !defined(DOXYGEN_IGNORE)