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
4d710469
Commit
4d710469
authored
Mar 06, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merge
configure.in: Auto merged Docs/manual.texi: Auto merged libmysql/libmysql.c: Auto merged
parents
749246cc
c13baf70
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
7 deletions
+17
-7
Docs/manual.texi
Docs/manual.texi
+2
-0
acinclude.m4
acinclude.m4
+5
-4
configure.in
configure.in
+10
-3
No files found.
Docs/manual.texi
View file @
4d710469
...
@@ -49055,6 +49055,8 @@ not yet 100% confident in this code.
...
@@ -49055,6 +49055,8 @@ not yet 100% confident in this code.
@node News-3.23.50, News-3.23.49, News-3.23.x, News-3.23.x
@node News-3.23.50, News-3.23.49, News-3.23.x, News-3.23.x
@appendixsubsec Changes in release 3.23.50
@appendixsubsec Changes in release 3.23.50
@itemize @bullet
@itemize @bullet
Fixed core-dump bug when reading client groups from option files using
@code{mysql_options()}.
@item
@item
Memory leak (16 bytes per every @strong{corrupted} table) closed.
Memory leak (16 bytes per every @strong{corrupted} table) closed.
@item
@item
acinclude.m4
View file @
4d710469
...
@@ -846,21 +846,21 @@ dnl ---------------------------------------------------------------------------
...
@@ -846,21 +846,21 @@ dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_BDB], [
AC_DEFUN([MYSQL_CHECK_BDB], [
AC_ARG_WITH([berkeley-db],
AC_ARG_WITH([berkeley-db],
[
\
[
--with-berkeley-db[=DIR]
--with-berkeley-db[=DIR]
Use BerkeleyDB located in DIR],
Use BerkeleyDB located in DIR],
[bdb="$withval"],
[bdb="$withval"],
[bdb=no])
[bdb=no])
AC_ARG_WITH([berkeley-db-includes],
AC_ARG_WITH([berkeley-db-includes],
[
\
[
--with-berkeley-db-includes=DIR
--with-berkeley-db-includes=DIR
Find Berkeley DB headers in DIR],
Find Berkeley DB headers in DIR],
[bdb_includes="$withval"],
[bdb_includes="$withval"],
[bdb_includes=default])
[bdb_includes=default])
AC_ARG_WITH([berkeley-db-libs],
AC_ARG_WITH([berkeley-db-libs],
[
\
[
--with-berkeley-db-libs=DIR
--with-berkeley-db-libs=DIR
Find Berkeley DB libraries in DIR],
Find Berkeley DB libraries in DIR],
[bdb_libs="$withval"],
[bdb_libs="$withval"],
...
@@ -1108,7 +1108,7 @@ dnl ---------------------------------------------------------------------------
...
@@ -1108,7 +1108,7 @@ dnl ---------------------------------------------------------------------------
AC_DEFUN([MYSQL_CHECK_INNODB], [
AC_DEFUN([MYSQL_CHECK_INNODB], [
AC_ARG_WITH([innodb],
AC_ARG_WITH([innodb],
[
\
[
--without-innodb Do not include the InnoDB table handler],
--without-innodb Do not include the InnoDB table handler],
[innodb="$withval"],
[innodb="$withval"],
[innodb=yes])
[innodb=yes])
...
@@ -1182,6 +1182,7 @@ dnl END OF MYSQL_CHECK_INNODB SECTION
...
@@ -1182,6 +1182,7 @@ dnl END OF MYSQL_CHECK_INNODB SECTION
dnl ---------------------------------------------------------------------------
dnl ---------------------------------------------------------------------------
dnl ---------------------------------------------------------------------------
dnl ---------------------------------------------------------------------------
dnl Got this from the GNU tar 1.13.11 distribution
dnl Got this from the GNU tar 1.13.11 distribution
dnl by Paul Eggert <eggert@twinsun.com>
dnl by Paul Eggert <eggert@twinsun.com>
dnl ---------------------------------------------------------------------------
dnl ---------------------------------------------------------------------------
...
...
configure.in
View file @
4d710469
...
@@ -603,15 +603,22 @@ AC_ARG_WITH(mysqld-user,
...
@@ -603,15 +603,22 @@ AC_ARG_WITH(mysqld-user,
)
)
AC_SUBST
(
MYSQLD_USER
)
AC_SUBST
(
MYSQLD_USER
)
# compile with strings functions in assembler
# If we should allove LOAD DATA LOCAL
AC_MSG_CHECKING
(
if
we should should
enable
LOAD DATA LOCAL by default
)
AC_ARG_ENABLE
(
local-infile,
AC_ARG_ENABLE
(
local-infile,
[
--enable-local-infile
[
--enable-local-infile
If LOAD DATA LOCAL INFILE is enabled by default.],
If LOAD DATA LOCAL INFILE is enabled by default.],
[
ENABLED_LOCAL_INFILE
=
$enable
w
al
]
,
[
ENABLED_LOCAL_INFILE
=
$enable
v
al
]
,
[
ENABLED_LOCAL_INFILE
=
no
]
[
ENABLED_LOCAL_INFILE
=
no
]
)
)
AC_SUBST
(
ENABLE_LOCAL_INFILE
)
if
test
"
$ENABLED_LOCAL_INFILE
"
=
"yes"
then
AC_MSG_RESULT
([
yes
])
AC_DEFINE
([
ENABLED_LOCAL_INFILE]
)
else
AC_MSG_RESULT
([
no]
)
fi
# Use Paul Eggerts macros from GNU tar to check for large file support.
# Use Paul Eggerts macros from GNU tar to check for large file support.
MYSQL_SYS_LARGEFILE
MYSQL_SYS_LARGEFILE
...
...
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