summaryrefslogtreecommitdiff
path: root/libmysqld/lib_load.cc
diff options
context:
space:
mode:
authorunknown <miguel@light.local>2002-01-09 05:38:48 -0200
committerunknown <miguel@light.local>2002-01-09 05:38:48 -0200
commit87ec5559477643e2574872fca93a5b4898868de0 (patch)
tree0f9e1ac4b6b7ebc9cba483f4ac9ddf307c12d5c7 /libmysqld/lib_load.cc
parent23a6f068854fefd2435d564f267776cef9ff0da1 (diff)
downloadmariadb-git-87ec5559477643e2574872fca93a5b4898868de0.tar.gz
Win32 Embedded Server Changes
libmysql/libmysql.def: For to have the same order of the 3.23.XX stuff libmysqld/lib_load.cc: For to have the file extension for VC++ libmysqld/lib_sql.cc: The VC++ compiler returns duplication define from net_serv.cc. If the same happens with Unix then those lines should be removed. VC++ file extension. sql/mysqld.cc: Changes for Win32 Embedded Server. sql/net_serv.cc: Sanja Fixes. sql/sql_cache.cc: To avoid the crash on Win9x
Diffstat (limited to 'libmysqld/lib_load.cc')
-rw-r--r--libmysqld/lib_load.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libmysqld/lib_load.cc b/libmysqld/lib_load.cc
index 37bd611b483..3db5a2488d1 100644
--- a/libmysqld/lib_load.cc
+++ b/libmysqld/lib_load.cc
@@ -36,4 +36,9 @@ mysql_load(THD * thd, sql_exchange * ex, TABLE_LIST * table_list,
#define mysql_load mysql_load_internal
+
+#if defined (__WIN__)
+#include "../sql/sql_load.cpp"
+#else
#include "../sql/sql_load.cc"
+#endif