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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
9f04e0e6
Commit
9f04e0e6
authored
Sep 30, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portability fix
parent
2350609b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
acinclude.m4
acinclude.m4
+2
-1
client/mysql.cc
client/mysql.cc
+0
-1
readline/rlstdc.h
readline/rlstdc.h
+4
-0
strings/Makefile.am
strings/Makefile.am
+1
-1
No files found.
acinclude.m4
View file @
9f04e0e6
...
...
@@ -767,7 +767,8 @@ dnl get substituted.
AC_DEFUN(MYSQL_CHECK_ORBIT, [
AC_MSG_CHECKING(for ORBit)
if test `which orbit-config`
orbit_config_path=`which orbit-config`
if test -n "$orbit_config_path"
then
orbit_exec_prefix=`orbit-config --exec-prefix`
orbit_includes=`orbit-config --cflags server`
...
...
client/mysql.cc
View file @
9f04e0e6
...
...
@@ -75,7 +75,6 @@ extern "C" {
#endif
#undef bcmp // Fix problem with new readline
#undef bzero
#if defined( __WIN__) || defined(OS2)
#include <conio.h>
#else
...
...
readline/rlstdc.h
View file @
9f04e0e6
...
...
@@ -76,4 +76,8 @@
#endif
/* !__STDC__ */
#if !defined(__attribute__) && (defined(__cplusplus) || !defined(__GNUC__) || __GNUC__ == 2 && __GNUC_MINOR__ < 8)
#define __attribute__(A)
#endif
#endif
/* !_RL_STDC_H_ */
strings/Makefile.am
View file @
9f04e0e6
...
...
@@ -43,7 +43,7 @@ noinst_PROGRAMS = conf_to_src
# Default charset definitions
EXTRA_DIST
=
ctype-big5.c ctype-czech.c ctype-euc_kr.c
\
ctype-gb2312.c ctype-gbk.c ctype-sjis.c
\
ctype-tis620.c ctype-ujis.c
\
ctype-tis620.c ctype-ujis.c
ctype-latin1_de.c
\
ctype_autoconf.c
\
strto.c strings-x86.s longlong2str-x86.s
\
strxmov.c bmove_upp.c strappend.c strcont.c strend.c
\
...
...
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