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
5def0988
Commit
5def0988
authored
Aug 12, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge lgrimmer@build.mysql.com:/home/bk/mysql-4.0
into mysql.com:/space/my/mysql-4.0
parents
8712fee2
965050af
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
172 additions
and
249 deletions
+172
-249
Build-tools/Do-compile
Build-tools/Do-compile
+5
-1
Build-tools/Do-rpm
Build-tools/Do-rpm
+152
-244
scripts/make_binary_distribution.sh
scripts/make_binary_distribution.sh
+15
-4
No files found.
Build-tools/Do-compile
View file @
5def0988
...
...
@@ -8,7 +8,7 @@ use Getopt::Long;
$opt_distribution
=
$opt_user
=
$opt_config_env
=
"";
$opt_dbd_options
=
$opt_perl_options
=
$opt_config_options
=
$opt_make_options
=
$opt_suffix
=
"";
$opt_tmp
=
$opt_version_suffix
=
"";
$opt_help
=
$opt_delete
=
$opt_debug
=
$opt_stage
=
$opt_no_test
=
$opt_no_perl
=
$opt_with_low_memory
=
$opt_fast_benchmark
=
$opt_static_client
=
$opt_static_server
=
$opt_static_perl
=
$opt_sur
=
$opt_with_small_disk
=
$opt_local_perl
=
$opt_tcpip
=
$opt_build_thread
=
$opt_use_old_distribution
=
$opt_enable_shared
=
$opt_no_crash_me
=
$opt_no_strip
=
$opt_with_debug
=
$opt_no_benchmark
=
$opt_no_mysqltest
=
0
;
$opt_help
=
$opt_delete
=
$opt_debug
=
$opt_stage
=
$opt_no_test
=
$opt_no_perl
=
$opt_with_low_memory
=
$opt_fast_benchmark
=
$opt_static_client
=
$opt_static_server
=
$opt_static_perl
=
$opt_sur
=
$opt_with_small_disk
=
$opt_local_perl
=
$opt_tcpip
=
$opt_build_thread
=
$opt_use_old_distribution
=
$opt_enable_shared
=
$opt_no_crash_me
=
$opt_no_strip
=
$opt_with_debug
=
$opt_no_benchmark
=
$opt_no_mysqltest
=
$opt_without_embedded
=
0
;
$opt_innodb
=
$opt_bdb
=
$opt_raid
=
$opt_libwrap
=
0
;
GetOptions
(
...
...
@@ -230,6 +230,7 @@ if ($opt_stage <= 1)
$opt_config_options
.=
"
--with-low-memory
"
if
(
$opt_with_low_memory
);
$opt_config_options
.=
"
--with-mysqld-ldflags=-all-static
"
if
(
$opt_static_server
);
$opt_config_options
.=
"
--with-raid
"
if
(
$opt_raid
);
$opt_config_options
.=
"
--with-embedded-server
"
unless
(
$opt_without_embedded
);
# Only enable InnoDB when requested (required to be able to
# build the "Classic" packages that do not include InnoDB)
...
...
@@ -551,6 +552,9 @@ non-standard location overriding default.
--with-small-disk
Clean up the build environment before testing the binary distribution
(to save disk space)
--without-embedded
Don't compile the embedded server.
EOF
exit
1
;
}
...
...
Build-tools/Do-rpm
View file @
5def0988
This diff is collapsed.
Click to expand it.
scripts/make_binary_distribution.sh
View file @
5def0988
...
...
@@ -61,7 +61,7 @@ case $system in
esac
mkdir
$BASE
$BASE
/bin
\
mkdir
$BASE
$BASE
/bin
$BASE
/docs
\
$BASE
/include
$BASE
/lib
$BASE
/support-files
$BASE
/share
$BASE
/scripts
\
$BASE
/mysql-test
$BASE
/mysql-test/t
$BASE
/mysql-test/r
\
$BASE
/mysql-test/include
$BASE
/mysql-test/std_data
...
...
@@ -73,9 +73,20 @@ if [ $BASE_SYSTEM != "netware" ] ; then
chmod
o-rwx
$BASE
/data
$BASE
/data/
*
fi
for
i
in
ChangeLog COPYING COPYING.LIB README Docs/INSTALL-BINARY
\
MySQLEULA.txt Docs/manual.html Docs/manual.txt Docs/manual_toc.html
\
LICENSE.doc README.NW Docs/mysqlbug.txt
for
i
in
ChangeLog
\
Docs/manual.html
\
Docs/manual.txt
\
Docs/manual_toc.html
\
Docs/mysql.info
do
if
[
-f
$i
]
then
$CP
$i
$BASE
/docs
fi
done
for
i
in
COPYING COPYING.LIB README Docs/INSTALL-BINARY
\
MySQLEULA.txt LICENSE.doc README.NW
do
if
[
-f
$i
]
then
...
...
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