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
7ea5c810
Commit
7ea5c810
authored
May 28, 2001
by
monty@tik.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/my/mysql into tik.mysql.fi:/home/my/mysql
parents
75a62b98
38c035c0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
4 deletions
+21
-4
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
Docs/manual.texi
Docs/manual.texi
+10
-0
configure.in
configure.in
+4
-2
scripts/mysql_config.sh
scripts/mysql_config.sh
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+5
-1
No files found.
BitKeeper/etc/logging_ok
View file @
7ea5c810
...
@@ -2,3 +2,4 @@ mwagner@evoq.mwagner.org
...
@@ -2,3 +2,4 @@ mwagner@evoq.mwagner.org
sasha@mysql.sashanet.com
sasha@mysql.sashanet.com
heikki@donna.mysql.fi
heikki@donna.mysql.fi
miguel@linux.local
miguel@linux.local
monty@tik.mysql.fi
Docs/manual.texi
View file @
7ea5c810
...
@@ -43642,6 +43642,11 @@ Some features:
...
@@ -43642,6 +43642,11 @@ Some features:
@itemize @bullet
@itemize @bullet
@item Manage servers, databases, tables, columns, indexes, and users
@item Manage servers, databases, tables, columns, indexes, and users
@item Import wizard to import structure and data from MS Access, MS Excel, Dbase, FoxPro, Paradox, and ODBC Databases.
@item Import wizard to import structure and data from MS Access, MS Excel, Dbase, FoxPro, Paradox, and ODBC Databases.
@item @uref{http://www.mysql.com/Downloads/Contrib/KMYENG113.zip,KMYENG113.zip}
An administrator GUI for @strong{MySQL}. Works only on windows, no source.
Available in English and Japanese. By Mitunobu Kaneko.
Home page: @uref{http://sql.jnts.ne.jp/}
@end itemize
@end itemize
@item @uref{http://www.mysql.com/Downloads/Contrib/xmysqladmin-1.0.tar.gz, xmysqladmin-1.0.tar.gz}
@item @uref{http://www.mysql.com/Downloads/Contrib/xmysqladmin-1.0.tar.gz, xmysqladmin-1.0.tar.gz}
...
@@ -43949,6 +43954,11 @@ By Steve Shreeve.
...
@@ -43949,6 +43954,11 @@ By Steve Shreeve.
Perl program to convert Oracle databases to @strong{MySQL}. By Johan Andersson.
Perl program to convert Oracle databases to @strong{MySQL}. By Johan Andersson.
@item @uref{http://www.mysql.com/Downloads/Contrib/excel2mysql, excel2mysql}
@item @uref{http://www.mysql.com/Downloads/Contrib/excel2mysql, excel2mysql}
Perl program to import Excel spreadsheets into a @strong{MySQL} database. By Stephen Hurd @email{shurd@@sk.sympatico.ca}
Perl program to import Excel spreadsheets into a @strong{MySQL} database. By Stephen Hurd @email{shurd@@sk.sympatico.ca}
@item @uref{http://www.mysql.com/Downloads/Contrib/T2S_100.ZIP, T2S_100.ZIP}.
Windows program to convert text files to @strong{MySQL} databases. By
Asaf Azulay.
@end itemize
@end itemize
@appendixsec Using MySQL with Other Products
@appendixsec Using MySQL with Other Products
configure.in
View file @
7ea5c810
...
@@ -285,8 +285,10 @@ export CC CFLAGS LD LDFLAGS
...
@@ -285,8 +285,10 @@ export CC CFLAGS LD LDFLAGS
if
test
"
$GXX
"
=
"yes"
if
test
"
$GXX
"
=
"yes"
then
then
# mysqld requires this when compiled with gcc
# mysqld requires -fno-implicit-templates.
CXXFLAGS
=
"
$CXXFLAGS
-fno-implicit-templates"
# Disable exceptions as they seams to create problems with gcc and threads.
# mysqld doesn't use run-time-type-checking, so we disable it.
CXXFLAGS
=
"
$CXXFLAGS
-fno-implicit-templates -fno-exceptions -fno-rtti"
fi
fi
# Avoid bug in fcntl on some versions of linux
# Avoid bug in fcntl on some versions of linux
...
...
scripts/mysql_config.sh
View file @
7ea5c810
...
@@ -45,7 +45,7 @@ EOF
...
@@ -45,7 +45,7 @@ EOF
exit
1
exit
1
}
}
if
!
test
$#
-gt
0
;
then
usage
;
fi
if
test
$#
-le
0
;
then
usage
;
fi
while
test
$#
-gt
0
;
do
while
test
$#
-gt
0
;
do
case
$1
in
case
$1
in
...
...
sql/mysqld.cc
View file @
7ea5c810
...
@@ -3039,8 +3039,12 @@ static void usage(void)
...
@@ -3039,8 +3039,12 @@ static void usage(void)
--console Don't remove the console window
\n
\
--console Don't remove the console window
\n
\
--install Install mysqld as a service (NT)
\n
\
--install Install mysqld as a service (NT)
\n
\
--remove Remove mysqld from the service list (NT)
\n
\
--remove Remove mysqld from the service list (NT)
\n
\
--standalone Dummy option to start as a standalone program (NT)
\
n
\
--standalone Dummy option to start as a standalone program (NT)\
"
);
"
);
#ifdef USE_SYMDIR
puts
(
"--use-symbolic-links Enable symbolic link support"
);
#endif
puts
(
""
);
#endif
#endif
#ifdef HAVE_BERKELEY_DB
#ifdef HAVE_BERKELEY_DB
puts
(
"\
puts
(
"\
...
...
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