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
8f51a9f1
Commit
8f51a9f1
authored
Dec 22, 2000
by
tim@cane.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Style fix - keep os-specific stuff together.
parent
30e8de65
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
configure.in
configure.in
+1
-4
include/global.h
include/global.h
+4
-0
No files found.
configure.in
View file @
8f51a9f1
...
...
@@ -711,6 +711,7 @@ case $SYSTEM_TYPE in
*
bsdi
*
)
echo
"Adding fix for BSDI"
CFLAGS
=
"
$CFLAGS
-D__BSD__"
AC_DEFINE_UNQUOTED
(
SOCKOPT_OPTLEN_TYPE, size_t
)
;;
*
sgi-irix6
*
)
if
test
"
$with_named_thread
"
=
"no"
...
...
@@ -1177,10 +1178,6 @@ AC_C_BIGENDIAN
#---START: Used in for client configure
# Check base type of last arg to accept
MYSQL_TYPE_ACCEPT
case
"
$SYSTEM_TYPE
"
in
*
bsdi
*
)
AC_DEFINE_UNQUOTED
(
SOCKOPT_OPTLEN_TYPE, size_t
)
;;
*
)
AC_DEFINE_UNQUOTED
(
SOCKOPT_OPTLEN_TYPE, size_socket
)
;;
esac
#---END:
# Find where the stack goes
...
...
include/global.h
View file @
8f51a9f1
...
...
@@ -351,6 +351,10 @@ typedef int (*qsort_cmp)(const void *,const void *);
typedef
SOCKET_SIZE_TYPE
size_socket
;
#endif
#ifndef SOCKOPT_OPTLEN_TYPE
#define SOCKOPT_OPTLEN_TYPE size_socket
#endif
/* file create flags */
#ifndef O_SHARE
...
...
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