summaryrefslogtreecommitdiff
path: root/databases/mysql80-server/files/patch-icu68
blob: 89f0f9b4a54b986779dbbd46b84917c4790d8c51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844

sql/mysqld.cc:6915:30: error: use of undeclared identifier 'TRUE'
    my_getopt_skip_unknown = TRUE;
                             ^

--- sql/mysqld.cc.orig	2020-06-16 16:31:03 UTC
+++ sql/mysqld.cc
@@ -6910,7 +6912,7 @@ int mysqld_main(int argc, char **argv)
   if (opt_keyring_migration_source || opt_keyring_migration_destination ||
       migrate_connect_options) {
     Migrate_keyring mk;
-    my_getopt_skip_unknown = TRUE;
+    my_getopt_skip_unknown = true;
     if (mk.init(remaining_argc, remaining_argv, opt_keyring_migration_source,
                 opt_keyring_migration_destination, opt_keyring_migration_user,
                 opt_keyring_migration_host, opt_keyring_migration_password,