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
9faf334b
Commit
9faf334b
authored
Jun 02, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into amd64.(none):/src/bug24732/my50-bug24732
parents
c616341b
1a2869ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
CMakeLists.txt
CMakeLists.txt
+1
-1
win/create_manifest.js
win/create_manifest.js
+5
-1
No files found.
CMakeLists.txt
View file @
9faf334b
...
...
@@ -158,7 +158,7 @@ IF(EMBED_MANIFESTS)
STRING
(
REGEX MATCH
"MANIFEST:NO"
tmp_manifest
${
CMAKE_EXE_LINKER_FLAGS
}
)
IF
(
NOT tmp_manifest
)
SET
(
CMAKE_EXE_LINKER_FLAGS
"
${
CMAKE_EXE_LINKER_FLAGS
}
/MANIFEST:NO"
)
ENDIF
(
tmp_manifest
)
ENDIF
(
NOT
tmp_manifest
)
# Set the processor architecture.
IF
(
CMAKE_GENERATOR MATCHES
"Visual Studio 8 2005 Win64"
)
SET
(
PROCESSOR_ARCH
"X64"
)
...
...
win/create_manifest.js
View file @
9faf334b
...
...
@@ -27,7 +27,11 @@ try
var
app_name
=
parts
[
1
];
break
;
case
"
version
"
:
var
app_version
=
parts
[
1
];
var
supp_version
=
parts
[
1
];
// Clean up the supplied version string.
var
end
=
supp_version
.
indexOf
(
"
-
"
);
if
(
end
==
-
1
)
end
=
supp_version
.
length
;
var
app_version
=
supp_version
.
substring
(
0
,
end
);
app_version
+=
"
.0
"
;
break
;
case
"
arch
"
:
...
...
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