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
21a65699
Commit
21a65699
authored
Feb 03, 2010
by
Kent Boortz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjuster the parsing of "configure.in" version number line
parent
90f7cfa6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
win/configure.js
win/configure.js
+3
-3
No files found.
win/configure.js
View file @
21a65699
...
@@ -140,11 +140,11 @@ function GetValue(str, key)
...
@@ -140,11 +140,11 @@ function GetValue(str, key)
function
GetVersion
(
str
)
function
GetVersion
(
str
)
{
{
var
key
=
"
A
M_INIT_AUTOMAKE(mysql,
"
;
var
key
=
"
A
C_INIT([MySQL Server], [
"
;
var
pos
=
str
.
indexOf
(
key
);
//5.0.6-beta)
var
pos
=
str
.
indexOf
(
key
);
if
(
pos
==
-
1
)
return
null
;
if
(
pos
==
-
1
)
return
null
;
pos
+=
key
.
length
;
pos
+=
key
.
length
;
var
end
=
str
.
indexOf
(
"
)
"
,
pos
);
var
end
=
str
.
indexOf
(
"
]
"
,
pos
);
if
(
end
==
-
1
)
return
null
;
if
(
end
==
-
1
)
return
null
;
return
str
.
substring
(
pos
,
end
);
return
str
.
substring
(
pos
,
end
);
}
}
...
...
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