The port currently doesn't compile, always bombing with something like this, although not always at the same percentage completion: > [ 79%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/__/sql/sql_lex_hints.cc.o > [ 79%] Building CXX object libmysqld/CMakeFiles/sql_embedded.dir/sql_hints.yy.cc.o > [ 79%] Linking CXX static library libsql_embedded.a > [ 80%] Built target sql_embedded > 1 error > *** [all] Error code 2 > 1 error > ===> Compilation failed unexpectedly. > Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. > *** [do-build] Error code 1 > > Stop in /usr/ports/databases/mysql57-server. > *** [stage] Error code 1 > > Stop in /usr/ports/databases/mysql57-server. Doing the MAKE_JOBS_UNSAFE=yes thing reveals this error: > /usr/ports/databases/mysql57-server/work/mysql-5.7.12/rapid/plugin/x/mysqlxtest_src/password_hasher.cc:135:3: error: use of undeclared identifier 'yaSSL' > yaSSL::RAND_bytes((unsigned char *) buffer, SCRAMBLE_LENGTH); Also a suspicious typo...no idea if it's related: > In file included from /usr/ports/databases/mysql57-server/work/mysql-5.7.12/sql/sql_alter_instance.cc:16: > /usr/ports/databases/mysql57-server/work/mysql-5.7.12/sql/sql_alter_instance.h:16:9: warning: 'SQL_ALTER_INSTANCE_INCLUDED' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] > #ifndef SQL_ALTER_INSTANCE_INCLUDED > ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > /usr/ports/databases/mysql57-server/work/mysql-5.7.12/sql/sql_alter_instance.h:17:9: note: 'SQL_ALTER_INSTNACE_INCLUDED' is defined here; did you mean 'SQL_ALTER_INSTANCE_INCLUDED'? > #define SQL_ALTER_INSTNACE_INCLUDED > ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > SQL_ALTER_INSTANCE_INCLUDED > In file included from /usr/ports/databases/mysql57-server/work/mysql-5.7.12/sql/sql_admin.cc:35: > /usr/ports/databases/mysql57-server/work/mysql-5.7.12/sql/sql_alter_instance.h:16:9: warning: 'SQL_ALTER_INSTANCE_INCLUDED' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] > #ifndef SQL_ALTER_INSTANCE_INCLUDED > ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > /usr/ports/databases/mysql57-server/work/mysql-5.7.12/sql/sql_alter_instance.h:17:9: note: 'SQL_ALTER_INSTNACE_INCLUDED' is defined here; did you mean 'SQL_ALTER_INSTANCE_INCLUDED'? > #define SQL_ALTER_INSTNACE_INCLUDED > ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > SQL_ALTER_INSTANCE_INCLUDED I can provide more debug details as needed.
*** Bug 210217 has been marked as a duplicate of this bug. ***
(In reply to Leif Velcro from comment #0) i've tested it in poudriere, i see no problem in "building" (on 93-amd64/i386, and also 10.3 and 11). Is you port-tree updated ? Can you provide more info ?
Port tree is updated. We've got about 660 ports, so interactions are potentially complicated. A complete portupgrade -af was done. # uname -a FreeBSD machine.domain.com 9.3-RELEASE-p43 FreeBSD 9.3-RELEASE-p43 #3: Fri Jun 3 20:53:22 EDT 2016 machine.domain.com:/usr/obj/usr/src/sys/machine amd64 It's actually at patch level 44 (via freebsd-update), but we haven't rebuilt the kernel yet, since mysql will stop working when machine reboots. Nothing special going on in the custom kernel, other than changing the name from GENERIC. Things were broken at patch level 43. Tried the freebsd-update just to see if it would do anything and it didn't change the behavior. Any suggestions for anything else to try? Maybe something related to yaSSL?
(In reply to Leif Velcro from comment #3) Since 2 or 3 updates ago, we've disabled YaSSL and forced it to be built using OpenSSL/LibreSSL (base and/or ports). So i don't think it's related to SSL. Can you please gimme complete build log, so that maybe i can help you more :) ?
Aside from the typo, there's the error above that says "use of undeclared identifier 'yaSSL'", so something yassly is going on there. Thanks, I'll send the whole build log to you.
The update to port which deals with changing from WITH_OPENSSL_PORT=yes to the new DEFAULT_VERSIONS construction in /etc/make.conf seems to have solved this issue, so it probably did have something to do with SSL. The SQL_ALTER_INSTNACE_INCLUDED typo is still in there (should probably be fixed?), but the port now compiles and seems to work.
Okay :) So i close it as fixed. Thanks for infos.