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
32466b14
Commit
32466b14
authored
Dec 13, 2005
by
jani@a193-229-222-105.elisa-laajakaista.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor Netware specific changes.
parent
2692cdb0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
netware/BUILD/compile-linux-tools
netware/BUILD/compile-linux-tools
+3
-2
scripts/make_binary_distribution.sh
scripts/make_binary_distribution.sh
+4
-0
sql/tztime.cc
sql/tztime.cc
+5
-0
No files found.
netware/BUILD/compile-linux-tools
View file @
32466b14
...
...
@@ -28,7 +28,8 @@ rm -f */*.linux
./configure
--without-innodb
--without-docs
# build tools only
make clean all-local
make clean
make
(
cd
dbug
;
make libdbug.a
)
(
cd
strings
;
make libmystrings.a
)
(
cd
mysys
;
make libmysys.a
)
...
...
@@ -53,7 +54,7 @@ make clean all-local
# copying required linux tools
cp
extra/comp_err extra/comp_err.linux
cp
libmysql/conf_to_src libmysql/conf_to_src.linux
cp
libmysql_r/conf_to_src libmysql_r/conf_to_src.linux
#
cp libmysql_r/conf_to_src libmysql_r/conf_to_src.linux
cp
sql/gen_lex_hash sql/gen_lex_hash.linux
cp
strings/conf_to_src strings/conf_to_src.linux
scripts/make_binary_distribution.sh
View file @
32466b14
...
...
@@ -177,6 +177,7 @@ if [ $BASE_SYSTEM = "netware" ] ; then
libname
=
`
basename
$i
.a
`
$MV
$i
$BASE
/lib/
$libname
.lib
done
rm
-f
$BASE
/lib/
*
.la
fi
copyfileto
$BASE
/include config.h include/
*
...
...
@@ -266,6 +267,9 @@ if [ $BASE_SYSTEM = "netware" ] ; then
$BASE
/support-files/mysql
*
.spec
\
$BASE
/support-files/mysql-log-rotate
\
$BASE
/support-files/binary-configure
\
$BASE
/support-files/build-tags
\
$BASE
/support-files/MySQL-shared-compat.spec
\
$BASE
/support-files/ndb-config-2-node.ini
\
$BASE
/INSTALL-BINARY
\
$BASE
/MySQLEULA.txt
else
...
...
sql/tztime.cc
View file @
32466b14
...
...
@@ -2359,6 +2359,7 @@ scan_tz_dir(char * name_end)
int
main
(
int
argc
,
char
**
argv
)
{
#ifndef __NETWARE__
MY_INIT
(
argv
[
0
]);
if
(
argc
!=
2
&&
argc
!=
3
)
...
...
@@ -2417,6 +2418,10 @@ main(int argc, char **argv)
free_root
(
&
tz_storage
,
MYF
(
0
));
}
#else
fprintf
(
stderr
,
"This tool has not been ported to NetWare
\n
"
);
#endif
/* __NETWARE__ */
return
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