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
b6708a97
Commit
b6708a97
authored
Sep 22, 2007
by
iggy@alf.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into alf.(none):/src/bug15327/my50-bug15327
parents
ed055965
9c9c82e0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
2 deletions
+35
-2
win/configure.js
win/configure.js
+35
-2
No files found.
win/configure.js
View file @
b6708a97
...
...
@@ -31,6 +31,7 @@ try
configureInTS
.
Close
();
var
default_comment
=
"
Source distribution
"
;
var
default_port
=
GetValue
(
configureIn
,
"
MYSQL_TCP_PORT_DEFAULT
"
);
var
actual_port
=
0
;
var
configfile
=
fso
.
CreateTextFile
(
"
win
\\
configure.data
"
,
true
);
for
(
i
=
0
;
i
<
args
.
Count
();
i
++
)
...
...
@@ -58,10 +59,41 @@ try
default_comment
=
parts
[
1
];
break
;
case
"
MYSQL_TCP_PORT
"
:
default
_port
=
parts
[
1
];
actual
_port
=
parts
[
1
];
break
;
}
}
if
(
actual_port
==
0
)
{
// if we actually defaulted (as opposed to the pathological case of
// --with-tcp-port=<MYSQL_TCP_PORT_DEFAULT> which might in theory
// happen if whole batch of servers was built from a script), set
// the default to zero to indicate that; we don't lose information
// that way, because 0 obviously indicates that we can get the
// default value from MYSQL_TCP_PORT. this seems really evil, but
// testing for MYSQL_TCP_PORT==MYSQL_TCP_PORT_DEFAULT would make a
// a port of MYSQL_TCP_PORT_DEFAULT magic even if the builder did not
// intend it to mean "use the default, in fact, look up a good default
// from /etc/services if you can", but really, really meant 3306 when
// they passed in 3306. When they pass in a specific value, let them
// have it; don't second guess user and think we know better, this will
// just make people cross. this makes the the logic work like this
// (which is complicated enough):
//
// - if a port was set during build, use that as a default.
//
// - otherwise, try to look up a port in /etc/services; if that fails,
// use MYSQL_TCP_PORT_DEFAULT (at the time of this writing 3306)
//
// - allow the MYSQL_TCP_PORT environment variable to override that.
//
// - allow command-line parameters to override all of the above.
//
// the top-most MYSQL_TCP_PORT_DEFAULT is read from win/configure.js,
// so don't mess with that.
actual_port
=
default_port
;
default_port
=
0
;
}
configfile
.
WriteLine
(
"
SET (COMPILATION_COMMENT
\"
"
+
default_comment
+
"
\"
)
"
);
...
...
@@ -70,7 +102,8 @@ try
GetValue
(
configureIn
,
"
PROTOCOL_VERSION
"
)
+
"
\"
)
"
);
configfile
.
WriteLine
(
"
SET (DOT_FRM_VERSION
\"
"
+
GetValue
(
configureIn
,
"
DOT_FRM_VERSION
"
)
+
"
\"
)
"
);
configfile
.
WriteLine
(
"
SET (MYSQL_TCP_PORT
\"
"
+
default_port
+
"
\"
)
"
);
configfile
.
WriteLine
(
"
SET (MYSQL_TCP_PORT_DEFAULT
\"
"
+
default_port
+
"
\"
)
"
);
configfile
.
WriteLine
(
"
SET (MYSQL_TCP_PORT
\"
"
+
actual_port
+
"
\"
)
"
);
configfile
.
WriteLine
(
"
SET (MYSQL_UNIX_ADDR
\"
"
+
GetValue
(
configureIn
,
"
MYSQL_UNIX_ADDR_DEFAULT
"
)
+
"
\"
)
"
);
var
version
=
GetVersion
(
configureIn
);
...
...
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