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
e3ffaed1
Commit
e3ffaed1
authored
May 04, 2012
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support same version upgrade for MSI
parent
d231dc8f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
cmake/mysql_version.cmake
cmake/mysql_version.cmake
+5
-3
win/packaging/create_msi.cmake.in
win/packaging/create_msi.cmake.in
+2
-1
win/packaging/mysql_server.wxs.in
win/packaging/mysql_server.wxs.in
+5
-3
No files found.
cmake/mysql_version.cmake
View file @
e3ffaed1
...
...
@@ -126,10 +126,12 @@ ENDIF()
IF
(
MSVC
)
# Tiny version is used to identify the build, it can be set with cmake -DTINY_VERSION=<number>
# to bzr revno for example (in the CI builds)
SET
(
TINY_VERSION
"0"
CACHE INTERNAL
""
)
IF
(
NOT TINY_VERSION
)
SET
(
TINY_VERSION
"0"
)
ENDIF
()
GET_FILENAME_COMPONENT
(
MYSQL_CMAKE_SCRIPT_DIR
${
CMAKE_CURRENT_LIST_FILE
}
PATH
)
SET
(
FILETYPE VFT_APP
)
CONFIGURE_FILE
(
${
MYSQL_CMAKE_SCRIPT_DIR
}
/versioninfo.rc.in
${
CMAKE_BINARY_DIR
}
/versioninfo_exe.rc
)
...
...
@@ -137,7 +139,7 @@ IF(MSVC)
SET
(
FILETYPE VFT_DLL
)
CONFIGURE_FILE
(
${
MYSQL_CMAKE_SCRIPT_DIR
}
/versioninfo.rc.in
${
CMAKE_BINARY_DIR
}
/versioninfo_dll.rc
)
FUNCTION
(
ADD_VERSION_INFO target target_type sources_var
)
IF
(
"
${
target_type
}
"
MATCHES
"SHARED"
OR
"
${
target_type
}
"
MATCHES
"MODULE"
)
SET
(
rcfile
${
CMAKE_BINARY_DIR
}
/versioninfo_dll.rc
)
...
...
win/packaging/create_msi.cmake.in
View file @
e3ffaed1
...
...
@@ -8,6 +8,7 @@ SET(VERSION "@VERSION@")
SET(MAJOR_VERSION "@MAJOR_VERSION@")
SET(MINOR_VERSION "@MINOR_VERSION@")
SET(PATCH_VERSION "@PATCH_VERSION@")
SET(TINY_VERSION "@TINY_VERSION@")
SET(CMAKE_SIZEOF_VOID_P @CMAKE_SIZEOF_VOID_P@)
SET(MANUFACTURER "@MANUFACTURER@")
SET(WIXCA_LOCATION "@WIXCA_LOCATION@")
...
...
@@ -421,7 +422,7 @@ EXECUTE_PROCESS(
EXECUTE_PROCESS(
COMMAND ${LIGHT_EXECUTABLE} -ext WixUIExtension -ext WixUtilExtension
-ext WixFirewallExtension
-ext WixFirewallExtension
-sice:ICE61
mysql_server.wixobj extra.wixobj -out ${CPACK_PACKAGE_FILE_NAME}.msi
${EXTRA_LIGHT_ARGS}
)
...
...
win/packaging/mysql_server.wxs.in
View file @
e3ffaed1
...
...
@@ -4,7 +4,7 @@
Id="*"
UpgradeCode="@CPACK_WIX_UPGRADE_CODE@"
Name="@CPACK_WIX_PACKAGE_NAME@"
Version="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@"
Version="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@
.@TINY_VERSION@
"
Language="1033"
Manufacturer="@MANUFACTURER@">
...
...
@@ -26,14 +26,16 @@
<UpgradeVersion
Minimum="@MAJOR_VERSION@.@MINOR_VERSION@.0"
IncludeMinimum="yes"
Maximum="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@"
Maximum="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@.@TINY_VERSION@"
IncludeMaximum="yes"
Property="OLDERVERSIONBEINGUPGRADED"
MigrateFeatures="yes"
/>
<?endif?>
<UpgradeVersion
Minimum="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@"
Minimum="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@
.@TINY_VERSION@
"
Maximum="@MAJOR_VERSION@.@MINOR_VERSION@.999"
IncludeMinimum="no"
OnlyDetect="yes"
Property="NEWERVERSIONDETECTED" />
</Upgrade>
...
...
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