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
6e7e3f80
Commit
6e7e3f80
authored
Jan 01, 2013
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-3993 - add MSI installer option to set character-set-server=utf8
parent
5a99c5f5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
win/packaging/extra.wxs.in
win/packaging/extra.wxs.in
+20
-0
No files found.
win/packaging/extra.wxs.in
View file @
6e7e3f80
...
@@ -43,6 +43,8 @@
...
@@ -43,6 +43,8 @@
<Property
Id=
"SKIPNETWORKING"
Secure=
"yes"
/>
<Property
Id=
"SKIPNETWORKING"
Secure=
"yes"
/>
<!-- Whether to keep default (unauthenticated) user. Default is no-->
<!-- Whether to keep default (unauthenticated) user. Default is no-->
<Property
Id=
"DEFAULTUSER"
Secure=
"yes"
/>
<Property
Id=
"DEFAULTUSER"
Secure=
"yes"
/>
<!-- Set server character set to UTF8 -->
<Property
Id=
"UTF8"
Secure=
"yes"
/>
<!-- Whether to data on uninstall (default yes, after asking user consent) -->
<!-- Whether to data on uninstall (default yes, after asking user consent) -->
<Property
Id=
"CLEANUPDATA"
Secure=
"yes"
Value=
"1"
/>
<Property
Id=
"CLEANUPDATA"
Secure=
"yes"
Value=
"1"
/>
<!-- Force per machine installation -->
<!-- Force per machine installation -->
...
@@ -272,6 +274,10 @@
...
@@ -272,6 +274,10 @@
<Text>
Please note: this setting can lead to insecure systems.
</Text>
<Text>
Please note: this setting can lead to insecure systems.
</Text>
</Control>
</Control>
<Control
Id=
"CheckBoxUTF8"
Type=
"CheckBox"
X=
"8"
Y=
"215"
Width=
"250"
Height=
"18"
Property=
"UTF8"
CheckBoxValue=
"1"
TabSkip=
"no"
>
<Text>
{\Font1}Use UTF8 as default server's character set
</Text>
</Control>
<!-- Navigation buttons-->
<!-- Navigation buttons-->
<Control
Id=
"Back"
Type=
"PushButton"
X=
"180"
Y=
"243"
Width=
"56"
Height=
"17"
Text=
"&Back"
>
<Control
Id=
"Back"
Type=
"PushButton"
X=
"180"
Y=
"243"
Width=
"56"
Height=
"17"
Text=
"&Back"
>
<Publish
Event=
"NewDialog"
Value=
"CustomizeDlg"
>
1
</Publish>
<Publish
Event=
"NewDialog"
Value=
"CustomizeDlg"
>
1
</Publish>
...
@@ -519,6 +525,20 @@
...
@@ -519,6 +525,20 @@
Value=
"ON"
/>
Value=
"ON"
/>
</Component>
</Component>
<Component
Id=
"C.utf8"
Guid=
"*"
Directory=
"DATADIR"
>
<Condition>
UTF8
</Condition>
<RegistryValue
Root=
'HKLM'
Key=
'SOFTWARE\@MANUFACTURER@\@CPACK_WIX_PACKAGE_NAME@'
Name=
'UTF8'
Value=
'1'
Type=
'string'
KeyPath=
'yes'
/>
<IniFile
Id=
"Ini6"
Action=
"createLine"
Directory=
"DATADIR"
Section=
"mysqld"
Name=
"my.ini"
Key=
"character-set-server"
Value=
"utf8"
/>
</Component>
<!--- Grant service account permission to the database folder (Windows 7 and later) -->
<!--- Grant service account permission to the database folder (Windows 7 and later) -->
<Component
Id=
"C.serviceaccount.permission"
Guid=
"*"
Directory=
'DATADIR'
Transitive=
'yes'
>
<Component
Id=
"C.serviceaccount.permission"
Guid=
"*"
Directory=
'DATADIR'
Transitive=
'yes'
>
<Condition>
<![CDATA[SERVICENAME AND (VersionNT > 600)]]>
</Condition>
<Condition>
<![CDATA[SERVICENAME AND (VersionNT > 600)]]>
</Condition>
...
...
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