diff options
author | unknown <georg@lmy002.wdf.sap.corp> | 2006-09-21 15:19:20 +0200 |
---|---|---|
committer | unknown <georg@lmy002.wdf.sap.corp> | 2006-09-21 15:19:20 +0200 |
commit | 10bec20ee3d4490d0041d0ed83d5239ffd853f0a (patch) | |
tree | a5aad60a7e8110b50e85111760c3b454af90470a /include/config-win.h | |
parent | ee5ffff9e7c24fc1a9df9466454d98d90fb32a24 (diff) | |
download | mariadb-git-10bec20ee3d4490d0041d0ed83d5239ffd853f0a.tar.gz |
Windows 64bit fixes
Fixed udf_example, so tests now can also run udf on win.
sql/udf_example.def:
BitKeeper file /home/georg/work/mysql/prod/mysql-5.1-win/sql/udf_example.def
include/config-win.h:
removed USE_32_BIT_TIME
include/my_time.h:
Fixed size of my_time for Win64 (should be 64bit)
mysql-test/mysql-test-run.pl:
Added windows paths for udf_example
sql/CMakeLists.txt:
Added udf_example.dll
sql/udf_example.c:
Windows doesn't know about socket.h and friends. Use winsock.h instead
Diffstat (limited to 'include/config-win.h')
-rw-r--r-- | include/config-win.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/config-win.h b/include/config-win.h index 00d2fa0dea6..5290cf83896 100644 --- a/include/config-win.h +++ b/include/config-win.h @@ -25,7 +25,6 @@ functions */ #if defined(_MSC_VER) && _MSC_VER >= 1400 /* Avoid endless warnings about sprintf() etc. being unsafe. */ #define _CRT_SECURE_NO_DEPRECATE 1 -#define _USE_32BIT_TIME_T 1 /* force time_t to be 32 bit */ #endif #include <sys/locking.h> |