| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| | |
Fix WinUIDialogBmp.jpg to use correct dimensions
|
| |
| |
| |
| | |
Use new grey logo.
|
| |
| |
| |
| |
| |
| |
| |
| | |
On failure, installer executes rollback actions, among them removing newly
created data directory with all files in it.
This patch makes installer at dump mariadb error log to installer log,
before removing the files. This should make troubleshooting a little easier.
|
| |
| |
| |
| |
| |
| | |
The workaround, an extra cmake calls, somehow makes the
connect/cmake_install.cmake to lose installation of connect-engine's
specific jar files.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
To export symbols from the mysqld.exe, use lib.exe with /DEF, rather than
pre-link step when building mysqld.exe.
This helps to avoid relinking all plugins, if mysqld.exe was recompiled
but the list of its exports has not changed.
Also removed unnecessary DEPENDS in some ADD_CUSTOM_COMMAND (gen_lex_token,
gen_lex_hash etc). They confuse VS generator which tends to
recreate headers and do unnecessary recompilations.
|
|\ \
| |/ |
|
| | |
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
|\ \
| |/ |
|
| |
| |
| |
| | |
randomly generated name in UAC prompt
|
| |
| |
| |
| |
| | |
"C:\Program Files (x86)" directory needs to be checked as well in
this case.
|
|\ \
| |/ |
|
| | |
|
| |
| |
| |
| | |
supported)
|
| | |
|
| |
| |
| |
| |
| | |
This appears to break some installation, and it did not do anything
useful anyway.
|
| |
| |
| |
| | |
installer. Do not lauch upgrade wizard after installation
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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)
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| | |
* OSX (mysqlimport freeing unallocated memory)
* Windows (didn't compile MSI)
* fulltest2 (innodb crashes in --embedded --big)
|
| |
| |
| |
| |
| |
| | |
Support for VS2013 and WiX 3.9
(patch by Andrey Kuznetsov)
|
|\ \
| |/ |
|
| |
| |
| |
| |
| | |
On Windows, the files get checked out with CRLF thanks
to .gitattributes.
|
| |
| |
| |
| |
| | |
On Windows, the files get checked out with CRLF thanks
to .gitattributes.
|
| | |
|
|\ \
| |/ |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
MySql server.
use the old registry branch, even if we changed the "manufacturer" string
|
| | |
|
|\ \
| |/ |
|
| | |
|
|\ \
| |/
| |
| | |
(without InnoDB - all InnoDB changes were ignored)
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
- 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.
|
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| |
| |
| | |
MSI package.
Rename connect_engine component back to connect-engine.
|
| |
| |
| |
| |
| |
| | |
Also, do not use /MP option when compiling CONNECT (incompatible with COM #import directive)
Also, fix ODBC_LIBRARY to be a list on Windows, not string with spaces inside.
|
|\ \
| |/ |
|
| |\ |
|
| | |\ |
|
| | | |\ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
mysqld.exe
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | | |
Also fixed a bug in sql_update.cc: the code of mysql_update() lacked
a call of set_statistics_for_table().
|