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
4b6a057c
Commit
4b6a057c
authored
May 28, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/my/mysql-4.0 into mysql.com:/home/my/mysql-4.1
parents
aabbacba
cb5c3f6e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
3 deletions
+24
-3
Build-tools/Do-compile
Build-tools/Do-compile
+19
-2
include/my_global.h
include/my_global.h
+5
-1
No files found.
Build-tools/Do-compile
View file @
4b6a057c
...
...
@@ -7,7 +7,7 @@ use Sys::Hostname;
@config_options
=
();
@make_options
=
();
$opt_distribution
=
$opt_user
=
$opt_config_env
=
"";
$opt_distribution
=
$opt_user
=
$opt_config_env
=
$opt_config_extra_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_cluster
=
$opt_with_debug
=
$opt_no_benchmark
=
$opt_no_mysqltest
=
$opt_without_embedded
=
$opt_readline
=
0
;
...
...
@@ -17,6 +17,7 @@ GetOptions(
"
bdb
",
"
build-thread=i
",
"
config-env=s
"
=>
\
@config_env
,
"
config-extra-env=s
"
=>
\
@config_extra_env
,
"
config-options=s
"
=>
\
@config_options
,
"
dbd-options=s
",
"
debug
",
...
...
@@ -81,6 +82,12 @@ if (@config_env > 0)
$opt_config_env
=
join
("
",
@config_env
);
}
if
(
@config_extra_env
>
0
)
{
chomp
(
@config_extra_env
);
$opt_config_extra_env
=
join
("
",
@config_extra_env
);
}
$host
=
hostname
();
chomp
(
$uname
=
`
uname
`);
$full_host_name
=
$host
;
...
...
@@ -91,6 +98,7 @@ $email="$opt_user\@mysql.com";
chomp
(
$pwd
=
`
pwd
`);
$VER
=
basename
(
$opt_distribution
);
$VER
=~
/mysql.*-([1-9]\.[0-9]{1,2}\.[0-9]{1,2}.*)\.tar*/
;
$version
=
$1
;
$release
=
"";
# Shut up perl
(
$major
,
$minor
,
$release
)
=
split
(
/\./
,
$version
);
$log
=
"
$pwd
/Logs/
$host
-
$major
.
$minor$opt_version_suffix
.log
";
$opt_distribution
=~
/(mysql[^\/]*)\.tar/
;
...
...
@@ -113,6 +121,8 @@ if (defined($gcc_version) && ! $opt_config_env)
}
}
$opt_config_env
.=
"
$opt_config_extra_env
";
$new_opt_tmp
=
0
;
if
(
$opt_tmp
)
{
...
...
@@ -156,6 +166,9 @@ select STDOUT;
$|
=
1
;
info
("
Compiling MySQL
$opt_version_suffix
at
$host$opt_suffix
, stage:
$opt_stage
\n
");
info
("
LD_LIBRARY_PATH is
$ENV
{LD_LIBRARY_PATH}
");
info
("
PATH is
$ENV
{PATH}
");
log_timestamp
();
if
(
-
x
"
$host
/bin/mysqladmin
")
...
...
@@ -448,7 +461,7 @@ exit 0;
sub
usage
{
print
<<EOF;
$0 version 1.
5
$0 version 1.
6
$0 takes the following options:
...
...
@@ -458,6 +471,10 @@ Compile with support for Berkeley DB tables
--config-env=<environment for configure>
To set up the environment, like 'CC=cc CXX=gcc CXXFLAGS=-O3'
--config-extra-env <environment for configure>
Additional flags for environment (not CC or CXX). Should be used when one
wants Do-compile to propose proper CC and CXX flags.
--config-options=<options>
To add some extra options to configure (e.g. '--with-perl=yes')
...
...
include/my_global.h
View file @
4b6a057c
...
...
@@ -178,7 +178,11 @@ C_MODE_END
#ifdef HAVE_BROKEN_SNPRINTF
/* HPUX 10.20 don't have this defined */
#undef HAVE_SNPRINTF
#endif
#ifdef HAVE_BROKEN_PREAD
/* These doesn't work on HPUX 11.x */
#ifdef HAVE_BROKEN_PREAD
/*
pread()/pwrite() are not 64 bit safe on HP-UX 11.0 without
installing the kernel patch PHKL_20349 or greater
*/
#undef HAVE_PREAD
#undef HAVE_PWRITE
#endif
...
...
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