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
a2c50670
Commit
a2c50670
authored
Jun 23, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge marko@build.mysql.com:/home/bk/mysql-4.0
into hundin.mysql.fi:/home/marko/k/mysql-4.0
parents
a331664d
9a9c59db
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
9 deletions
+16
-9
Build-tools/my_md5sum
Build-tools/my_md5sum
+4
-3
acinclude.m4
acinclude.m4
+3
-2
man/mysqlaccess.1.in
man/mysqlaccess.1.in
+1
-2
man/mysqldump.1.in
man/mysqldump.1.in
+1
-1
mysys/hash.c
mysys/hash.c
+2
-1
vio/test-sslserver.c
vio/test-sslserver.c
+5
-0
No files found.
Build-tools/my_md5sum
View file @
a2c50670
...
...
@@ -13,7 +13,7 @@ use strict;
use
Digest::
MD5
;
use
Getopt::
Long
;
my
$VER
=
"
1.
0
";
my
$VER
=
"
1.
1
";
#
# Strip the leading path info off the program name ($0). We want 'my_md5sum'
...
...
@@ -64,8 +64,9 @@ if ($opt_check)
my
$digest
=
&
mkmd5
(
$checkfile
);
# Check the fresh MD5 against what is recorded in the file
# Print an error message if they don't match
print
"
$0: MD5 check failed for '
$checkfile
'
\n
"
if
$digest
ne
$checksum
;
# Print an error message if they don't match, else print OK
print
"
$checkfile
: FAILED
\n
"
if
$digest
ne
$checksum
;
print
"
$checkfile
: OK
\n
"
if
$digest
eq
$checksum
;
}
}
# Else generate the MD5 digest to STDOUT
...
...
acinclude.m4
View file @
a2c50670
...
...
@@ -737,14 +737,15 @@ AC_DEFUN(MYSQL_FIND_OPENSSL, [
---)
for d in /usr/ssl/include /usr/local/ssl/include /usr/include \
/usr/include/ssl /opt/ssl/include /opt/openssl/include \
/usr/local/ssl/include /usr/local/include ; do
/usr/local/ssl/include /usr/local/include
/usr/freeware/include
; do
if test -f $d/openssl/ssl.h ; then
OPENSSL_INCLUDE=-I$d
fi
done
for d in /usr/ssl/lib /usr/local/ssl/lib /usr/lib/openssl \
/usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib /usr/local/lib/ ; do
/usr/lib /usr/lib64 /opt/ssl/lib /opt/openssl/lib \
/usr/freeware/lib32 /usr/local/lib/ ; do
if test -f $d/libssl.a || test -f $d/libssl.so || test -f $d/libssl.dylib ; then
OPENSSL_LIB=$d
fi
...
...
man/mysqlaccess.1.in
View file @
a2c50670
.TH mysqlaccess 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
.SH NAME
.BR mysqlaccess
\- Create new users to mysql.
.BR mysqlaccess \- Create new users to mysql.
.SH USAGE
mysqlaccess [host [user [db]]] OPTIONS
.SH SYNOPSIS
...
...
man/mysqldump.1.in
View file @
a2c50670
.TH mysqldump 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
.SH NAME
mysqldump \- text
-based client for dumping or backing up mysql databases
, tables and or data.
mysqldump \- text
\-based client for dumping or backing up mysql databases
, tables and or data.
.SH USAGE
.BR "mysqldump [\fP\fIOPTIONS\fP] database [\fP\fItables\fP]"
...
...
mysys/hash.c
View file @
a2c50670
...
...
@@ -182,7 +182,8 @@ uint calc_hashnr_caseup(const byte *key, uint len)
#endif
#ifndef __SUNPRO_C
/* SUNPRO can't handle this */
/* for compilers which can not handle inline */
#if !defined(__SUNPRO_C) && !defined(__USLC__) && !defined(__sgi)
inline
#endif
unsigned
int
rec_hashnr
(
HASH
*
hash
,
const
byte
*
record
)
...
...
vio/test-sslserver.c
View file @
a2c50670
...
...
@@ -91,7 +91,12 @@ main(int argc __attribute__((unused)), char** argv)
struct
sockaddr_in
sa_cli
;
int
listen_sd
;
int
err
;
#if defined(__sgi) && _NO_XOPEN4 && _NO_XOPEN5
socklen_t
client_len
;
#else
size_t
client_len
;
#endif
int
reuseaddr
=
1
;
/* better testing, uh? */
MY_INIT
(
argv
[
0
]);
...
...
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