Server IP : 104.21.38.3 / Your IP : 172.69.176.137 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/install/CMakeFiles/ |
Upload File : |
Performing C SOURCE FILE Test HAVE_C_SHIFT_OR_OPTIMIZATION_BUG failed with the following compile output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_4e45a/fast && /bin/gmake -f CMakeFiles/cmTC_4e45a.dir/build.make CMakeFiles/cmTC_4e45a.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_4e45a.dir/src.c.o /bin/cc -DHAVE_C_SHIFT_OR_OPTIMIZATION_BUG -O3 -fexpensive-optimizations -o CMakeFiles/cmTC_4e45a.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_4e45a /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4e45a.dir/link.txt --verbose=1 /bin/cc -O3 -fexpensive-optimizations -rdynamic CMakeFiles/cmTC_4e45a.dir/src.c.o -o cmTC_4e45a gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' ...and run output: Return value: 1 Source file was: struct X { int i; unsigned short s; }; unsigned __attribute__((noinline)) f(struct X x) { return x.s | (x.i << 16); } int main() { struct X x; x.i = 0x00001234; x.s = 0x5678; unsigned y = f(x); /* Succeed (return 0) if compiler have bug */ return y == 0x12345678 ? 1 : 0; } Performing C++ SOURCE FILE Test HAVE_CXX_SHIFT_OR_OPTIMIZATION_BUG failed with the following compile output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_2c383/fast && /bin/gmake -f CMakeFiles/cmTC_2c383.dir/build.make CMakeFiles/cmTC_2c383.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_2c383.dir/src.cxx.o /bin/c++ -DHAVE_CXX_SHIFT_OR_OPTIMIZATION_BUG -O3 -fexpensive-optimizations -o CMakeFiles/cmTC_2c383.dir/src.cxx.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx Linking CXX executable cmTC_2c383 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c383.dir/link.txt --verbose=1 /bin/c++ -O3 -fexpensive-optimizations -rdynamic CMakeFiles/cmTC_2c383.dir/src.cxx.o -o cmTC_2c383 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' ...and run output: Return value: 1 Source file was: struct X { int i; unsigned short s; }; unsigned __attribute__((noinline)) f(struct X x) { return x.s | (x.i << 16); } int main() { struct X x; x.i = 0x00001234; x.s = 0x5678; unsigned y = f(x); /* Succeed (return 0) if compiler have bug */ return y == 0x12345678 ? 1 : 0; } Performing C SOURCE FILE Test HAVE_C_FLOATING_POINT_FUSED_MADD failed with the following compile output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_df038/fast && /bin/gmake -f CMakeFiles/cmTC_df038.dir/build.make CMakeFiles/cmTC_df038.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_df038.dir/src.c.o /bin/cc -DHAVE_C_FLOATING_POINT_FUSED_MADD -O3 -o CMakeFiles/cmTC_df038.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_df038 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_df038.dir/link.txt --verbose=1 /bin/cc -O3 -rdynamic CMakeFiles/cmTC_df038.dir/src.c.o -o cmTC_df038 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' ...and run output: Return value: 1 Source file was: int main (int argc, char **argv) { double n[21] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1,1 }; double m= 0, s= 0; int i; for(i= 0; i < 21; i++) { double m_kminusone= m; m= m_kminusone + (n[i] - m_kminusone) / (double) (i + 2); s= s + (n[i] - m_kminusone) * (n[i] - m); } /* s should now be either 5e 74 d1 45 17 5d 14 40 or 40 14 5d 17 45 d1 74 5e, depending on endianness. If the floating point operations are optimized with fused multiply-add instructions, the least significant byte is 5d instead of 5e. */ return (*(unsigned char*)(&s) == 0x5e || *((unsigned char*)(&s) + 7) == 0x5e); } Performing C++ SOURCE FILE Test HAVE_CXX_FLOATING_POINT_FUSED_MADD failed with the following compile output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_0e03d/fast && /bin/gmake -f CMakeFiles/cmTC_0e03d.dir/build.make CMakeFiles/cmTC_0e03d.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_0e03d.dir/src.cxx.o /bin/c++ -DHAVE_CXX_FLOATING_POINT_FUSED_MADD -O3 -o CMakeFiles/cmTC_0e03d.dir/src.cxx.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx Linking CXX executable cmTC_0e03d /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0e03d.dir/link.txt --verbose=1 /bin/c++ -O3 -rdynamic CMakeFiles/cmTC_0e03d.dir/src.cxx.o -o cmTC_0e03d gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' ...and run output: Return value: 1 Source file was: int main (int argc, char **argv) { double n[21] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1,1 }; double m= 0, s= 0; int i; for(i= 0; i < 21; i++) { double m_kminusone= m; m= m_kminusone + (n[i] - m_kminusone) / (double) (i + 2); s= s + (n[i] - m_kminusone) * (n[i] - m); } /* s should now be either 5e 74 d1 45 17 5d 14 40 or 40 14 5d 17 45 d1 74 5e, depending on endianness. If the floating point operations are optimized with fused multiply-add instructions, the least significant byte is 5d instead of 5e. */ return (*(unsigned char*)(&s) == 0x5e || *((unsigned char*)(&s) + 7) == 0x5e); } Performing C++ SOURCE FILE Test HAVE_LLVM_LIBCPP failed with the following compile output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_e4212/fast && /bin/gmake -f CMakeFiles/cmTC_e4212.dir/build.make CMakeFiles/cmTC_e4212.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_e4212.dir/src.cxx.o /bin/c++ -DHAVE_LLVM_LIBCPP -fPIC -std=gnu++03 -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_e4212.dir/src.cxx.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx Linking CXX executable cmTC_e4212 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e4212.dir/link.txt --verbose=1 /bin/c++ -fPIC -std=gnu++03 -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -rdynamic CMakeFiles/cmTC_e4212.dir/src.cxx.o -o cmTC_e4212 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' ...and run output: Return value: 1 Source file was: #include <ciso646> int main() { #ifdef _LIBCPP_VERSION return 0; #else return 1; #endif } Determining if the function floor exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c012e/fast && /bin/gmake -f CMakeFiles/cmTC_c012e.dir/build.make CMakeFiles/cmTC_c012e.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c012e.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=floor -o CMakeFiles/cmTC_c012e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c <command-line>: warning: conflicting types for built-in function ‘floor’; expected ‘double(double)’ [-Wbuiltin-declaration-mismatch] /usr/share/cmake-3.22/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’ 7 | CHECK_FUNCTION_EXISTS(void); | ^~~~~~~~~~~~~~~~~~~~~ /usr/share/cmake-3.22/Modules/CheckFunctionExists.c:1:1: note: ‘floor’ is declared in header ‘<math.h>’ +++ |+#include <math.h> 1 | #ifdef CHECK_FUNCTION_EXISTS Linking C executable cmTC_c012e /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c012e.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=floor -rdynamic CMakeFiles/cmTC_c012e.dir/CheckFunctionExists.c.o -o cmTC_c012e /bin/ld: CMakeFiles/cmTC_c012e.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `floor' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_c012e.dir/build.make:99: cmTC_c012e] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c012e/fast] Error 2 Determining if the function crypt exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_2ec56/fast && /bin/gmake -f CMakeFiles/cmTC_2ec56.dir/build.make CMakeFiles/cmTC_2ec56.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2ec56.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=crypt -o CMakeFiles/cmTC_2ec56.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_2ec56 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2ec56.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=crypt -rdynamic CMakeFiles/cmTC_2ec56.dir/CheckFunctionExists.c.o -o cmTC_2ec56 /bin/ld: CMakeFiles/cmTC_2ec56.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `crypt' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_2ec56.dir/build.make:99: cmTC_2ec56] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_2ec56/fast] Error 2 Determining if the function atomic_thread_fence exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_be552/fast && /bin/gmake -f CMakeFiles/cmTC_be552.dir/build.make CMakeFiles/cmTC_be552.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_be552.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=atomic_thread_fence -o CMakeFiles/cmTC_be552.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_be552 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_be552.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=atomic_thread_fence -rdynamic CMakeFiles/cmTC_be552.dir/CheckFunctionExists.c.o -o cmTC_be552 /bin/ld: CMakeFiles/cmTC_be552.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `atomic_thread_fence' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_be552.dir/build.make:99: cmTC_be552] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_be552/fast] Error 2 Determining if files ieeefp.h exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_f9176/fast && /bin/gmake -f CMakeFiles/cmTC_f9176.dir/build.make CMakeFiles/cmTC_f9176.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_f9176.dir/HAVE_IEEEFP_H.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_f9176.dir/HAVE_IEEEFP_H.c.o -c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_IEEEFP_H.c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_IEEEFP_H.c:2:10: fatal error: ieeefp.h: No such file or directory 2 | #include <ieeefp.h> | ^~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_f9176.dir/build.make:78: CMakeFiles/cmTC_f9176.dir/HAVE_IEEEFP_H.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_f9176/fast] Error 2 Source: /* */ #include <ieeefp.h> int main(void){return 0;} Determining if files sys/devpoll.h exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_aa46a/fast && /bin/gmake -f CMakeFiles/cmTC_aa46a.dir/build.make CMakeFiles/cmTC_aa46a.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_aa46a.dir/HAVE_DEVPOLL.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_aa46a.dir/HAVE_DEVPOLL.c.o -c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_DEVPOLL.c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_DEVPOLL.c:2:10: fatal error: sys/devpoll.h: No such file or directory 2 | #include <sys/devpoll.h> | ^~~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_aa46a.dir/build.make:78: CMakeFiles/cmTC_aa46a.dir/HAVE_DEVPOLL.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_aa46a/fast] Error 2 Source: /* */ #include <sys/devpoll.h> int main(void){return 0;} Determining if the function _aligned_malloc exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_60887/fast && /bin/gmake -f CMakeFiles/cmTC_60887.dir/build.make CMakeFiles/cmTC_60887.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_60887.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=_aligned_malloc -o CMakeFiles/cmTC_60887.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_60887 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_60887.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=_aligned_malloc -rdynamic CMakeFiles/cmTC_60887.dir/CheckFunctionExists.c.o -o cmTC_60887 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_60887.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `_aligned_malloc' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_60887.dir/build.make:99: cmTC_60887] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_60887/fast] Error 2 Determining if the function printstack exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_b5430/fast && /bin/gmake -f CMakeFiles/cmTC_b5430.dir/build.make CMakeFiles/cmTC_b5430.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_b5430.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=printstack -o CMakeFiles/cmTC_b5430.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_b5430 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b5430.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=printstack -rdynamic CMakeFiles/cmTC_b5430.dir/CheckFunctionExists.c.o -o cmTC_b5430 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_b5430.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `printstack' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_b5430.dir/build.make:99: cmTC_b5430] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_b5430/fast] Error 2 Determining if the function directio exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_0795d/fast && /bin/gmake -f CMakeFiles/cmTC_0795d.dir/build.make CMakeFiles/cmTC_0795d.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0795d.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=directio -o CMakeFiles/cmTC_0795d.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_0795d /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0795d.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=directio -rdynamic CMakeFiles/cmTC_0795d.dir/CheckFunctionExists.c.o -o cmTC_0795d -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_0795d.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `directio' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_0795d.dir/build.make:99: cmTC_0795d] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_0795d/fast] Error 2 Determining if the function compress exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_66a46/fast && /bin/gmake -f CMakeFiles/cmTC_66a46.dir/build.make CMakeFiles/cmTC_66a46.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_66a46.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=compress -o CMakeFiles/cmTC_66a46.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_66a46 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_66a46.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=compress -rdynamic CMakeFiles/cmTC_66a46.dir/CheckFunctionExists.c.o -o cmTC_66a46 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_66a46.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `compress' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_66a46.dir/build.make:99: cmTC_66a46] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_66a46/fast] Error 2 Determining if the function gethrtime exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_62d9e/fast && /bin/gmake -f CMakeFiles/cmTC_62d9e.dir/build.make CMakeFiles/cmTC_62d9e.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_62d9e.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=gethrtime -o CMakeFiles/cmTC_62d9e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_62d9e /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_62d9e.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=gethrtime -rdynamic CMakeFiles/cmTC_62d9e.dir/CheckFunctionExists.c.o -o cmTC_62d9e -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_62d9e.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `gethrtime' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_62d9e.dir/build.make:99: cmTC_62d9e] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_62d9e/fast] Error 2 Determining if the function getpassphrase exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c65ec/fast && /bin/gmake -f CMakeFiles/cmTC_c65ec.dir/build.make CMakeFiles/cmTC_c65ec.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c65ec.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=getpassphrase -o CMakeFiles/cmTC_c65ec.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_c65ec /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c65ec.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=getpassphrase -rdynamic CMakeFiles/cmTC_c65ec.dir/CheckFunctionExists.c.o -o cmTC_c65ec -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_c65ec.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `getpassphrase' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_c65ec.dir/build.make:99: cmTC_c65ec] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c65ec/fast] Error 2 Determining if the function issetugid exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_aa529/fast && /bin/gmake -f CMakeFiles/cmTC_aa529.dir/build.make CMakeFiles/cmTC_aa529.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_aa529.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=issetugid -o CMakeFiles/cmTC_aa529.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_aa529 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aa529.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=issetugid -rdynamic CMakeFiles/cmTC_aa529.dir/CheckFunctionExists.c.o -o cmTC_aa529 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_aa529.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `issetugid' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_aa529.dir/build.make:99: cmTC_aa529] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_aa529/fast] Error 2 Determining if the function setfd exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_fb38a/fast && /bin/gmake -f CMakeFiles/cmTC_fb38a.dir/build.make CMakeFiles/cmTC_fb38a.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_fb38a.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=setfd -o CMakeFiles/cmTC_fb38a.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_fb38a /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fb38a.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=setfd -rdynamic CMakeFiles/cmTC_fb38a.dir/CheckFunctionExists.c.o -o cmTC_fb38a -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_fb38a.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `setfd' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_fb38a.dir/build.make:99: cmTC_fb38a] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_fb38a/fast] Error 2 Determining if the function strlcpy exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_b074a/fast && /bin/gmake -f CMakeFiles/cmTC_b074a.dir/build.make CMakeFiles/cmTC_b074a.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_b074a.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=strlcpy -o CMakeFiles/cmTC_b074a.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_b074a /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b074a.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=strlcpy -rdynamic CMakeFiles/cmTC_b074a.dir/CheckFunctionExists.c.o -o cmTC_b074a -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_b074a.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `strlcpy' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_b074a.dir/build.make:99: cmTC_b074a] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_b074a/fast] Error 2 Determining if the function strlcat exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_fa622/fast && /bin/gmake -f CMakeFiles/cmTC_fa622.dir/build.make CMakeFiles/cmTC_fa622.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_fa622.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=strlcat -o CMakeFiles/cmTC_fa622.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_fa622 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fa622.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=strlcat -rdynamic CMakeFiles/cmTC_fa622.dir/CheckFunctionExists.c.o -o cmTC_fa622 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_fa622.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `strlcat' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_fa622.dir/build.make:99: cmTC_fa622] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_fa622/fast] Error 2 Determining if the function fgetln exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_1460c/fast && /bin/gmake -f CMakeFiles/cmTC_1460c.dir/build.make CMakeFiles/cmTC_1460c.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_1460c.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=fgetln -o CMakeFiles/cmTC_1460c.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_1460c /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1460c.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=fgetln -rdynamic CMakeFiles/cmTC_1460c.dir/CheckFunctionExists.c.o -o cmTC_1460c -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_1460c.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `fgetln' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_1460c.dir/build.make:99: cmTC_1460c] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_1460c/fast] Error 2 Determining if the function tell exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_88a36/fast && /bin/gmake -f CMakeFiles/cmTC_88a36.dir/build.make CMakeFiles/cmTC_88a36.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_88a36.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=tell -o CMakeFiles/cmTC_88a36.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_88a36 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_88a36.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=tell -rdynamic CMakeFiles/cmTC_88a36.dir/CheckFunctionExists.c.o -o cmTC_88a36 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_88a36.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `tell' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_88a36.dir/build.make:99: cmTC_88a36] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_88a36/fast] Error 2 Determining if the function ntohll exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_58dc5/fast && /bin/gmake -f CMakeFiles/cmTC_58dc5.dir/build.make CMakeFiles/cmTC_58dc5.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_58dc5.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=ntohll -o CMakeFiles/cmTC_58dc5.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_58dc5 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_58dc5.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=ntohll -rdynamic CMakeFiles/cmTC_58dc5.dir/CheckFunctionExists.c.o -o cmTC_58dc5 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_58dc5.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `ntohll' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_58dc5.dir/build.make:99: cmTC_58dc5] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_58dc5/fast] Error 2 Determining if the function kqueue exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c81de/fast && /bin/gmake -f CMakeFiles/cmTC_c81de.dir/build.make CMakeFiles/cmTC_c81de.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c81de.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=kqueue -o CMakeFiles/cmTC_c81de.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_c81de /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c81de.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=kqueue -rdynamic CMakeFiles/cmTC_c81de.dir/CheckFunctionExists.c.o -o cmTC_c81de -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_c81de.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `kqueue' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_c81de.dir/build.make:99: cmTC_c81de] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c81de/fast] Error 2 Determining if the FIONREAD exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_1630e/fast && /bin/gmake -f CMakeFiles/cmTC_1630e.dir/build.make CMakeFiles/cmTC_1630e.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_1630e.dir/CheckSymbolExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_1630e.dir/CheckSymbolExists.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: sys/filio.h: No such file or directory 2 | #include <sys/filio.h> | ^~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_1630e.dir/build.make:78: CMakeFiles/cmTC_1630e.dir/CheckSymbolExists.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_1630e/fast] Error 2 File /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include <sys/filio.h> int main(int argc, char** argv) { (void)argv; #ifndef FIONREAD return ((int*)(&FIONREAD))[argc]; #else (void)argc; return 0; #endif } Determining if the SIGEV_PORT exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_92584/fast && /bin/gmake -f CMakeFiles/cmTC_92584.dir/build.make CMakeFiles/cmTC_92584.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_92584.dir/CheckSymbolExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_92584.dir/CheckSymbolExists.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c:4:10: fatal error: sys/siginfo.h: No such file or directory 4 | #include <sys/siginfo.h> | ^~~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_92584.dir/build.make:78: CMakeFiles/cmTC_92584.dir/CheckSymbolExists.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_92584/fast] Error 2 File /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include <signal.h> #include <time.h> #include <sys/siginfo.h> int main(int argc, char** argv) { (void)argv; #ifndef SIGEV_PORT return ((int*)(&SIGEV_PORT))[argc]; #else (void)argc; return 0; #endif } Determining if the function kqueue exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_9b1da/fast && /bin/gmake -f CMakeFiles/cmTC_9b1da.dir/build.make CMakeFiles/cmTC_9b1da.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_9b1da.dir/CheckFunctionExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=kqueue -o CMakeFiles/cmTC_9b1da.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_9b1da /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9b1da.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=kqueue -rdynamic CMakeFiles/cmTC_9b1da.dir/CheckFunctionExists.c.o -o cmTC_9b1da -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_9b1da.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `kqueue' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_9b1da.dir/build.make:99: cmTC_9b1da] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_9b1da/fast] Error 2 Determining if the EVFILT_TIMER exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_130cd/fast && /bin/gmake -f CMakeFiles/cmTC_130cd.dir/build.make CMakeFiles/cmTC_130cd.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_130cd.dir/CheckSymbolExists.c.o /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_130cd.dir/CheckSymbolExists.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c:3:10: fatal error: sys/event.h: No such file or directory 3 | #include <sys/event.h> | ^~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_130cd.dir/build.make:78: CMakeFiles/cmTC_130cd.dir/CheckSymbolExists.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_130cd/fast] Error 2 File /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckSymbolExists.c: /* */ #include <sys/types.h> #include <sys/event.h> #include <sys/time.h> int main(int argc, char** argv) { (void)argv; #ifndef EVFILT_TIMER return ((int*)(&EVFILT_TIMER))[argc]; #else (void)argc; return 0; #endif } Determining if the include file netinet/in6.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_af1a5/fast && /bin/gmake -f CMakeFiles/cmTC_af1a5.dir/build.make CMakeFiles/cmTC_af1a5.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_af1a5.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_af1a5.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: netinet/in6.h: No such file or directory 1 | #include <netinet/in6.h> | ^~~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_af1a5.dir/build.make:78: CMakeFiles/cmTC_af1a5.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_af1a5/fast] Error 2 Performing C SOURCE FILE Test HAVE_SOCKADDR_IN_SIN_LEN failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_f7956/fast && /bin/gmake -f CMakeFiles/cmTC_f7956.dir/build.make CMakeFiles/cmTC_f7956.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_f7956.dir/src.c.o /bin/cc -DHAVE_SOCKADDR_IN_SIN_LEN -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_f7956.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:8:41: error: ‘struct sockaddr_in’ has no member named ‘sin_len’ 8 | (void)sizeof(((struct sockaddr_in *)0)->sin_len); | ^~ gmake[1]: *** [CMakeFiles/cmTC_f7956.dir/build.make:78: CMakeFiles/cmTC_f7956.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_f7956/fast] Error 2 Source file was: #include <sys/types.h> #include <netinet/in.h> #include <sys/socket.h> int main() { (void)sizeof(((struct sockaddr_in *)0)->sin_len); return 0; } Performing C SOURCE FILE Test HAVE_SOCKADDR_IN6_SIN6_LEN failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_84e94/fast && /bin/gmake -f CMakeFiles/cmTC_84e94.dir/build.make CMakeFiles/cmTC_84e94.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_84e94.dir/src.c.o /bin/cc -DHAVE_SOCKADDR_IN6_SIN6_LEN -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_84e94.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:8:42: error: ‘struct sockaddr_in6’ has no member named ‘sin6_len’ 8 | (void)sizeof(((struct sockaddr_in6 *)0)->sin6_len); | ^~ gmake[1]: *** [CMakeFiles/cmTC_84e94.dir/build.make:78: CMakeFiles/cmTC_84e94.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_84e94/fast] Error 2 Source file was: #include <sys/types.h> #include <netinet/in.h> #include <sys/socket.h> int main() { (void)sizeof(((struct sockaddr_in6 *)0)->sin6_len); return 0; } Performing C SOURCE FILE Test HAVE_PTHREAD_THREADID_NP failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_0808a/fast && /bin/gmake -f CMakeFiles/cmTC_0808a.dir/build.make CMakeFiles/cmTC_0808a.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0808a.dir/src.c.o /bin/cc -DHAVE_PTHREAD_THREADID_NP -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_0808a.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:3: warning: implicit declaration of function ‘pthread_threadid_np’ [-Wimplicit-function-declaration] 6 | pthread_threadid_np(NULL, &tid64); | ^~~~~~~~~~~~~~~~~~~ Linking C executable cmTC_0808a /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0808a.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -rdynamic CMakeFiles/cmTC_0808a.dir/src.c.o -o cmTC_0808a -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_0808a.dir/src.c.o: in function `main': src.c:(.text+0x34): undefined reference to `pthread_threadid_np' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_0808a.dir/build.make:99: cmTC_0808a] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_0808a/fast] Error 2 Source file was: #include <pthread.h> int main(int ac, char **av) { unsigned long long tid64; pthread_threadid_np(NULL, &tid64); return (tid64 != 0 ? 0 : 1); } Performing C++ SOURCE FILE Test HAVE_IMPLICIT_DEPENDENT_NAME_TYPING failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_f2acd/fast && /bin/gmake -f CMakeFiles/cmTC_f2acd.dir/build.make CMakeFiles/cmTC_f2acd.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_f2acd.dir/src.cxx.o /bin/c++ -DHAVE_IMPLICIT_DEPENDENT_NAME_TYPING -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -std=gnu++03 -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_f2acd.dir/src.cxx.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx: In member function ‘void ct2<T>::func()’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx:15:5: error: need ‘typename’ before ‘std::vector<T>::iterator’ because ‘std::vector<T>’ is a dependent scope 15 | std::vector<T>::iterator itr = vec.begin(); | ^~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx:15:29: error: expected ‘;’ before ‘itr’ 15 | std::vector<T>::iterator itr = vec.begin(); | ^~~~ | ; /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx: In instantiation of ‘void ct2<T>::func() [with T = double]’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx:21:12: required from here /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx:15:21: error: dependent-name ‘std::vector<T>::iterator’ is parsed as a non-type, but instantiation yields a type 15 | std::vector<T>::iterator itr = vec.begin(); | ^~~~~~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx:15:21: note: say ‘typename std::vector<T>::iterator’ if a type is meant gmake[1]: *** [CMakeFiles/cmTC_f2acd.dir/build.make:78: CMakeFiles/cmTC_f2acd.dir/src.cxx.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_f2acd/fast] Error 2 Source file was: #include <vector> template<typename T> class ct2 { public: typedef T type; void func(); }; template<typename T> void ct2<T>::func() { std::vector<T> vec; std::vector<T>::iterator itr = vec.begin(); } int main(int argc, char **argv) { ct2<double> o2; o2.func(); return 0; } Determining if files numa.h exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c592c/fast && /bin/gmake -f CMakeFiles/cmTC_c592c.dir/build.make CMakeFiles/cmTC_c592c.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c592c.dir/HAVE_NUMA_H.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_c592c.dir/HAVE_NUMA_H.c.o -c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_NUMA_H.c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_NUMA_H.c:2:10: fatal error: numa.h: No such file or directory 2 | #include <numa.h> | ^~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_c592c.dir/build.make:78: CMakeFiles/cmTC_c592c.dir/HAVE_NUMA_H.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c592c/fast] Error 2 Source: /* */ #include <numa.h> int main(void){return 0;} Determining if files numaif.h exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_7f9ff/fast && /bin/gmake -f CMakeFiles/cmTC_7f9ff.dir/build.make CMakeFiles/cmTC_7f9ff.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_7f9ff.dir/HAVE_NUMAIF_H.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_7f9ff.dir/HAVE_NUMAIF_H.c.o -c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_NUMAIF_H.c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_NUMAIF_H.c:2:10: fatal error: numaif.h: No such file or directory 2 | #include <numaif.h> | ^~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_7f9ff.dir/build.make:78: CMakeFiles/cmTC_7f9ff.dir/HAVE_NUMAIF_H.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_7f9ff/fast] Error 2 Source: /* */ #include <numaif.h> int main(void){return 0;} Determining size of socklen_t failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_f3a88/fast && /bin/gmake -f CMakeFiles/cmTC_f3a88.dir/build.make CMakeFiles/cmTC_f3a88.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_f3a88.dir/SIZEOF_SOCKLEN_T.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_f3a88.dir/SIZEOF_SOCKLEN_T.c.o -c /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:27:22: error: ‘socklen_t’ undeclared here (not in a function) 27 | #define SIZE (sizeof(socklen_t)) | ^~~~~~~~~ /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c:29:12: note: in expansion of macro ‘SIZE’ 29 | ('0' + ((SIZE / 10000)%10)), | ^~~~ gmake[1]: *** [CMakeFiles/cmTC_f3a88.dir/build.make:78: CMakeFiles/cmTC_f3a88.dir/SIZEOF_SOCKLEN_T.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_f3a88/fast] Error 2 /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/SIZEOF_SOCKLEN_T.c: #include <sys/types.h> #include <stdint.h> #include <stddef.h> #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__PPC64__) # define KEY '_','_','P','P','C','6','4','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__PPC__) # define KEY '_','_','P','P','C','_','_' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(socklen_t)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Performing C SOURCE FILE Test HAVE_GETPW_R_DRAFT failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_0faf5/fast && /bin/gmake -f CMakeFiles/cmTC_0faf5.dir/build.make CMakeFiles/cmTC_0faf5.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0faf5.dir/src.c.o /bin/cc -DHAVE_GETPW_R_DRAFT -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_0faf5.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:26: error: too few arguments to function ‘getpwnam_r’ 6 | struct passwd *pwd = getpwnam_r(NULL, NULL, NULL, 0); | ^~~~~~~~~~ In file included from /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:4: /usr/include/pwd.h:153:12: note: declared here 153 | extern int getpwnam_r (const char *__restrict __name, | ^~~~~~~~~~ gmake[1]: *** [CMakeFiles/cmTC_0faf5.dir/build.make:78: CMakeFiles/cmTC_0faf5.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_0faf5/fast] Error 2 Source file was: #include <stdlib.h> #include <sys/types.h> #include <pwd.h> int main() { struct passwd *pwd = getpwnam_r(NULL, NULL, NULL, 0); return pwd != NULL; } Determining if the function vis exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_ee19f/fast && /bin/gmake -f CMakeFiles/cmTC_ee19f.dir/build.make CMakeFiles/cmTC_ee19f.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_ee19f.dir/CheckFunctionExists.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=vis -o CMakeFiles/cmTC_ee19f.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_ee19f /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ee19f.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=vis -rdynamic CMakeFiles/cmTC_ee19f.dir/CheckFunctionExists.c.o -o cmTC_ee19f -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_ee19f.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `vis' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_ee19f.dir/build.make:99: cmTC_ee19f] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_ee19f/fast] Error 2 Determining if the function unvis exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_b2171/fast && /bin/gmake -f CMakeFiles/cmTC_b2171.dir/build.make CMakeFiles/cmTC_b2171.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_b2171.dir/CheckFunctionExists.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=unvis -o CMakeFiles/cmTC_b2171.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_b2171 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b2171.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=unvis -rdynamic CMakeFiles/cmTC_b2171.dir/CheckFunctionExists.c.o -o cmTC_b2171 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_b2171.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `unvis' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_b2171.dir/build.make:99: cmTC_b2171] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_b2171/fast] Error 2 Determining if the function __secure_getenv exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_d0972/fast && /bin/gmake -f CMakeFiles/cmTC_d0972.dir/build.make CMakeFiles/cmTC_d0972.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_d0972.dir/CheckFunctionExists.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=__secure_getenv -o CMakeFiles/cmTC_d0972.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_d0972 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d0972.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DCHECK_FUNCTION_EXISTS=__secure_getenv -rdynamic CMakeFiles/cmTC_d0972.dir/CheckFunctionExists.c.o -o cmTC_d0972 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_d0972.dir/CheckFunctionExists.c.o: in function `main': CheckFunctionExists.c:(.text+0x14): undefined reference to `__secure_getenv' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_d0972.dir/build.make:99: cmTC_d0972] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_d0972/fast] Error 2 Performing C SOURCE FILE Test HAVE_USE_AFTER_FREE failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_224a2/fast && /bin/gmake -f CMakeFiles/cmTC_224a2.dir/build.make CMakeFiles/cmTC_224a2.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_224a2.dir/src.c.o /bin/cc -DHAVE_USE_AFTER_FREE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wuse-after-free -o CMakeFiles/cmTC_224a2.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c cc: error: unrecognized command-line option ‘-Wuse-after-free’ gmake[1]: *** [CMakeFiles/cmTC_224a2.dir/build.make:78: CMakeFiles/cmTC_224a2.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_224a2/fast] Error 2 Source file was: int main(void) { return 0; } Determining if the include file netinet/in6.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c2f53/fast && /bin/gmake -f CMakeFiles/cmTC_c2f53.dir/build.make CMakeFiles/cmTC_c2f53.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c2f53.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_c2f53.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: netinet/in6.h: No such file or directory 1 | #include <netinet/in6.h> | ^~~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_c2f53.dir/build.make:78: CMakeFiles/cmTC_c2f53.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c2f53/fast] Error 2 Determining if the include file port.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_eb2f5/fast && /bin/gmake -f CMakeFiles/cmTC_eb2f5.dir/build.make CMakeFiles/cmTC_eb2f5.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_eb2f5.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_eb2f5.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: port.h: No such file or directory 1 | #include <port.h> | ^~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_eb2f5.dir/build.make:78: CMakeFiles/cmTC_eb2f5.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_eb2f5/fast] Error 2 Determining if the include file sys/devpoll.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_b5cd1/fast && /bin/gmake -f CMakeFiles/cmTC_b5cd1.dir/build.make CMakeFiles/cmTC_b5cd1.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_b5cd1.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_b5cd1.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: sys/devpoll.h: No such file or directory 1 | #include <sys/devpoll.h> | ^~~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_b5cd1.dir/build.make:78: CMakeFiles/cmTC_b5cd1.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_b5cd1/fast] Error 2 Determining if the include file sys/event.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_08fae/fast && /bin/gmake -f CMakeFiles/cmTC_08fae.dir/build.make CMakeFiles/cmTC_08fae.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_08fae.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_08fae.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: sys/event.h: No such file or directory 1 | #include <sys/event.h> | ^~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_08fae.dir/build.make:78: CMakeFiles/cmTC_08fae.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_08fae/fast] Error 2 Determining if the include file mach/mach_time.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_86864/fast && /bin/gmake -f CMakeFiles/cmTC_86864.dir/build.make CMakeFiles/cmTC_86864.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_86864.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_86864.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: mach/mach_time.h: No such file or directory 1 | #include <mach/mach_time.h> | ^~~~~~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_86864.dir/build.make:78: CMakeFiles/cmTC_86864.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_86864/fast] Error 2 Determining if the include file sys/sysctl.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_ae275/fast && /bin/gmake -f CMakeFiles/cmTC_ae275.dir/build.make CMakeFiles/cmTC_ae275.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_ae275.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_ae275.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: sys/sysctl.h: No such file or directory 1 | #include <sys/sysctl.h> | ^~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_ae275.dir/build.make:78: CMakeFiles/cmTC_ae275.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_ae275/fast] Error 2 Determining if the function kqueue exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_2c025/fast && /bin/gmake -f CMakeFiles/cmTC_2c025.dir/build.make CMakeFiles/cmTC_2c025.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_2c025.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=kqueue -o CMakeFiles/cmTC_2c025.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_2c025 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c025.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=kqueue -rdynamic CMakeFiles/cmTC_2c025.dir/CheckFunctionExistsEx.c.o -o cmTC_2c025 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_2c025.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `kqueue' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_2c025.dir/build.make:99: cmTC_2c025] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_2c025/fast] Error 2 Determining if the function port_create exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_bf27f/fast && /bin/gmake -f CMakeFiles/cmTC_bf27f.dir/build.make CMakeFiles/cmTC_bf27f.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_bf27f.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=port_create -o CMakeFiles/cmTC_bf27f.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_bf27f /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf27f.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=port_create -rdynamic CMakeFiles/cmTC_bf27f.dir/CheckFunctionExistsEx.c.o -o cmTC_bf27f -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_bf27f.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `port_create' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_bf27f.dir/build.make:99: cmTC_bf27f] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_bf27f/fast] Error 2 Determining if the function strlcpy exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_0644e/fast && /bin/gmake -f CMakeFiles/cmTC_0644e.dir/build.make CMakeFiles/cmTC_0644e.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0644e.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=strlcpy -o CMakeFiles/cmTC_0644e.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_0644e /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0644e.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=strlcpy -rdynamic CMakeFiles/cmTC_0644e.dir/CheckFunctionExistsEx.c.o -o cmTC_0644e -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_0644e.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `strlcpy' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_0644e.dir/build.make:99: cmTC_0644e] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_0644e/fast] Error 2 Determining if the function sysctl exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_8498e/fast && /bin/gmake -f CMakeFiles/cmTC_8498e.dir/build.make CMakeFiles/cmTC_8498e.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_8498e.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=sysctl -o CMakeFiles/cmTC_8498e.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_8498e /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8498e.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=sysctl -rdynamic CMakeFiles/cmTC_8498e.dir/CheckFunctionExistsEx.c.o -o cmTC_8498e -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_8498e.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `sysctl' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_8498e.dir/build.make:99: cmTC_8498e] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_8498e/fast] Error 2 Determining if the function arc4random exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_cd937/fast && /bin/gmake -f CMakeFiles/cmTC_cd937.dir/build.make CMakeFiles/cmTC_cd937.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_cd937.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=arc4random -o CMakeFiles/cmTC_cd937.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_cd937 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cd937.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=arc4random -rdynamic CMakeFiles/cmTC_cd937.dir/CheckFunctionExistsEx.c.o -o cmTC_cd937 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_cd937.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `arc4random' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_cd937.dir/build.make:99: cmTC_cd937] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_cd937/fast] Error 2 Determining if the function arc4random_buf exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_ad3c2/fast && /bin/gmake -f CMakeFiles/cmTC_ad3c2.dir/build.make CMakeFiles/cmTC_ad3c2.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_ad3c2.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=arc4random_buf -o CMakeFiles/cmTC_ad3c2.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_ad3c2 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ad3c2.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=arc4random_buf -rdynamic CMakeFiles/cmTC_ad3c2.dir/CheckFunctionExistsEx.c.o -o cmTC_ad3c2 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_ad3c2.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `arc4random_buf' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_ad3c2.dir/build.make:99: cmTC_ad3c2] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_ad3c2/fast] Error 2 Determining if the function issetugid exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_ac734/fast && /bin/gmake -f CMakeFiles/cmTC_ac734.dir/build.make CMakeFiles/cmTC_ac734.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_ac734.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=issetugid -o CMakeFiles/cmTC_ac734.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_ac734 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ac734.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=issetugid -rdynamic CMakeFiles/cmTC_ac734.dir/CheckFunctionExistsEx.c.o -o cmTC_ac734 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_ac734.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `issetugid' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_ac734.dir/build.make:99: cmTC_ac734] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_ac734/fast] Error 2 Determining if the function mach_absolute_time exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_209c1/fast && /bin/gmake -f CMakeFiles/cmTC_209c1.dir/build.make CMakeFiles/cmTC_209c1.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_209c1.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=mach_absolute_time -o CMakeFiles/cmTC_209c1.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_209c1 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_209c1.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=mach_absolute_time -rdynamic CMakeFiles/cmTC_209c1.dir/CheckFunctionExistsEx.c.o -o cmTC_209c1 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_209c1.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `mach_absolute_time' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_209c1.dir/build.make:99: cmTC_209c1] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_209c1/fast] Error 2 Determining if the function timeradd exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_76ffe/fast && /bin/gmake -f CMakeFiles/cmTC_76ffe.dir/build.make CMakeFiles/cmTC_76ffe.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_76ffe.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timeradd -o CMakeFiles/cmTC_76ffe.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_76ffe /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_76ffe.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timeradd -rdynamic CMakeFiles/cmTC_76ffe.dir/CheckFunctionExistsEx.c.o -o cmTC_76ffe -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_76ffe.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `timeradd' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_76ffe.dir/build.make:99: cmTC_76ffe] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_76ffe/fast] Error 2 Determining if the function timerclear exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_86d23/fast && /bin/gmake -f CMakeFiles/cmTC_86d23.dir/build.make CMakeFiles/cmTC_86d23.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_86d23.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timerclear -o CMakeFiles/cmTC_86d23.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_86d23 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86d23.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timerclear -rdynamic CMakeFiles/cmTC_86d23.dir/CheckFunctionExistsEx.c.o -o cmTC_86d23 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_86d23.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `timerclear' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_86d23.dir/build.make:99: cmTC_86d23] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_86d23/fast] Error 2 Determining if the function timercmp exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_07e40/fast && /bin/gmake -f CMakeFiles/cmTC_07e40.dir/build.make CMakeFiles/cmTC_07e40.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_07e40.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timercmp -o CMakeFiles/cmTC_07e40.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_07e40 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_07e40.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timercmp -rdynamic CMakeFiles/cmTC_07e40.dir/CheckFunctionExistsEx.c.o -o cmTC_07e40 -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_07e40.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `timercmp' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_07e40.dir/build.make:99: cmTC_07e40] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_07e40/fast] Error 2 Determining if the function timerisset exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c75db/fast && /bin/gmake -f CMakeFiles/cmTC_c75db.dir/build.make CMakeFiles/cmTC_c75db.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c75db.dir/CheckFunctionExistsEx.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timerisset -o CMakeFiles/cmTC_c75db.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c Linking C executable cmTC_c75db /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c75db.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -DCHECK_FUNCTION_EXISTS=timerisset -rdynamic CMakeFiles/cmTC_c75db.dir/CheckFunctionExistsEx.c.o -o cmTC_c75db -lm -lcrypt -latomic /bin/ld: CMakeFiles/cmTC_c75db.dir/CheckFunctionExistsEx.c.o: in function `main': CheckFunctionExistsEx.c:(.text+0x14): undefined reference to `timerisset' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_c75db.dir/build.make:99: cmTC_c75db] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c75db/fast] Error 2 Determining if the prototype gethostbyname_r exists for EVENT__HAVE_GETHOSTBYNAME_R_3_ARG failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_8a35b/fast && /bin/gmake -f CMakeFiles/cmTC_8a35b.dir/build.make CMakeFiles/cmTC_8a35b.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_8a35b.dir/CheckPrototypeDefinition.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_8a35b.dir/CheckPrototypeDefinition.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:14:66: warning: ‘struct hostent_data’ declared inside parameter list will not be visible outside of this definition or declaration 14 | int gethostbyname_r(const char *name, struct hostent *hp, struct hostent_data *hdata) { | ^~~~~~~~~~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:14:5: error: conflicting types for ‘gethostbyname_r’; have ‘int(const char *, struct hostent *, struct hostent_data *)’ 14 | int gethostbyname_r(const char *name, struct hostent *hp, struct hostent_data *hdata) { | ^~~~~~~~~~~~~~~ In file included from /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:1: /usr/include/netdb.h:177:12: note: previous declaration of ‘gethostbyname_r’ with type ‘int(const char * restrict, struct hostent * restrict, char * restrict, size_t, struct hostent ** restrict, int * restrict)’ {aka ‘int(const char * restrict, struct hostent * restrict, char * restrict, long unsigned int, struct hostent ** restrict, int * restrict)’} 177 | extern int gethostbyname_r (const char *__restrict __name, | ^~~~~~~~~~~~~~~ gmake[1]: *** [CMakeFiles/cmTC_8a35b.dir/build.make:78: CMakeFiles/cmTC_8a35b.dir/CheckPrototypeDefinition.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_8a35b/fast] Error 2 #include <netdb.h> static void cmakeRequireSymbol(int dummy, ...) { (void) dummy; } static void checkSymbol(void) { #ifndef gethostbyname_r cmakeRequireSymbol(0, &gethostbyname_r); #endif } int gethostbyname_r(const char *name, struct hostent *hp, struct hostent_data *hdata) { return 0; } #ifdef __CLASSIC_C__ int main() { int ac; char*av[]; #else int main(int ac, char *av[]) { #endif checkSymbol(); if (ac > 1000) { return *av[0]; } return 0; } Determining if the prototype gethostbyname_r exists for EVENT__HAVE_GETHOSTBYNAME_R_5_ARG failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_e64fd/fast && /bin/gmake -f CMakeFiles/cmTC_e64fd.dir/build.make CMakeFiles/cmTC_e64fd.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_e64fd.dir/CheckPrototypeDefinition.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_e64fd.dir/CheckPrototypeDefinition.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:14:17: error: conflicting types for ‘gethostbyname_r’; have ‘struct hostent *(const char *, struct hostent *, char *, size_t, int *)’ {aka ‘struct hostent *(const char *, struct hostent *, char *, long unsigned int, int *)’} 14 | struct hostent *gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen, int *herr) { | ^~~~~~~~~~~~~~~ In file included from /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:1: /usr/include/netdb.h:177:12: note: previous declaration of ‘gethostbyname_r’ with type ‘int(const char * restrict, struct hostent * restrict, char * restrict, size_t, struct hostent ** restrict, int * restrict)’ {aka ‘int(const char * restrict, struct hostent * restrict, char * restrict, long unsigned int, struct hostent ** restrict, int * restrict)’} 177 | extern int gethostbyname_r (const char *__restrict __name, | ^~~~~~~~~~~~~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c: In function ‘gethostbyname_r’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:15:10: error: ‘NULL’ undeclared (first use in this function) 15 | return NULL; | ^~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:2:1: note: ‘NULL’ is defined in header ‘<stddef.h>’; did you forget to ‘#include <stddef.h>’? 1 | #include <netdb.h> +++ |+#include <stddef.h> 2 | /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:15:10: note: each undeclared identifier is reported only once for each function it appears in 15 | return NULL; | ^~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckPrototypeDefinition.c:16:1: warning: control reaches end of non-void function [-Wreturn-type] 16 | } | ^ gmake[1]: *** [CMakeFiles/cmTC_e64fd.dir/build.make:78: CMakeFiles/cmTC_e64fd.dir/CheckPrototypeDefinition.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_e64fd/fast] Error 2 #include <netdb.h> static void cmakeRequireSymbol(int dummy, ...) { (void) dummy; } static void checkSymbol(void) { #ifndef gethostbyname_r cmakeRequireSymbol(0, &gethostbyname_r); #endif } struct hostent *gethostbyname_r(const char *name, struct hostent *hp, char *buf, size_t buflen, int *herr) { return NULL; } #ifdef __CLASSIC_C__ int main() { int ac; char*av[]; #else int main(int ac, char *av[]) { #endif checkSymbol(); if (ac > 1000) { return *av[0]; } return 0; } Performing C SOURCE FILE Test EVENT__HAVE_DECL_CTL_KERN failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_12cf9/fast && /bin/gmake -f CMakeFiles/cmTC_12cf9.dir/build.make CMakeFiles/cmTC_12cf9.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_12cf9.dir/src.c.o /bin/cc -DEVENT__HAVE_DECL_CTL_KERN -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_12cf9.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:2:20: fatal error: sys/sysctl.h: No such file or directory 2 | #include <sys/sysctl.h> | ^~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_12cf9.dir/build.make:78: CMakeFiles/cmTC_12cf9.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_12cf9/fast] Error 2 Source file was: #include <sys/sysctl.h> int main() { (void)CTL_KERN; return 0; } Performing C SOURCE FILE Test EVENT__HAVE_DECL_KERN_ARND failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c5d84/fast && /bin/gmake -f CMakeFiles/cmTC_c5d84.dir/build.make CMakeFiles/cmTC_c5d84.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c5d84.dir/src.c.o /bin/cc -DEVENT__HAVE_DECL_KERN_ARND -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_c5d84.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:2:20: fatal error: sys/sysctl.h: No such file or directory 2 | #include <sys/sysctl.h> | ^~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_c5d84.dir/build.make:78: CMakeFiles/cmTC_c5d84.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c5d84/fast] Error 2 Source file was: #include <sys/sysctl.h> int main() { (void)KERN_ARND; return 0; } Performing C SOURCE FILE Test EVENT__HAVE_DECL_KERN_RANDOM failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c3f67/fast && /bin/gmake -f CMakeFiles/cmTC_c3f67.dir/build.make CMakeFiles/cmTC_c3f67.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c3f67.dir/src.c.o /bin/cc -DEVENT__HAVE_DECL_KERN_RANDOM -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_c3f67.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:2:20: fatal error: sys/sysctl.h: No such file or directory 2 | #include <sys/sysctl.h> | ^~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_c3f67.dir/build.make:78: CMakeFiles/cmTC_c3f67.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c3f67/fast] Error 2 Source file was: #include <sys/sysctl.h> int main() { (void)KERN_RANDOM; return 0; } Performing C SOURCE FILE Test EVENT__HAVE_DECL_RANDOM_UUID failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_95f78/fast && /bin/gmake -f CMakeFiles/cmTC_95f78.dir/build.make CMakeFiles/cmTC_95f78.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_95f78.dir/src.c.o /bin/cc -DEVENT__HAVE_DECL_RANDOM_UUID -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_95f78.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:2:20: fatal error: sys/sysctl.h: No such file or directory 2 | #include <sys/sysctl.h> | ^~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_95f78.dir/build.make:78: CMakeFiles/cmTC_95f78.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_95f78/fast] Error 2 Source file was: #include <sys/sysctl.h> int main() { (void)RANDOM_UUID; return 0; } Determining size of SSIZE_T failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_67545/fast && /bin/gmake -f CMakeFiles/cmTC_67545.dir/build.make CMakeFiles/cmTC_67545.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_67545.dir/EVENT__SIZEOF_SSIZE_T_UPPER.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_67545.dir/EVENT__SIZEOF_SSIZE_T_UPPER.c.o -c /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/EVENT__SIZEOF_SSIZE_T_UPPER.c /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/EVENT__SIZEOF_SSIZE_T_UPPER.c:33:22: error: ‘SSIZE_T’ undeclared here (not in a function) 33 | #define SIZE (sizeof(SSIZE_T)) | ^~~~~~~ /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/EVENT__SIZEOF_SSIZE_T_UPPER.c:35:12: note: in expansion of macro ‘SIZE’ 35 | ('0' + ((SIZE / 10000)%10)), | ^~~~ gmake[1]: *** [CMakeFiles/cmTC_67545.dir/build.make:78: CMakeFiles/cmTC_67545.dir/EVENT__SIZEOF_SSIZE_T_UPPER.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_67545/fast] Error 2 /www/server/mysql/src/install/CMakeFiles/CheckTypeSize/EVENT__SIZEOF_SSIZE_T_UPPER.c: #include <sys/types.h> #include <stdint.h> #include <stddef.h> #include "sys/types.h" #include "sys/socket.h" #include "netinet/in.h" #include "sys/un.h" #include "fcntl.h" #include "sys/time.h" #undef KEY #if defined(__i386) # define KEY '_','_','i','3','8','6' #elif defined(__x86_64) # define KEY '_','_','x','8','6','_','6','4' #elif defined(__PPC64__) # define KEY '_','_','P','P','C','6','4','_','_' #elif defined(__ppc64__) # define KEY '_','_','p','p','c','6','4','_','_' #elif defined(__PPC__) # define KEY '_','_','P','P','C','_','_' #elif defined(__ppc__) # define KEY '_','_','p','p','c','_','_' #elif defined(__aarch64__) # define KEY '_','_','a','a','r','c','h','6','4','_','_' #elif defined(__ARM_ARCH_7A__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_' #elif defined(__ARM_ARCH_7S__) # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_' #endif #define SIZE (sizeof(SSIZE_T)) static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[', ('0' + ((SIZE / 10000)%10)), ('0' + ((SIZE / 1000)%10)), ('0' + ((SIZE / 100)%10)), ('0' + ((SIZE / 10)%10)), ('0' + (SIZE % 10)), ']', #ifdef KEY ' ','k','e','y','[', KEY, ']', #endif '\0'}; #ifdef __CLASSIC_C__ int main(argc, argv) int argc; char *argv[]; #else int main(int argc, char *argv[]) #endif { int require = 0; require += info_size[argc]; (void)argv; return require; } Performing C SOURCE FILE Test EVENT__HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_7d0ca/fast && /bin/gmake -f CMakeFiles/cmTC_7d0ca.dir/build.make CMakeFiles/cmTC_7d0ca.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_7d0ca.dir/src.c.o /bin/cc -DEVENT__HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_7d0ca.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:5: warning: function declaration isn’t a prototype [-Wstrict-prototypes] 6 | int main() | ^~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:8:42: error: ‘struct sockaddr_in6’ has no member named ‘sin6_len’ 8 | (void)sizeof(((struct sockaddr_in6 *)0)->sin6_len); | ^~ gmake[1]: *** [CMakeFiles/cmTC_7d0ca.dir/build.make:78: CMakeFiles/cmTC_7d0ca.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_7d0ca/fast] Error 2 Source file was: #include <netinet/in.h> #include <sys/socket.h> #include <netdb.h> int main() { (void)sizeof(((struct sockaddr_in6 *)0)->sin6_len); return 0; } Performing C SOURCE FILE Test EVENT__HAVE_STRUCT_SOCKADDR_IN_SIN_LEN failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_d6a54/fast && /bin/gmake -f CMakeFiles/cmTC_d6a54.dir/build.make CMakeFiles/cmTC_d6a54.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_d6a54.dir/src.c.o /bin/cc -DEVENT__HAVE_STRUCT_SOCKADDR_IN_SIN_LEN -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_d6a54.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:5: warning: function declaration isn’t a prototype [-Wstrict-prototypes] 6 | int main() | ^~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:8:42: error: ‘struct sockaddr_in6’ has no member named ‘sin_len’ 8 | (void)sizeof(((struct sockaddr_in6 *)0)->sin_len); | ^~ gmake[1]: *** [CMakeFiles/cmTC_d6a54.dir/build.make:78: CMakeFiles/cmTC_d6a54.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_d6a54/fast] Error 2 Source file was: #include <netinet/in.h> #include <sys/socket.h> #include <netdb.h> int main() { (void)sizeof(((struct sockaddr_in6 *)0)->sin_len); return 0; } Performing C SOURCE FILE Test EVENT__HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_8004e/fast && /bin/gmake -f CMakeFiles/cmTC_8004e.dir/build.make CMakeFiles/cmTC_8004e.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_8004e.dir/src.c.o /bin/cc -DEVENT__HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -Wall -Wextra -Wno-unused-parameter -Wstrict-aliasing -Wstrict-prototypes -fno-strict-aliasing -Wmissing-prototypes -Winit-self -Wmissing-field-initializers -Wdeclaration-after-statement -Waddress -Wnormalized=id -Woverride-init -Wlogical-op -Wwrite-strings -o CMakeFiles/cmTC_8004e.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:5: warning: function declaration isn’t a prototype [-Wstrict-prototypes] 6 | int main() | ^~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:8:48: error: ‘struct sockaddr_storage’ has no member named ‘__ss_family’; did you mean ‘ss_family’? 8 | (void)sizeof(((struct sockaddr_storage *)0)->__ss_family); | ^~~~~~~~~~~ | ss_family gmake[1]: *** [CMakeFiles/cmTC_8004e.dir/build.make:78: CMakeFiles/cmTC_8004e.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_8004e/fast] Error 2 Source file was: #include <netinet/in.h> #include <sys/socket.h> #include <netdb.h> int main() { (void)sizeof(((struct sockaddr_storage *)0)->__ss_family); return 0; } Determining if the include file lber.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_52426/fast && /bin/gmake -f CMakeFiles/cmTC_52426.dir/build.make CMakeFiles/cmTC_52426.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_52426.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_52426.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: lber.h: No such file or directory 1 | #include <lber.h> | ^~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_52426.dir/build.make:78: CMakeFiles/cmTC_52426.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_52426/fast] Error 2 Determining if the include file ldap.h exists failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_e5dba/fast && /bin/gmake -f CMakeFiles/cmTC_e5dba.dir/build.make CMakeFiles/cmTC_e5dba.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_e5dba.dir/CheckIncludeFile.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_e5dba.dir/CheckIncludeFile.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: ldap.h: No such file or directory 1 | #include <ldap.h> | ^~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_e5dba.dir/build.make:78: CMakeFiles/cmTC_e5dba.dir/CheckIncludeFile.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_e5dba/fast] Error 2 Performing C SOURCE FILE Test HAVE_SYS_THREAD_SELFID failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_7e047/fast && /bin/gmake -f CMakeFiles/cmTC_7e047.dir/build.make CMakeFiles/cmTC_7e047.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_7e047.dir/src.c.o /bin/cc -DHAVE_SYS_THREAD_SELFID -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_7e047.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:7:36: error: ‘SYS_thread_selfid’ undeclared (first use in this function) 7 | unsigned long long tid = syscall(SYS_thread_selfid); | ^~~~~~~~~~~~~~~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:7:36: note: each undeclared identifier is reported only once for each function it appears in gmake[1]: *** [CMakeFiles/cmTC_7e047.dir/build.make:78: CMakeFiles/cmTC_7e047.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_7e047/fast] Error 2 Source file was: #include <sys/types.h> #include <sys/syscall.h> #include <unistd.h> int main(int ac, char **av) { unsigned long long tid = syscall(SYS_thread_selfid); return (tid != 0 ? 0 : 1); } Performing C SOURCE FILE Test HAVE_PTHREAD_GETTHREADID_NP failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_96501/fast && /bin/gmake -f CMakeFiles/cmTC_96501.dir/build.make CMakeFiles/cmTC_96501.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_96501.dir/src.c.o /bin/cc -DHAVE_PTHREAD_GETTHREADID_NP -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -o CMakeFiles/cmTC_96501.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:2:10: fatal error: pthread_np.h: No such file or directory 2 | #include <pthread_np.h> | ^~~~~~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_96501.dir/build.make:78: CMakeFiles/cmTC_96501.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_96501/fast] Error 2 Source file was: #include <pthread_np.h> int main(int ac, char **av) { unsigned long long tid = pthread_getthreadid_np(); return (tid != 0 ? 0 : 1); } Determining if files libaio.h exist failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_44b32/fast && /bin/gmake -f CMakeFiles/cmTC_44b32.dir/build.make CMakeFiles/cmTC_44b32.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_44b32.dir/HAVE_LIBAIO_H.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -o CMakeFiles/cmTC_44b32.dir/HAVE_LIBAIO_H.c.o -c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_LIBAIO_H.c /www/server/mysql/src/install/CMakeFiles/CheckIncludeFiles/HAVE_LIBAIO_H.c:2:10: fatal error: libaio.h: No such file or directory 2 | #include <libaio.h> | ^~~~~~~~~~ compilation terminated. gmake[1]: *** [CMakeFiles/cmTC_44b32.dir/build.make:78: CMakeFiles/cmTC_44b32.dir/HAVE_LIBAIO_H.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_44b32/fast] Error 2 Source: /* */ #include <libaio.h> int main(void){return 0;} Determining if the function io_queue_init exists in the aio failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_5ab24/fast && /bin/gmake -f CMakeFiles/cmTC_5ab24.dir/build.make CMakeFiles/cmTC_5ab24.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_5ab24.dir/CheckFunctionExists.c.o /bin/cc -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -DCHECK_FUNCTION_EXISTS=io_queue_init -o CMakeFiles/cmTC_5ab24.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.22/Modules/CheckFunctionExists.c Linking C executable cmTC_5ab24 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5ab24.dir/link.txt --verbose=1 /bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -DCHECK_FUNCTION_EXISTS=io_queue_init -rdynamic CMakeFiles/cmTC_5ab24.dir/CheckFunctionExists.c.o -o cmTC_5ab24 -laio -lm -lcrypt -latomic /bin/ld: cannot find -laio: No such file or directory collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_5ab24.dir/build.make:99: cmTC_5ab24] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_5ab24/fast] Error 2 Performing C SOURCE FILE Test HAVE_STRUCT_SOCKADDR_SA_LEN failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_8fafc/fast && /bin/gmake -f CMakeFiles/cmTC_8fafc.dir/build.make CMakeFiles/cmTC_8fafc.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_8fafc.dir/src.c.o /bin/cc -DHAVE_STRUCT_SOCKADDR_SA_LEN -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/usr/include/tirpc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -Wno-error -o CMakeFiles/cmTC_8fafc.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:38: error: ‘struct sockaddr’ has no member named ‘sa_len’ 6 | (void)sizeof(((struct sockaddr *)0)->sa_len); | ^~ gmake[1]: *** [CMakeFiles/cmTC_8fafc.dir/build.make:78: CMakeFiles/cmTC_8fafc.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_8fafc/fast] Error 2 Source file was: #include <sys/socket.h> int main() { (void)sizeof(((struct sockaddr *)0)->sa_len); return 0; } Performing C SOURCE FILE Test HAVE_XDR_OPS_X_PUTINT32 failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_c74ab/fast && /bin/gmake -f CMakeFiles/cmTC_c74ab.dir/build.make CMakeFiles/cmTC_c74ab.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_c74ab.dir/src.c.o /bin/cc -DHAVE_XDR_OPS_X_PUTINT32 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/usr/include/tirpc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -Wno-error -o CMakeFiles/cmTC_c74ab.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:37: error: ‘struct xdr_ops’ has no member named ‘x_putint32’ 6 | (void)sizeof(((struct xdr_ops *)0)->x_putint32); | ^~ gmake[1]: *** [CMakeFiles/cmTC_c74ab.dir/build.make:78: CMakeFiles/cmTC_c74ab.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_c74ab/fast] Error 2 Source file was: #include <rpc/xdr.h> int main() { (void)sizeof(((struct xdr_ops *)0)->x_putint32); return 0; } Performing C SOURCE FILE Test HAVE_XDR_OPS_X_GETINT32 failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_63892/fast && /bin/gmake -f CMakeFiles/cmTC_63892.dir/build.make CMakeFiles/cmTC_63892.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_63892.dir/src.c.o /bin/cc -DHAVE_XDR_OPS_X_GETINT32 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/usr/include/tirpc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -Wno-error -o CMakeFiles/cmTC_63892.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:6:37: error: ‘struct xdr_ops’ has no member named ‘x_getint32’ 6 | (void)sizeof(((struct xdr_ops *)0)->x_getint32); | ^~ gmake[1]: *** [CMakeFiles/cmTC_63892.dir/build.make:78: CMakeFiles/cmTC_63892.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_63892/fast] Error 2 Source file was: #include <rpc/xdr.h> int main() { (void)sizeof(((struct xdr_ops *)0)->x_getint32); return 0; } Performing C SOURCE FILE Test OLD_XDR failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_92cfa/fast && /bin/gmake -f CMakeFiles/cmTC_92cfa.dir/build.make CMakeFiles/cmTC_92cfa.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_92cfa.dir/src.c.o /bin/cc -DOLD_XDR -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/usr/include/tirpc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -Werror=sign-conversion -o CMakeFiles/cmTC_92cfa.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:3:41: error: unsigned conversion from ‘int’ to ‘u_int’ {aka ‘unsigned int’} changes value from ‘-1’ to ‘4294967295’ [-Werror=sign-conversion] 3 | int main() { XDR xdr; xdr.x_handy = -1; return (int)xdr.x_handy; } | ^ cc1: some warnings being treated as errors gmake[1]: *** [CMakeFiles/cmTC_92cfa.dir/build.make:78: CMakeFiles/cmTC_92cfa.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_92cfa/fast] Error 2 Source file was: #include <rpc/xdr.h> int main() { XDR xdr; xdr.x_handy = -1; return (int)xdr.x_handy; } Performing C SOURCE FILE Test X_PUTLONG_NOT_USE_CONST failed with the following output: Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp Run Build Command(s):/bin/gmake -f Makefile cmTC_d05a2/fast && /bin/gmake -f CMakeFiles/cmTC_d05a2.dir/build.make CMakeFiles/cmTC_d05a2.dir/build gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_d05a2.dir/src.c.o /bin/cc -DX_PUTLONG_NOT_USE_CONST -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/usr/include/tirpc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -Wextra -Wformat-security -Wvla -Wimplicit-fallthrough=2 -Wwrite-strings -Wdeclaration-after-statement -Werror=sign-conversion -Werror=incompatible-pointer-types -o CMakeFiles/cmTC_d05a2.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:10:21: error: assignment to ‘bool_t (*)(struct __rpc_xdr *, const long int *)’ {aka ‘int (*)(struct __rpc_xdr *, const long int *)’} from incompatible pointer type ‘bool_t (*)(XDR *, long int *)’ {aka ‘int (*)(struct __rpc_xdr *, long int *)’} [-Werror=incompatible-pointer-types] 10 | ops.x_putlong = putlong; | ^ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:11:19: warning: ‘l’ may be used uninitialized [-Wmaybe-uninitialized] 11 | return (int)ops.x_putlong(&xdr, &l); | ^~~~~~~~~~~~~~~~~~~~~~~ /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:11:19: note: by argument 2 of type ‘const long int *’ to ‘bool_t(struct __rpc_xdr *, const long int *)’ {aka ‘int(struct __rpc_xdr *, const long int *)’} /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c:8:12: note: ‘l’ declared here 8 | long l; | ^ cc1: some warnings being treated as errors gmake[1]: *** [CMakeFiles/cmTC_d05a2.dir/build.make:78: CMakeFiles/cmTC_d05a2.dir/src.c.o] Error 1 gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_d05a2/fast] Error 2 Source file was: #include <rpc/xdr.h> bool_t putlong(XDR* xdr, long *longp) { return (bool_t)(*longp + xdr->x_handy); } int main() { XDR xdr; struct xdr_ops ops; long l; ops.x_putlong = putlong; return (int)ops.x_putlong(&xdr, &l); }