summaryrefslogtreecommitdiff
path: root/win
Commit message (Collapse)AuthorAgeFilesLines
* Follow-up to changing FSF addressVicențiu Ciorbaru2019-05-111-1/+1
| | | | | | | | | | Some places didn't match the previous rules, making the Floor address wrong. Additional sed rules: sed -i -e 's/Place.*Suite .*, Boston/Street, Fifth Floor, Boston/g' sed -i -e 's/Suite .*, Boston/Fifth Floor, Boston/g'
* Update FSF addressMichal Schorm2019-05-102-3/+3
| | | | | | | | | | | | | | | This commit is based on the work of Michal Schorm, rebased on the earliest MariaDB version. Th command line used to generate this diff was: find ./ -type f \ -exec sed -i -e 's/Foundation, Inc., 59 Temple Place, Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/Foundation, Inc. 59 Temple Place.* Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/MA.*.....-1307.*USA/MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/Foundation, Inc., 59 Temple/Foundation, Inc., 51 Franklin/g' {} \; \ -exec sed -i -e 's/Place, Suite 330, Boston, MA.*02111-1307.*USA/Street, Fifth Floor, Boston, MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/MA.*.....-1307/MA 02110-1335/g' {} \;
* MDEV-18506 MSI can't be built if MFC package is not installed with Visual StudioVladislav Vaintroub2019-02-071-2/+3
| | | | | | | | candle.exe's preprocessor flags (-dHaveUpgradeWizard=0 -DHaveInnodb=1) were not passed correctly to EXECUTE_PROCESS Fix is to make a list out of the EXTRA_WIX_PREPROCESSOR_FLAGS string, and use the preprocessor flags list in EXECUTE_PROCESS.
* MDEV-18254 upgrade HeidiSQL to 9.5Vladislav Vaintroub2019-01-151-1/+1
|
* MDEV-14446 followupVladislav Vaintroub2018-01-181-0/+0
| | | | Fix WinUIDialogBmp.jpg to use correct dimensions
* MDEV-14446 Windows installer still uses the old brown logoVladislav Vaintroub2018-01-182-0/+0
| | | | Use new grey logo.
* Windows : Fix packaging when building with VS2017Vladislav Vaintroub2017-03-131-1/+1
|
* MDEV-11214 Windows : MSI installation fails, if run by a service user (e.g ↵Vladislav Vaintroub2016-11-031-1/+16
| | | | | | | | LocalSystem) Skip permission for data directory for LogonUser, if installation runs by one of the service accounts (determined from their well-known SID). There is no real LogonUser in this case.
* MDEV-11157 Windows - Upgrade installer to use HeidiSQL 9.4Vladislav Vaintroub2016-10-272-4/+12
|
* Windows packaging : use /d switch to sign MSI, to prevent installer showing ↵Vladislav Vaintroub2016-08-191-0/+1
| | | | randomly generated name in UAC prompt
* Windows : fix search for WiX root directory when using 64bit cmakeVladislav Vaintroub2016-08-111-4/+7
| | | | | "C:\Program Files (x86)" directory needs to be checked as well in this case.
* MDEV-10117 - update HeidiSQL to current versionVladislav Vaintroub2016-05-241-1/+1
|
* MDEV-10071 Block installation on XP/Windows 2003 Server(they are no more ↵Vladislav Vaintroub2016-05-241-0/+3
| | | | supported)
* MDEV-10108 Fix errors in installations by domain userVladislav Vaintroub2016-05-241-1/+3
|
* MDEV-9973 : Do not set permissions for serviceaccount user (Win7 and later)Vladislav Vaintroub2016-04-271-11/+0
| | | | | This appears to break some installation, and it did not do anything useful anyway.
* MDEV-9024 Build fails with VS2015Sergei Golubchik2016-02-062-57/+45
| | | | | | | | | | | | | | | | | | | | | | | cherry-pick f1daf9ce from 10.0 branch ------------------------------------- Fix build failures caused by new C runtime library - isnan, snprintf, struct timespec are now defined, attempt to redefine them leads - P_tmpdir, tzname are no more defined - lfind() and lsearch() in lf_hash.c had to be renamed, declaration conflicts with some C runtime functions with the same name declared in a header included by stdlib.h Also fix couple of annoying warnings : - remove #define NOMINMAX from config.h to avoid "redefined" compiler warnings(NOMINMAX is already in compile flags) - disable incremental linker in Debug as well (feature not used much and compiler crashes often) Also simplify package building with Wix, require Wix 3.9 or later (VS2015 is not compatible with old Wix 3.5/3.6)
* fixes for buildbot:mariadb-5.5.46Sergei Golubchik2015-10-091-0/+2
| | | | | | * OSX (mysqlimport freeing unallocated memory) * Windows (didn't compile MSI) * fulltest2 (innodb crashes in --embedded --big)
* Fix win/ files to be stored with LF in repositoryVicentiu Ciorbaru2015-05-0816-1890/+1890
| | | | | On Windows, the files get checked out with CRLF thanks to .gitattributes.
* MDEV-7290 please update MSI installer to include HeidiSQL 9.1Sergei Golubchik2015-02-112-2/+28
|
* MDEV-6891: Update company nameNirbhay Choubey2014-12-121-1/+1
|
* MDEV-6271 update MSI installer to include latest Version of HeidiSQL (8.3.x.x)Sergei Golubchik2014-05-271-2/+2
|
* remove start menu shortcut to upgrade wizardVladislav Vaintroub2013-05-191-0/+2
|
* MDEV-4544 : Update MSI installer to use latest HeidiSQL 8.0Vladislav Vaintroub2013-05-191-1/+1
|
* Small mysql_install_db.exe fixesVladislav Vaintroub2013-05-091-1/+1
| | | | | - Use lc-messages-dir instead of deprecated --language when running mysqld in bootstrap mode. - Add some verbosity to mysql_install_db.exe when it runs in course of MSI installation.
* MDEV-4458 - Windows installer does not launch upgrade wizard anymore, even ↵Vladislav Vaintroub2013-04-302-5/+8
| | | | | | | if there are upgradable instances (i.e windows service of lower MariaDB/MySQL version) The main reason for he error is misplaced ADD_DIRECTORY in top-level CMakeLists.txt. ADD_DIRECTORY(win/packaging) was places before win/upgrade_wizard, and MSI was not able to detect that upgrade wizard was built, and thus excluded upgrade wizard entirely.
* 5.3 mergeSergei Golubchik2013-01-151-0/+1
|\
| * 5.2->5.3 mergeSergei Golubchik2013-01-101-0/+1
| |\
| | * mergeVladislav Vaintroub2012-12-211-0/+1
| | |\
| | | * Support VS2012. Exclude compiler-defined symbols from being exported by ↵Vladislav Vaintroub2012-12-211-0/+1
| | | | | | | | | | | | | | | | mysqld.exe
* | | | MDEV-3993 - add MSI installer option to set character-set-server=utf8Vladislav Vaintroub2013-01-011-0/+20
| | | |
* | | | 5.3 mergeSergei Golubchik2012-08-271-1/+1
|\ \ \ \ | |/ / /
| * | | Merge from 5.2.unknown2012-08-241-1/+1
| |\ \ \ | | |/ /
| | * | MDEV-484 : allow compilation/packaging on Windows with newly released VS2012Vladislav Vaintroub2012-08-241-1/+1
| | | |
* | | | MSI package: always install new component "Common" (currently consists of ↵Vladislav Vaintroub2012-05-301-1/+2
| | | | | | | | | | | | | | | | charset directory)
* | | | mergeSergei Golubchik2012-05-052-2/+15
|\ \ \ \
| * \ \ \ 5.3 mergeSergei Golubchik2012-05-042-2/+15
| |\ \ \ \ | | |/ / /
| | * | | mergeVladislav Vaintroub2012-05-022-2/+15
| | |\ \ \ | | | |/ /
| | | * | MDEV233 - Support Wix3.6 for MSIVladislav Vaintroub2012-04-252-2/+15
| | | | |
* | | | | support same version upgrade for MSIVladislav Vaintroub2012-05-042-4/+7
|/ / / /
* | | | mergeVladislav Vaintroub2012-04-172-3/+89
|\ \ \ \ | |/ / /
| * | | mergeVladislav Vaintroub2012-04-161-6/+7
| |\ \ \ | | |/ /
| | * | fix compiler warningsVladislav Vaintroub2012-04-161-6/+7
| | | |
| * | | mergeVladislav Vaintroub2012-04-162-3/+88
| |\ \ \ | | |/ /
| | * | MDEV-221 - Properly escape command line when starting mysql_install_db Vladislav Vaintroub2012-04-162-3/+88
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | since password characters can contain quotes or spaces. The proper quoting method for command line arguments used here was extracted from http://blogs.msdn.com/b/twistylittlepassagesallalike/archive/2011/04/23/everyone-quotes-arguments-the-wrong-way.aspx Additionally, mysql_install_db.exe now passes root password to "mysqld.exe --bootstrap" in hexadecimal form, to handle potential special chars inside password string literal.
* | | | Add minimal clarication about 'root' user to the installer UIVladislav Vaintroub2012-04-151-2/+2
| | | |
* | | | Merge 5.3->5.5Igor Babaev2012-03-172-3/+8
|\ \ \ \ | |/ / /
| * | | Merge 5.2->5.3unknown2012-03-142-3/+8
| |\ \ \ | | |/ /
| | * | LP947631: Uninstall wipes HeidiSQL settings, even if HeidiSQL is installed ↵Vladislav Vaintroub2012-03-062-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prior to MariaDB Fixed detection of installed HeidiSQL in the machine, prevent installing own copy if HeidiSQL is already installed. On deinstallation, do not remove settings if official HeidiSQL is detected.
* | | | 5.3.4 mergeSergei Golubchik2012-02-151-1/+1
|\ \ \ \ | |/ / /
| * | | mergeVladislav Vaintroub2012-02-121-1/+1
| |\ \ \ | | |/ /