Created
January 6, 2020 04:29
-
-
Save adiwids/8f3804ada1ad893108c378fbc08cc0a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Ext::BuildError: ERROR: Failed to build gem native extension. | |
/Library/Ruby/rbenv/versions/2.2.7/bin/ruby -r | |
./siteconf20200106-70772-7jyxhc.rb extconf.rb | |
checking for ruby/thread.h... yes | |
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes | |
checking for rb_thread_blocking_region()... no | |
checking for rb_wait_for_single_fd()... yes | |
checking for rb_hash_dup()... yes | |
checking for rb_intern3()... yes | |
----- | |
Using mysql_config at /usr/local/bin/mysql_config | |
----- | |
checking for mysql.h... yes | |
checking for errmsg.h... yes | |
checking for mysqld_error.h... yes | |
----- | |
Setting rpath to /usr/local/Cellar/mysql/8.0.18_1/lib | |
----- | |
creating Makefile | |
make "DESTDIR=" clean | |
make "DESTDIR=" | |
compiling infile.c | |
compiling client.c | |
client.c:439:3: error: use of undeclared identifier 'my_bool' | |
my_bool res = mysql_read_query_result(client); | |
^ | |
client.c:441:19: error: use of undeclared identifier 'res' | |
return (void *)(res == 0 ? Qtrue : Qfalse); | |
^ | |
client.c:775:3: error: use of undeclared identifier 'my_bool' | |
my_bool boolval; | |
^ | |
client.c:806:7: error: use of undeclared identifier 'boolval' | |
boolval = (value == Qfalse ? 0 : 1); | |
^ | |
client.c:807:17: error: use of undeclared identifier 'boolval' | |
retval = &boolval; | |
^ | |
client.c:810:10: error: use of undeclared identifier 'MYSQL_SECURE_AUTH'; did | |
you mean 'MYSQL_DEFAULT_AUTH'? | |
case MYSQL_SECURE_AUTH: | |
^~~~~~~~~~~~~~~~~ | |
MYSQL_DEFAULT_AUTH | |
/usr/local/Cellar/mysql/8.0.18_1/include/mysql/mysql.h:187:3: note: | |
'MYSQL_DEFAULT_AUTH' declared here | |
MYSQL_DEFAULT_AUTH, | |
^ | |
client.c:811:7: error: use of undeclared identifier 'boolval' | |
boolval = (value == Qfalse ? 0 : 1); | |
^ | |
client.c:812:17: error: use of undeclared identifier 'boolval' | |
retval = &boolval; | |
^ | |
client.c:843:38: error: use of undeclared identifier 'boolval' | |
wrapper->reconnect_enabled = boolval; | |
^ | |
client.c:1198:38: error: use of undeclared identifier 'MYSQL_SECURE_AUTH'; did | |
you mean 'MYSQL_DEFAULT_AUTH'? | |
return _mysql_client_options(self, MYSQL_SECURE_AUTH, value); | |
^~~~~~~~~~~~~~~~~ | |
MYSQL_DEFAULT_AUTH | |
/usr/local/Cellar/mysql/8.0.18_1/include/mysql/mysql.h:187:3: note: | |
'MYSQL_DEFAULT_AUTH' declared here | |
MYSQL_DEFAULT_AUTH, | |
^ | |
10 errors generated. | |
make: *** [client.o] Error 1 | |
make failed, exit code 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment