mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
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.
This commit is contained in:
parent
54b719a2c6
commit
5f26e7384f
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
ma_rnext.c ma_rnext_same.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_statrec.c ma_packrec.c ma_dynrec.c
|
||||
ma_blockrec.c ma_bitmap.c
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
10 ended transactions since last time it was called.
|
||||
*/
|
||||
|
||||
#include <maria_def.h>
|
||||
#include "maria_def.h"
|
||||
#include "trnman.h"
|
||||
#include <ma_blockrec.h>
|
||||
#include "ma_blockrec.h"
|
||||
|
||||
/**
|
||||
@brief Setup initial start-of-transaction state for a table
|
||||
|
|
Loading…
Add table
Reference in a new issue