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
e0cbe8f4
Commit
e0cbe8f4
authored
Feb 08, 2008
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: scripts/dynconfig: Minor cleanup (spelling and formatting).
parent
1f13d1f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
13 deletions
+14
-13
scripts/dynconfig
scripts/dynconfig
+14
-13
No files found.
scripts/dynconfig
View file @
e0cbe8f4
#!/usr/bin/perl -w
#!/usr/bin/perl -w
#
#
# (C)opyright Oracle/Innobase Oy. 2007.
# (C)opyright Oracle/Innobase Oy. 2007.
#
#
...
@@ -11,9 +11,12 @@
...
@@ -11,9 +11,12 @@
#
#
# RETURNS: 0 OK
# RETURNS: 0 OK
use
strict
;
use
warnings
;
my
$buffer
;
my
$buffer
;
# These are the en
ing
es whose config parameters we need to remove.
# These are the en
gin
es whose config parameters we need to remove.
my
@engines
=
(
my
@engines
=
(
"
ndbcluster
",
"
ndbcluster
",
"
innodb
",
"
innodb
",
...
@@ -25,7 +28,7 @@ my @engines = (
...
@@ -25,7 +28,7 @@ my @engines = (
"
embedded-server
",
"
embedded-server
",
"
partition
"
"
partition
"
);
);
# Map the following variables to something else. If you want to remove any
# Map the following variables to something else. If you want to remove any
# parameters from the configure command line, simply add an "" value to the
# parameters from the configure command line, simply add an "" value to the
# hashtable below.
# hashtable below.
...
@@ -103,8 +106,7 @@ sub squeeze($) {
...
@@ -103,8 +106,7 @@ sub squeeze($) {
}
}
if
(
$#ARGV
<
0
)
{
if
(
$#ARGV
<
0
)
{
print
"
usage: <patch/to/mysqlbug> [options e.g. CC=xxx]
\n
";
die
"
usage: $0 <path/to/mysqlbug> [options e.g. CC=gcc CXX=gcc]
\n
";
exit
(
1
);
}
}
open
(
F
,
$ARGV
[
0
])
||
open
(
F
,
$ARGV
[
0
])
||
...
@@ -117,12 +119,10 @@ my @matched = grep(/^CONFIGURE_LINE=/, split(/\n/, $buffer));
...
@@ -117,12 +119,10 @@ my @matched = grep(/^CONFIGURE_LINE=/, split(/\n/, $buffer));
# Check for no match
# Check for no match
if
(
$#matched
==
-
1
)
{
if
(
$#matched
==
-
1
)
{
print
"
CONFIGURE_LINE= not found in :
$ARGV
[0]
\n
";
die
"
CONFIGURE_LINE= not found in :
$ARGV
[0]
\n
";
exit
(
1
);
# Check if more than one line matched
# Check if more than one line matched
}
elsif
(
$#matched
>
0
)
{
}
elsif
(
$#matched
>
0
)
{
printf
"
Error too many matches found.
\n
";
die
"
Error: $#matched matches found.
\n
";
exit
(
1
);
}
}
# Since CONFIGURE_LINE is an environment variable we extract the value,
# Since CONFIGURE_LINE is an environment variable we extract the value,
...
@@ -153,7 +153,7 @@ if (defined($ENV{"MYSQL_CONFIG_DEL"})) {
...
@@ -153,7 +153,7 @@ if (defined($ENV{"MYSQL_CONFIG_DEL"})) {
}
}
}
}
my
@arr
=
split
(
/'/
,
$configure
);
my
@arr
=
split
(
"
'
"
,
$configure
);
foreach
my
$param
(
@arr
)
{
foreach
my
$param
(
@arr
)
{
...
@@ -172,7 +172,7 @@ foreach my $param (@arr) {
...
@@ -172,7 +172,7 @@ foreach my $param (@arr) {
$param
=
map_param
(
$param
);
$param
=
map_param
(
$param
);
if
(
length
(
$param
)
>
0
)
{
if
(
length
(
$param
)
>
0
)
{
print
"
'
$param
'
";
print
"
'
$param
'
";
}
}
}
}
...
@@ -186,9 +186,10 @@ if (defined($ENV{"MYSQL_CONFIG_ADD"})) {
...
@@ -186,9 +186,10 @@ if (defined($ENV{"MYSQL_CONFIG_ADD"})) {
if
(
$param
=~
/^'(.+)'$/
)
{
if
(
$param
=~
/^'(.+)'$/
)
{
$param
=
$1
;
$param
=
$1
;
}
}
print
"
'
$param
'
";
print
"
'
$param
'
";
}
}
}
}
exit
(
0
)
;
print
"
\n
"
;
exit
(
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