Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
e89c10e9
Commit
e89c10e9
authored
Sep 28, 2006
by
iggy@rolltop.ignatz42.dyndns.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#22224: Windows build depends on ib_config.h
This change has already been made to 5.1.
parent
b7e15782
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
CMakeLists.txt
CMakeLists.txt
+4
-2
innobase/include/univ.i
innobase/include/univ.i
+2
-0
No files found.
CMakeLists.txt
View file @
e89c10e9
...
...
@@ -29,8 +29,6 @@ IF (WITH_MYISAMMRG_STORAGE_ENGINE)
ENDIF
(
WITH_MYISAMMRG_STORAGE_ENGINE
)
IF
(
WITH_INNOBASE_STORAGE_ENGINE
)
CONFIGURE_FILE
(
${
CMAKE_SOURCE_DIR
}
/innobase/ib_config.h.in
${
CMAKE_SOURCE_DIR
}
/innobase/ib_config.h @ONLY
)
ADD_DEFINITIONS
(
-D HAVE_INNOBASE_DB
)
ADD_DEFINITIONS
(
-D WITH_INNOBASE_STORAGE_ENGINE
)
SET
(
mysql_plugin_defs
"
${
mysql_plugin_defs
}
,builtin_innobase_plugin"
)
...
...
@@ -123,8 +121,12 @@ ADD_SUBDIRECTORY(heap)
ADD_SUBDIRECTORY
(
myisam
)
ADD_SUBDIRECTORY
(
myisammrg
)
ADD_SUBDIRECTORY
(
client
)
IF
(
WITH_BERKELEY_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
bdb
)
ENDIF
(
WITH_BERKELEY_STORAGE_ENGINE
)
IF
(
WITH_INNOBASE_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
innobase
)
ENDIF
(
WITH_INNOBASE_STORAGE_ENGINE
)
ADD_SUBDIRECTORY
(
sql
)
ADD_SUBDIRECTORY
(
sql/examples
)
ADD_SUBDIRECTORY
(
server-tools/instance-manager
)
...
...
innobase/include/univ.i
View file @
e89c10e9
...
...
@@ -39,8 +39,10 @@ if we are compiling on Windows. */
#
undef
PACKAGE
#
undef
VERSION
#
if
!
defined
(
__WIN__
)
&
&
!defined(WIN64)
&
&
!defined(_WIN64)
/* Include the header file generated by GNU autoconf */
#
include
"../ib_config.h"
#
endif
#
ifdef
HAVE_SCHED_H
#
include
<
sched
.
h
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment