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
2090d651
Commit
2090d651
authored
May 03, 2001
by
heikki@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
univ.i Do not inline on Unix if non-gcc compiler
parent
dc618189
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
innobase/include/univ.i
innobase/include/univ.i
+5
-2
No files found.
innobase/include/univ.i
View file @
2090d651
...
...
@@ -9,7 +9,6 @@ Created 1/20/1994 Heikki Tuuri
#
ifndef
univ_i
#
define
univ_i
#
if
(
defined
(
_WIN32
)
||
defined
(
_WIN64
))
#
define
__WIN__
#
include
<
windows
.
h
>
...
...
@@ -28,6 +27,11 @@ be defined:
#
else
/* The Unix version */
/* Most C compilers other than gcc do not know 'extern inline' */
#
ifndef
__GNUC__
#
define
UNIV_MUST_NOT_INLINE
#
endif
/* Include two header files from MySQL to make the Unix flavor used
in compiling more Posix-compatible. We assume that 'innobase' is a
subdirectory of 'mysql'. */
...
...
@@ -37,7 +41,6 @@ subdirectory of 'mysql'. */
/* Include <sys/stat.h> to get S_I... macros defined for os0file.c */
#
include
<
sys
/
stat
.
h
>
#
undef
PACKAGE
#
undef
VERSION
...
...
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