Commit 5f26e738 authored by Guilhem Bichot's avatar Guilhem Bichot

Fix for build failures under Windows

storage/maria/CMakeLists.txt:
  add missing file
storage/maria/ma_state.c:
  two include files are in storage/maria, not in include/, so they need "" not <>, or compiler misses them.
parent 54b719a2
...@@ -24,7 +24,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/zlib ...@@ -24,7 +24,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/zlib
SET(MARIA_SOURCES ma_init.c ma_open.c ma_extra.c ma_info.c ma_rkey.c SET(MARIA_SOURCES ma_init.c ma_open.c ma_extra.c ma_info.c ma_rkey.c
ma_rnext.c ma_rnext_same.c ma_rnext.c ma_rnext_same.c
ma_search.c ma_page.c ma_key_recover.c ma_key.c ma_search.c ma_page.c ma_key_recover.c ma_key.c
ma_locking.c ma_locking.c ma_state.c
ma_rrnd.c ma_scan.c ma_cache.c ma_rrnd.c ma_scan.c ma_cache.c
ma_statrec.c ma_packrec.c ma_dynrec.c ma_statrec.c ma_packrec.c ma_dynrec.c
ma_blockrec.c ma_bitmap.c ma_blockrec.c ma_bitmap.c
......
...@@ -28,9 +28,9 @@ ...@@ -28,9 +28,9 @@
10 ended transactions since last time it was called. 10 ended transactions since last time it was called.
*/ */
#include <maria_def.h> #include "maria_def.h"
#include "trnman.h" #include "trnman.h"
#include <ma_blockrec.h> #include "ma_blockrec.h"
/** /**
@brief Setup initial start-of-transaction state for a table @brief Setup initial start-of-transaction state for a table
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment