config-win.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:12k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* Defines for Win32 to make it compatible for MySQL */
  14. #ifdef __WIN2000__
  15. /* We have to do this define before including windows.h to get the AWE API
  16. functions */
  17. #define _WIN32_WINNT     0x0500
  18. #endif
  19. #include <sys/locking.h>
  20. #include <windows.h>
  21. #include <math.h> /* Because of rint() */
  22. #include <fcntl.h>
  23. #include <io.h>
  24. #include <malloc.h>
  25. #define HAVE_SMEM 1
  26. #if defined(_WIN64) || defined(WIN64) 
  27. #define SYSTEM_TYPE "Win64" 
  28. #elif defined(_WIN32) || defined(WIN32) 
  29. #define SYSTEM_TYPE "Win32" 
  30. #else
  31. #define SYSTEM_TYPE "Windows"
  32. #endif
  33. #if defined(_M_IA64) 
  34. #define MACHINE_TYPE "ia64" 
  35. #elif defined(_M_IX86) 
  36. #define MACHINE_TYPE "ia32" 
  37. #elif defined(_M_ALPHA) 
  38. #define MACHINE_TYPE "axp" 
  39. #else
  40. #define MACHINE_TYPE "unknown" /* Define to machine type name */
  41. #endif 
  42.  
  43. #if !(defined(_WIN64) || defined(WIN64)) 
  44. #ifndef _WIN32
  45. #define _WIN32 /* Compatible with old source */
  46. #endif
  47. #ifndef __WIN32__
  48. #define __WIN32__
  49. #endif
  50. #endif /* _WIN64 */
  51. #ifndef __WIN__
  52. #define __WIN__       /* To make it easier in VC++ */
  53. #endif
  54. /* File and lock constants */
  55. #define O_SHARE 0x1000 /* Open file in sharing mode */
  56. #ifdef __BORLANDC__
  57. #define F_RDLCK LK_NBLCK /* read lock */
  58. #define F_WRLCK LK_NBRLCK /* write lock */
  59. #define F_UNLCK LK_UNLCK /* remove lock(s) */
  60. #else
  61. #define F_RDLCK _LK_NBLCK /* read lock */
  62. #define F_WRLCK _LK_NBRLCK /* write lock */
  63. #define F_UNLCK _LK_UNLCK /* remove lock(s) */
  64. #endif
  65. #define F_EXCLUSIVE 1 /* We have only exclusive locking */
  66. #define F_TO_EOF (INT_MAX32/2) /* size for lock of all file */
  67. #define F_OK 0 /* parameter to access() */
  68. #define S_IROTH S_IREAD /* for my_lib */
  69. #ifdef __BORLANDC__
  70. #define FILE_BINARY O_BINARY /* my_fopen in binary mode */
  71. #define O_TEMPORARY 0
  72. #define O_SHORT_LIVED 0
  73. #define SH_DENYNO _SH_DENYNO
  74. #else
  75. #define O_BINARY _O_BINARY /* compability with MSDOS */
  76. #define FILE_BINARY _O_BINARY /* my_fopen in binary mode */
  77. #define O_TEMPORARY _O_TEMPORARY
  78. #define O_SHORT_LIVED _O_SHORT_LIVED
  79. #define SH_DENYNO _SH_DENYNO
  80. #endif
  81. #define NO_OPEN_3 /* For my_create() */
  82. #define SIGQUIT SIGTERM /* No SIGQUIT */
  83. #undef _REENTRANT /* Crashes something for win32 */
  84. #undef SAFE_MUTEX /* Can't be used on windows */
  85. #define LONGLONG_MIN ((__int64) 0x8000000000000000)
  86. #define LONGLONG_MAX ((__int64) 0x7FFFFFFFFFFFFFFF)
  87. #define ULONGLONG_MAX ((unsigned __int64) 0xFFFFFFFFFFFFFFFF)
  88. #define LL(A) ((__int64) A)
  89. #define ULL(A) ((unsigned __int64) A)
  90. /* Type information */
  91. #if defined(__EMX__) || !defined(HAVE_UINT)
  92. #undef HAVE_UINT
  93. #define HAVE_UINT
  94. typedef unsigned short ushort;
  95. typedef unsigned int uint;
  96. #endif /* defined(__EMX__) || !defined(HAVE_UINT) */
  97. typedef unsigned __int64 ulonglong; /* Microsofts 64 bit types */
  98. typedef __int64 longlong;
  99. #ifndef HAVE_SIGSET_T
  100. typedef int sigset_t;
  101. #endif
  102. #define longlong_defined
  103. /*
  104.   off_t should not be __int64 because of conflicts in header files;
  105.   Use my_off_t or os_off_t instead
  106. */
  107. #ifndef HAVE_OFF_T
  108. typedef long off_t;
  109. #endif
  110. typedef __int64 os_off_t;
  111. #ifdef _WIN64
  112. typedef UINT_PTR rf_SetTimer;
  113. #else
  114. #ifndef HAVE_SIZE_T
  115. typedef unsigned int size_t;
  116. #endif
  117. typedef uint rf_SetTimer;
  118. #endif
  119. #define Socket_defined
  120. #define my_socket SOCKET
  121. #define bool BOOL
  122. #define SIGPIPE SIGINT
  123. #define RETQSORTTYPE void
  124. #define QSORT_TYPE_IS_VOID
  125. #define RETSIGTYPE void
  126. #define SOCKET_SIZE_TYPE int
  127. #define my_socket_defined
  128. #define bool_defined
  129. #define byte_defined
  130. #define HUGE_PTR
  131. #define STDCALL __stdcall     /* Used by libmysql.dll */
  132. #define isnan(X) _isnan(X)
  133. #define finite(X) _finite(X)
  134. #ifndef UNDEF_THREAD_HACK
  135. #define THREAD
  136. #endif
  137. #define VOID_SIGHANDLER
  138. #define SIZEOF_CHAR 1
  139. #define SIZEOF_LONG 4
  140. #define SIZEOF_LONG_LONG 8
  141. #define SIZEOF_OFF_T 8
  142. #ifdef _WIN64
  143. #define SIZEOF_CHARP 8
  144. #else
  145. #define SIZEOF_CHARP 4
  146. #endif
  147. #define HAVE_BROKEN_NETINET_INCLUDES
  148. #ifdef __NT__
  149. #define HAVE_NAMED_PIPE /* We can only create pipes on NT */
  150. #endif
  151. /* ERROR is defined in wingdi.h */
  152. #undef ERROR
  153. /* We need to close files to break connections on shutdown */
  154. #ifndef SIGNAL_WITH_VIO_CLOSE
  155. #define SIGNAL_WITH_VIO_CLOSE
  156. #endif
  157. /* Use all character sets in MySQL */
  158. #define USE_MB 1
  159. #define USE_MB_IDENT 1
  160. #define USE_STRCOLL 1
  161. /* All windows servers should support .sym files */
  162. #undef USE_SYMDIR
  163. #define USE_SYMDIR
  164. /* If LOAD DATA LOCAL INFILE should be enabled by default */
  165. #define ENABLED_LOCAL_INFILE 1
  166. /* Convert some simple functions to Posix */
  167. #define my_sigset(A,B) signal((A),(B))
  168. #define finite(A) _finite(A)
  169. #define sleep(A)  Sleep((A)*1000)
  170. #define popen(A) popen(A,B) _popen((A),(B))
  171. #define pclose(A) _pclose(A)
  172. #ifndef __BORLANDC__
  173. #define access(A,B) _access(A,B)
  174. #endif
  175. #if !defined(__cplusplus)
  176. #define inline __inline
  177. #endif /* __cplusplus */
  178. inline double rint(double nr)
  179. {
  180.   double f = floor(nr);
  181.   double c = ceil(nr);
  182.   return (((c-nr) >= (nr-f)) ? f :c);
  183. }
  184. #ifdef _WIN64
  185. #define ulonglong2double(A) ((double) (ulonglong) (A))
  186. #define my_off_t2double(A)  ((double) (my_off_t) (A))
  187. #else
  188. inline double ulonglong2double(ulonglong value)
  189. {
  190.   longlong nr=(longlong) value;
  191.   if (nr >= 0)
  192.     return (double) nr;
  193.   return (18446744073709551616.0 + (double) nr);
  194. }
  195. #define my_off_t2double(A) ulonglong2double(A)
  196. #endif /* _WIN64 */
  197. #if SIZEOF_OFF_T > 4
  198. #define lseek(A,B,C) _lseeki64((A),(longlong) (B),(C))
  199. #define tell(A) _telli64(A)
  200. #endif
  201. #define set_timespec(ABSTIME,SEC) { (ABSTIME).tv_sec=time((time_t*)0) + (time_t) (SEC); (ABSTIME).tv_nsec=0; }
  202. #define STACK_DIRECTION -1
  203. /* Optimized store functions for Intel x86 */
  204. #ifndef _WIN64
  205. #define sint2korr(A) (*((int16 *) (A)))
  206. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  207.   (((uint32) 255L << 24) | 
  208.    (((uint32) (uchar) (A)[2]) << 16) |
  209.    (((uint32) (uchar) (A)[1]) << 8) | 
  210.    ((uint32) (uchar) (A)[0])) : 
  211.   (((uint32) (uchar) (A)[2]) << 16) |
  212.   (((uint32) (uchar) (A)[1]) << 8) | 
  213.   ((uint32) (uchar) (A)[0])))
  214. #define sint4korr(A) (*((long *) (A)))
  215. #define uint2korr(A) (*((uint16 *) (A)))
  216. /*
  217.    ATTENTION !
  218.    
  219.     Please, note, uint3korr reads 4 bytes (not 3) !
  220.     It means, that you have to provide enough allocated space !
  221. */
  222. #define uint3korr(A) (long) (*((unsigned int *) (A)) & 0xFFFFFF)
  223. #define uint4korr(A) (*((unsigned long *) (A)))
  224. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  225.     (((uint32) ((uchar) (A)[1])) << 8) +
  226.     (((uint32) ((uchar) (A)[2])) << 16) +
  227.     (((uint32) ((uchar) (A)[3])) << 24)) +
  228.     (((ulonglong) ((uchar) (A)[4])) << 32))
  229. #define uint8korr(A) (*((ulonglong *) (A)))
  230. #define sint8korr(A) (*((longlong *) (A)))
  231. #define int2store(T,A) *((uint16*) (T))= (uint16) (A)
  232. #define int3store(T,A) { *(T)=  (uchar) ((A));
  233.   *(T+1)=(uchar) (((uint) (A) >> 8));
  234.   *(T+2)=(uchar) (((A) >> 16)); }
  235. #define int4store(T,A) *((long *) (T))= (long) (A)
  236. #define int5store(T,A) { *(T)= (uchar)((A));
  237.   *((T)+1)=(uchar) (((A) >> 8));
  238.   *((T)+2)=(uchar) (((A) >> 16));
  239.   *((T)+3)=(uchar) (((A) >> 24)); 
  240.   *((T)+4)=(uchar) (((A) >> 32)); }
  241. #define int8store(T,A) *((ulonglong *) (T))= (ulonglong) (A)
  242. #define doubleget(V,M) do { *((long *) &V) = *((long*) M); 
  243.     *(((long *) &V)+1) = *(((long*) M)+1); } while(0)
  244. #define doublestore(T,V) do { *((long *) T) = *((long*) &V); 
  245.       *(((long *) T)+1) = *(((long*) &V)+1); } while(0)
  246. #define float4get(V,M) { *((long *) &(V)) = *((long*) (M)); }
  247. #define floatget(V,M) memcpy((byte*) &V,(byte*) (M),sizeof(float))
  248. #define floatstore(T,V) memcpy((byte*)(T), (byte*)(&V), sizeof(float))
  249. #define float8get(V,M) doubleget((V),(M))
  250. #define float4store(V,M) memcpy((byte*) V,(byte*) (&M),sizeof(float))
  251. #define float8store(V,M) doublestore((V),(M))
  252. #endif /* _WIN64 */
  253. #define HAVE_PERROR
  254. #define HAVE_VFPRINT
  255. #define HAVE_RENAME /* Have rename() as function */
  256. #define HAVE_BINARY_STREAMS /* Have "b" flag in streams */
  257. #define HAVE_LONG_JMP /* Have long jump function */
  258. #define HAVE_LOCKING /* have locking() call */
  259. #define HAVE_ERRNO_AS_DEFINE /* errno is a define */
  260. #define HAVE_STDLIB /* everything is include in this file */
  261. #define HAVE_MEMCPY
  262. #define HAVE_MEMMOVE
  263. #define HAVE_GETCWD
  264. #define HAVE_TELL
  265. #define HAVE_TZNAME
  266. #define HAVE_PUTENV
  267. #define HAVE_SELECT
  268. #define HAVE_SETLOCALE
  269. #define HAVE_SOCKET /* Giangi */
  270. #define HAVE_FLOAT_H
  271. #define HAVE_LIMITS_H
  272. #define HAVE_STDDEF_H
  273. #define HAVE_RINT /* defined in this file */
  274. #define NO_FCNTL_NONBLOCK /* No FCNTL */
  275. #define HAVE_ALLOCA
  276. #define HAVE_STRPBRK
  277. #define HAVE_STRSTR
  278. #define HAVE_COMPRESS
  279. #define HAVE_CREATESEMAPHORE
  280. #define HAVE_ISNAN
  281. #define HAVE_FINITE
  282. #define HAVE_QUERY_CACHE
  283. #define SPRINTF_RETURNS_INT
  284. #define HAVE_SETFILEPOINTER
  285. #define HAVE_VIO
  286. #ifdef NOT_USED
  287. #define HAVE_SNPRINTF /* Gave link error */
  288. #define _snprintf snprintf
  289. #endif
  290. #ifdef _MSC_VER
  291. #define HAVE_LDIV /* The optimizer breaks in zortech for ldiv */
  292. #define HAVE_ANSI_INCLUDE
  293. #define HAVE_SYS_UTIME_H
  294. #define HAVE_STRTOUL
  295. #endif
  296. #define my_reinterpret_cast(A) reinterpret_cast <A>
  297. #define my_const_cast(A) const_cast<A>
  298. /* MYSQL OPTIONS */
  299. #ifdef _CUSTOMCONFIG_
  300. #include <custom_conf.h>
  301. #else
  302. #define DEFAULT_MYSQL_HOME "c:\mysql"
  303. #define PACKAGE "mysql"
  304. #define DEFAULT_BASEDIR "C:\"
  305. #define SHAREDIR "share"
  306. #define DEFAULT_CHARSET_HOME "C:/mysql/"
  307. #endif
  308. /* File name handling */
  309. #define FN_LIBCHAR '\'
  310. #define FN_ROOTDIR "\"
  311. #define FN_NETWORK_DRIVES /* Uses \ to indicate network drives */
  312. #define FN_NO_CASE_SENCE /* Files are not case-sensitive */
  313. #define OS_FILE_LIMIT 2048
  314. #define DO_NOT_REMOVE_THREAD_WRAPPERS
  315. #define thread_safe_increment(V,L) InterlockedIncrement((long*) &(V))
  316. /* The following is only used for statistics, so it should be good enough */
  317. #ifdef __NT__  /* This should also work on Win98 but .. */
  318. #define thread_safe_add(V,C,L) InterlockedExchangeAdd((long*) &(V),(C))
  319. #define thread_safe_sub(V,C,L) InterlockedExchangeAdd((long*) &(V),-(long) (C))
  320. #define statistic_add(V,C,L) thread_safe_add((V),(C),(L))
  321. #else
  322. #define thread_safe_add(V,C,L) 
  323. pthread_mutex_lock((L)); (V)+=(C); pthread_mutex_unlock((L));
  324. #define thread_safe_sub(V,C,L) 
  325. pthread_mutex_lock((L)); (V)-=(C); pthread_mutex_unlock((L));
  326. #define statistic_add(V,C,L)  (V)+=(C)
  327. #endif
  328. #define statistic_increment(V,L) thread_safe_increment((V),(L))
  329. #define shared_memory_buffer_length 16000
  330. #define default_shared_memory_base_name "MYSQL"
  331. #define MYSQL_DEFAULT_CHARSET_NAME "latin1"
  332. #define MYSQL_DEFAULT_COLLATION_NAME "latin1_swedish_ci"
  333. #define HAVE_SPATIAL 1
  334. #define HAVE_RTREE_KEYS 1
  335. /* Define charsets you want */
  336. /* #undef HAVE_CHARSET_armscii8 */
  337. /* #undef HAVE_CHARSET_ascii */
  338. #define HAVE_CHARSET_big5 1
  339. #define HAVE_CHARSET_cp1250 1
  340. /* #undef HAVE_CHARSET_cp1251 */
  341. /* #undef HAVE_CHARSET_cp1256 */
  342. /* #undef HAVE_CHARSET_cp1257 */
  343. /* #undef HAVE_CHARSET_cp850 */
  344. /* #undef HAVE_CHARSET_cp852 */
  345. /* #undef HAVE_CHARSET_cp866 */
  346. #define HAVE_CHARSET_cp932 1
  347. /* #undef HAVE_CHARSET_dec8 */
  348. #define HAVE_CHARSET_euckr 1
  349. #define HAVE_CHARSET_gb2312 1
  350. #define HAVE_CHARSET_gbk 1
  351. /* #undef HAVE_CHARSET_greek */
  352. /* #undef HAVE_CHARSET_hebrew */
  353. /* #undef HAVE_CHARSET_hp8 */
  354. /* #undef HAVE_CHARSET_keybcs2 */
  355. /* #undef HAVE_CHARSET_koi8r */
  356. /* #undef HAVE_CHARSET_koi8u */
  357. #define HAVE_CHARSET_latin1 1
  358. #define HAVE_CHARSET_latin2 1
  359. /* #undef HAVE_CHARSET_latin5 */
  360. /* #undef HAVE_CHARSET_latin7 */
  361. /* #undef HAVE_CHARSET_macce */
  362. /* #undef HAVE_CHARSET_macroman */
  363. #define HAVE_CHARSET_sjis 1
  364. /* #undef HAVE_CHARSET_swe7 */
  365. #define HAVE_CHARSET_tis620 1
  366. #define HAVE_CHARSET_ucs2 1
  367. #define HAVE_CHARSET_ujis 1
  368. #define HAVE_CHARSET_utf8 1
  369. #define HAVE_UCA_COLLATIONS 1