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_ab58a/fast && /bin/gmake  -f CMakeFiles/cmTC_ab58a.dir/build.make CMakeFiles/cmTC_ab58a.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ab58a.dir/src.c.o
/bin/cc -DHAVE_C_SHIFT_OR_OPTIMIZATION_BUG  -O3 -fexpensive-optimizations -o CMakeFiles/cmTC_ab58a.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_ab58a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ab58a.dir/link.txt --verbose=1
/bin/cc   -O3 -fexpensive-optimizations -rdynamic CMakeFiles/cmTC_ab58a.dir/src.c.o -o cmTC_ab58a 
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_7a07b/fast && /bin/gmake  -f CMakeFiles/cmTC_7a07b.dir/build.make CMakeFiles/cmTC_7a07b.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_7a07b.dir/src.cxx.o
/bin/c++ -DHAVE_CXX_SHIFT_OR_OPTIMIZATION_BUG  -O3 -fexpensive-optimizations -o CMakeFiles/cmTC_7a07b.dir/src.cxx.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_7a07b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7a07b.dir/link.txt --verbose=1
/bin/c++   -O3 -fexpensive-optimizations -rdynamic CMakeFiles/cmTC_7a07b.dir/src.cxx.o -o cmTC_7a07b 
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_2085a/fast && /bin/gmake  -f CMakeFiles/cmTC_2085a.dir/build.make CMakeFiles/cmTC_2085a.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2085a.dir/src.c.o
/bin/cc -DHAVE_C_FLOATING_POINT_FUSED_MADD  -O3 -o CMakeFiles/cmTC_2085a.dir/src.c.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_2085a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2085a.dir/link.txt --verbose=1
/bin/cc   -O3 -rdynamic CMakeFiles/cmTC_2085a.dir/src.c.o -o cmTC_2085a 
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_15d47/fast && /bin/gmake  -f CMakeFiles/cmTC_15d47.dir/build.make CMakeFiles/cmTC_15d47.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_15d47.dir/src.cxx.o
/bin/c++ -DHAVE_CXX_FLOATING_POINT_FUSED_MADD  -O3 -o CMakeFiles/cmTC_15d47.dir/src.cxx.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_15d47
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_15d47.dir/link.txt --verbose=1
/bin/c++   -O3 -rdynamic CMakeFiles/cmTC_15d47.dir/src.cxx.o -o cmTC_15d47 
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_69ae1/fast && /bin/gmake  -f CMakeFiles/cmTC_69ae1.dir/build.make CMakeFiles/cmTC_69ae1.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_69ae1.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_69ae1.dir/src.cxx.o -c /www/server/mysql/src/install/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_69ae1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_69ae1.dir/link.txt --verbose=1
/bin/c++ -fPIC -std=gnu++03 -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing   -rdynamic CMakeFiles/cmTC_69ae1.dir/src.cxx.o -o cmTC_69ae1 
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_1bd42/fast && /bin/gmake  -f CMakeFiles/cmTC_1bd42.dir/build.make CMakeFiles/cmTC_1bd42.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1bd42.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=floor -o CMakeFiles/cmTC_1bd42.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
<command-line>: warning: conflicting types for built-in function ‘floor’; expected ‘double(double)’ [-Wbuiltin-declaration-mismatch]
/usr/share/cmake/Modules/CheckFunctionExists.c:7:3: note: in expansion of macro ‘CHECK_FUNCTION_EXISTS’
    7 |   CHECK_FUNCTION_EXISTS(void);
      |   ^~~~~~~~~~~~~~~~~~~~~
/usr/share/cmake/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_1bd42
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1bd42.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_1bd42.dir/CheckFunctionExists.c.o -o cmTC_1bd42 
/bin/ld: CMakeFiles/cmTC_1bd42.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `floor'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_1bd42.dir/build.make:99: cmTC_1bd42] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_1bd42/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_8c605/fast && /bin/gmake  -f CMakeFiles/cmTC_8c605.dir/build.make CMakeFiles/cmTC_8c605.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8c605.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=crypt -o CMakeFiles/cmTC_8c605.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_8c605
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8c605.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_8c605.dir/CheckFunctionExists.c.o -o cmTC_8c605 
/bin/ld: CMakeFiles/cmTC_8c605.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `crypt'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_8c605.dir/build.make:99: cmTC_8c605] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_8c605/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_85201/fast && /bin/gmake  -f CMakeFiles/cmTC_85201.dir/build.make CMakeFiles/cmTC_85201.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_85201.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_85201.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_85201
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_85201.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_85201.dir/CheckFunctionExists.c.o -o cmTC_85201 
/bin/ld: CMakeFiles/cmTC_85201.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `atomic_thread_fence'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_85201.dir/build.make:99: cmTC_85201] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_85201/fast] Error 2



Determining if the function atomic_thread_fence exists in the atomic failed with the following output:
Change Dir: /www/server/mysql/src/install/CMakeFiles/CMakeTmp

Run Build Command(s):/bin/gmake -f Makefile cmTC_b25d2/fast && /bin/gmake  -f CMakeFiles/cmTC_b25d2.dir/build.make CMakeFiles/cmTC_b25d2.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b25d2.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_b25d2.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_b25d2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b25d2.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_b25d2.dir/CheckFunctionExists.c.o -o cmTC_b25d2  -latomic 
/bin/ld: cannot find /usr/lib64/libatomic.so.1.2.0
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_b25d2.dir/build.make:99: cmTC_b25d2] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_b25d2/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_1c5f6/fast && /bin/gmake  -f CMakeFiles/cmTC_1c5f6.dir/build.make CMakeFiles/cmTC_1c5f6.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1c5f6.dir/HAVE_IEEEFP_H.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing   -o CMakeFiles/cmTC_1c5f6.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_1c5f6.dir/build.make:78: CMakeFiles/cmTC_1c5f6.dir/HAVE_IEEEFP_H.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_1c5f6/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_1e39d/fast && /bin/gmake  -f CMakeFiles/cmTC_1e39d.dir/build.make CMakeFiles/cmTC_1e39d.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1e39d.dir/HAVE_DEVPOLL.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing   -o CMakeFiles/cmTC_1e39d.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_1e39d.dir/build.make:78: CMakeFiles/cmTC_1e39d.dir/HAVE_DEVPOLL.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_1e39d/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_3573c/fast && /bin/gmake  -f CMakeFiles/cmTC_3573c.dir/build.make CMakeFiles/cmTC_3573c.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3573c.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_3573c.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_3573c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3573c.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_3573c.dir/CheckFunctionExists.c.o -o cmTC_3573c  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_3573c.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `_aligned_malloc'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_3573c.dir/build.make:99: cmTC_3573c] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_3573c/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_71243/fast && /bin/gmake  -f CMakeFiles/cmTC_71243.dir/build.make CMakeFiles/cmTC_71243.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_71243.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=printstack -o CMakeFiles/cmTC_71243.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_71243
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_71243.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_71243.dir/CheckFunctionExists.c.o -o cmTC_71243  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_71243.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `printstack'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_71243.dir/build.make:99: cmTC_71243] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_71243/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_63fcc/fast && /bin/gmake  -f CMakeFiles/cmTC_63fcc.dir/build.make CMakeFiles/cmTC_63fcc.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_63fcc.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=directio -o CMakeFiles/cmTC_63fcc.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_63fcc
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63fcc.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_63fcc.dir/CheckFunctionExists.c.o -o cmTC_63fcc  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_63fcc.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `directio'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_63fcc.dir/build.make:99: cmTC_63fcc] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_63fcc/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_7e939/fast && /bin/gmake  -f CMakeFiles/cmTC_7e939.dir/build.make CMakeFiles/cmTC_7e939.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7e939.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=compress -o CMakeFiles/cmTC_7e939.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_7e939
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e939.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_7e939.dir/CheckFunctionExists.c.o -o cmTC_7e939  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_7e939.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `compress'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_7e939.dir/build.make:99: cmTC_7e939] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_7e939/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_834fc/fast && /bin/gmake  -f CMakeFiles/cmTC_834fc.dir/build.make CMakeFiles/cmTC_834fc.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_834fc.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=gethrtime -o CMakeFiles/cmTC_834fc.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_834fc
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_834fc.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_834fc.dir/CheckFunctionExists.c.o -o cmTC_834fc  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_834fc.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `gethrtime'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_834fc.dir/build.make:99: cmTC_834fc] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_834fc/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_f7fd9/fast && /bin/gmake  -f CMakeFiles/cmTC_f7fd9.dir/build.make CMakeFiles/cmTC_f7fd9.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f7fd9.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=getpassphrase -o CMakeFiles/cmTC_f7fd9.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_f7fd9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f7fd9.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_f7fd9.dir/CheckFunctionExists.c.o -o cmTC_f7fd9  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_f7fd9.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `getpassphrase'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_f7fd9.dir/build.make:99: cmTC_f7fd9] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_f7fd9/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_12dd2/fast && /bin/gmake  -f CMakeFiles/cmTC_12dd2.dir/build.make CMakeFiles/cmTC_12dd2.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_12dd2.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=issetugid -o CMakeFiles/cmTC_12dd2.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_12dd2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_12dd2.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_12dd2.dir/CheckFunctionExists.c.o -o cmTC_12dd2  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_12dd2.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `issetugid'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_12dd2.dir/build.make:99: cmTC_12dd2] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_12dd2/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_a18af/fast && /bin/gmake  -f CMakeFiles/cmTC_a18af.dir/build.make CMakeFiles/cmTC_a18af.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a18af.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=setfd -o CMakeFiles/cmTC_a18af.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_a18af
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a18af.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_a18af.dir/CheckFunctionExists.c.o -o cmTC_a18af  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_a18af.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `setfd'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_a18af.dir/build.make:99: cmTC_a18af] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_a18af/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_bffe3/fast && /bin/gmake  -f CMakeFiles/cmTC_bffe3.dir/build.make CMakeFiles/cmTC_bffe3.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bffe3.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=strlcpy -o CMakeFiles/cmTC_bffe3.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_bffe3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bffe3.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_bffe3.dir/CheckFunctionExists.c.o -o cmTC_bffe3  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_bffe3.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `strlcpy'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_bffe3.dir/build.make:99: cmTC_bffe3] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_bffe3/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_2c994/fast && /bin/gmake  -f CMakeFiles/cmTC_2c994.dir/build.make CMakeFiles/cmTC_2c994.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2c994.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=strlcat -o CMakeFiles/cmTC_2c994.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_2c994
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c994.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_2c994.dir/CheckFunctionExists.c.o -o cmTC_2c994  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_2c994.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `strlcat'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_2c994.dir/build.make:99: cmTC_2c994] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_2c994/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_53747/fast && /bin/gmake  -f CMakeFiles/cmTC_53747.dir/build.make CMakeFiles/cmTC_53747.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_53747.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=fgetln -o CMakeFiles/cmTC_53747.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_53747
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_53747.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_53747.dir/CheckFunctionExists.c.o -o cmTC_53747  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_53747.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `fgetln'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_53747.dir/build.make:99: cmTC_53747] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_53747/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_cf622/fast && /bin/gmake  -f CMakeFiles/cmTC_cf622.dir/build.make CMakeFiles/cmTC_cf622.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cf622.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=tell -o CMakeFiles/cmTC_cf622.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_cf622
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cf622.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_cf622.dir/CheckFunctionExists.c.o -o cmTC_cf622  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_cf622.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `tell'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_cf622.dir/build.make:99: cmTC_cf622] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_cf622/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_38e3b/fast && /bin/gmake  -f CMakeFiles/cmTC_38e3b.dir/build.make CMakeFiles/cmTC_38e3b.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_38e3b.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=ntohll -o CMakeFiles/cmTC_38e3b.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_38e3b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_38e3b.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_38e3b.dir/CheckFunctionExists.c.o -o cmTC_38e3b  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_38e3b.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `ntohll'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_38e3b.dir/build.make:99: cmTC_38e3b] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_38e3b/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_66e9f/fast && /bin/gmake  -f CMakeFiles/cmTC_66e9f.dir/build.make CMakeFiles/cmTC_66e9f.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_66e9f.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=kqueue -o CMakeFiles/cmTC_66e9f.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_66e9f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_66e9f.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_66e9f.dir/CheckFunctionExists.c.o -o cmTC_66e9f  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_66e9f.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `kqueue'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_66e9f.dir/build.make:99: cmTC_66e9f] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_66e9f/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_c1479/fast && /bin/gmake  -f CMakeFiles/cmTC_c1479.dir/build.make CMakeFiles/cmTC_c1479.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c1479.dir/CheckSymbolExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing   -o CMakeFiles/cmTC_c1479.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_c1479.dir/build.make:78: CMakeFiles/cmTC_c1479.dir/CheckSymbolExists.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_c1479/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_8df6a/fast && /bin/gmake  -f CMakeFiles/cmTC_8df6a.dir/build.make CMakeFiles/cmTC_8df6a.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8df6a.dir/CheckSymbolExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing   -o CMakeFiles/cmTC_8df6a.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_8df6a.dir/build.make:78: CMakeFiles/cmTC_8df6a.dir/CheckSymbolExists.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_8df6a/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_172e2/fast && /bin/gmake  -f CMakeFiles/cmTC_172e2.dir/build.make CMakeFiles/cmTC_172e2.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_172e2.dir/CheckFunctionExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing  -DCHECK_FUNCTION_EXISTS=kqueue -o CMakeFiles/cmTC_172e2.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_172e2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_172e2.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_172e2.dir/CheckFunctionExists.c.o -o cmTC_172e2  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_172e2.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `kqueue'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_172e2.dir/build.make:99: cmTC_172e2] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_172e2/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_b3314/fast && /bin/gmake  -f CMakeFiles/cmTC_b3314.dir/build.make CMakeFiles/cmTC_b3314.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b3314.dir/CheckSymbolExists.c.o
/bin/cc   -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing   -o CMakeFiles/cmTC_b3314.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_b3314.dir/build.make:78: CMakeFiles/cmTC_b3314.dir/CheckSymbolExists.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_b3314/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_57ebe/fast && /bin/gmake  -f CMakeFiles/cmTC_57ebe.dir/build.make CMakeFiles/cmTC_57ebe.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_57ebe.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_57ebe.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_57ebe.dir/build.make:78: CMakeFiles/cmTC_57ebe.dir/CheckIncludeFile.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_57ebe/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_2d217/fast && /bin/gmake  -f CMakeFiles/cmTC_2d217.dir/build.make CMakeFiles/cmTC_2d217.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2d217.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_2d217.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_2d217.dir/build.make:78: CMakeFiles/cmTC_2d217.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_2d217/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_03cb9/fast && /bin/gmake  -f CMakeFiles/cmTC_03cb9.dir/build.make CMakeFiles/cmTC_03cb9.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_03cb9.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_03cb9.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_03cb9.dir/build.make:78: CMakeFiles/cmTC_03cb9.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_03cb9/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_b7c88/fast && /bin/gmake  -f CMakeFiles/cmTC_b7c88.dir/build.make CMakeFiles/cmTC_b7c88.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b7c88.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_b7c88.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_b7c88
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7c88.dir/link.txt --verbose=1
/bin/cc -fPIC -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing   -rdynamic CMakeFiles/cmTC_b7c88.dir/src.c.o -o cmTC_b7c88  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_b7c88.dir/src.c.o: in function `main':
src.c:(.text+0x21): undefined reference to `pthread_threadid_np'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_b7c88.dir/build.make:99: cmTC_b7c88] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_b7c88/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_1fa14/fast && /bin/gmake  -f CMakeFiles/cmTC_1fa14.dir/build.make CMakeFiles/cmTC_1fa14.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_1fa14.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_1fa14.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_1fa14.dir/build.make:78: CMakeFiles/cmTC_1fa14.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_1fa14/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_c0644/fast && /bin/gmake  -f CMakeFiles/cmTC_c0644.dir/build.make CMakeFiles/cmTC_c0644.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c0644.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_c0644.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_c0644.dir/build.make:78: CMakeFiles/cmTC_c0644.dir/HAVE_NUMA_H.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_c0644/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_48bdb/fast && /bin/gmake  -f CMakeFiles/cmTC_48bdb.dir/build.make CMakeFiles/cmTC_48bdb.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_48bdb.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_48bdb.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_48bdb.dir/build.make:78: CMakeFiles/cmTC_48bdb.dir/HAVE_NUMAIF_H.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_48bdb/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_d8cec/fast && /bin/gmake  -f CMakeFiles/cmTC_d8cec.dir/build.make CMakeFiles/cmTC_d8cec.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d8cec.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_d8cec.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_d8cec.dir/build.make:78: CMakeFiles/cmTC_d8cec.dir/SIZEOF_SOCKLEN_T.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_d8cec/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_848a1/fast && /bin/gmake  -f CMakeFiles/cmTC_848a1.dir/build.make CMakeFiles/cmTC_848a1.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_848a1.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_848a1.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_848a1.dir/build.make:78: CMakeFiles/cmTC_848a1.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_848a1/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_531b9/fast && /bin/gmake  -f CMakeFiles/cmTC_531b9.dir/build.make CMakeFiles/cmTC_531b9.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_531b9.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_531b9.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_531b9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_531b9.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_531b9.dir/CheckFunctionExists.c.o -o cmTC_531b9  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_531b9.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `vis'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_531b9.dir/build.make:99: cmTC_531b9] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_531b9/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_83729/fast && /bin/gmake  -f CMakeFiles/cmTC_83729.dir/build.make CMakeFiles/cmTC_83729.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_83729.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_83729.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_83729
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_83729.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_83729.dir/CheckFunctionExists.c.o -o cmTC_83729  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_83729.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `unvis'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_83729.dir/build.make:99: cmTC_83729] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_83729/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_bd6ef/fast && /bin/gmake  -f CMakeFiles/cmTC_bd6ef.dir/build.make CMakeFiles/cmTC_bd6ef.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bd6ef.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_bd6ef.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_bd6ef
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bd6ef.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_bd6ef.dir/CheckFunctionExists.c.o -o cmTC_bd6ef  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_bd6ef.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `__secure_getenv'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_bd6ef.dir/build.make:99: cmTC_bd6ef] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_bd6ef/fast] Error 2



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_8df9b/fast && /bin/gmake  -f CMakeFiles/cmTC_8df9b.dir/build.make CMakeFiles/cmTC_8df9b.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8df9b.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_8df9b.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_8df9b.dir/build.make:78: CMakeFiles/cmTC_8df9b.dir/CheckIncludeFile.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_8df9b/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_0a528/fast && /bin/gmake  -f CMakeFiles/cmTC_0a528.dir/build.make CMakeFiles/cmTC_0a528.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0a528.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_0a528.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_0a528.dir/build.make:78: CMakeFiles/cmTC_0a528.dir/CheckIncludeFile.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_0a528/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_c535b/fast && /bin/gmake  -f CMakeFiles/cmTC_c535b.dir/build.make CMakeFiles/cmTC_c535b.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c535b.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_c535b.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_c535b.dir/build.make:78: CMakeFiles/cmTC_c535b.dir/CheckIncludeFile.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_c535b/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_05b95/fast && /bin/gmake  -f CMakeFiles/cmTC_05b95.dir/build.make CMakeFiles/cmTC_05b95.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_05b95.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_05b95.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_05b95.dir/build.make:78: CMakeFiles/cmTC_05b95.dir/CheckIncludeFile.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_05b95/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_e1e07/fast && /bin/gmake  -f CMakeFiles/cmTC_e1e07.dir/build.make CMakeFiles/cmTC_e1e07.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e1e07.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_e1e07.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_e1e07.dir/build.make:78: CMakeFiles/cmTC_e1e07.dir/CheckIncludeFile.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_e1e07/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_0aa6b/fast && /bin/gmake  -f CMakeFiles/cmTC_0aa6b.dir/build.make CMakeFiles/cmTC_0aa6b.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0aa6b.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_0aa6b.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_0aa6b.dir/build.make:78: CMakeFiles/cmTC_0aa6b.dir/CheckIncludeFile.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_0aa6b/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_035d6/fast && /bin/gmake  -f CMakeFiles/cmTC_035d6.dir/build.make CMakeFiles/cmTC_035d6.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_035d6.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_035d6.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_035d6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_035d6.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_035d6.dir/CheckFunctionExistsEx.c.o -o cmTC_035d6  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_035d6.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `kqueue'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_035d6.dir/build.make:99: cmTC_035d6] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_035d6/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_c513c/fast && /bin/gmake  -f CMakeFiles/cmTC_c513c.dir/build.make CMakeFiles/cmTC_c513c.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c513c.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_c513c.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_c513c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c513c.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_c513c.dir/CheckFunctionExistsEx.c.o -o cmTC_c513c  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_c513c.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `port_create'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_c513c.dir/build.make:99: cmTC_c513c] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_c513c/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_37a17/fast && /bin/gmake  -f CMakeFiles/cmTC_37a17.dir/build.make CMakeFiles/cmTC_37a17.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_37a17.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_37a17.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_37a17
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_37a17.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_37a17.dir/CheckFunctionExistsEx.c.o -o cmTC_37a17  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_37a17.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `strlcpy'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_37a17.dir/build.make:99: cmTC_37a17] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_37a17/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_f88ef/fast && /bin/gmake  -f CMakeFiles/cmTC_f88ef.dir/build.make CMakeFiles/cmTC_f88ef.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f88ef.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_f88ef.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_f88ef
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f88ef.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_f88ef.dir/CheckFunctionExistsEx.c.o -o cmTC_f88ef  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_f88ef.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `sysctl'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_f88ef.dir/build.make:99: cmTC_f88ef] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_f88ef/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_c0137/fast && /bin/gmake  -f CMakeFiles/cmTC_c0137.dir/build.make CMakeFiles/cmTC_c0137.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c0137.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_c0137.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_c0137
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c0137.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_c0137.dir/CheckFunctionExistsEx.c.o -o cmTC_c0137  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_c0137.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `arc4random'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_c0137.dir/build.make:99: cmTC_c0137] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_c0137/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_037b2/fast && /bin/gmake  -f CMakeFiles/cmTC_037b2.dir/build.make CMakeFiles/cmTC_037b2.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_037b2.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_037b2.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_037b2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_037b2.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_037b2.dir/CheckFunctionExistsEx.c.o -o cmTC_037b2  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_037b2.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `arc4random_buf'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_037b2.dir/build.make:99: cmTC_037b2] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_037b2/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_8957f/fast && /bin/gmake  -f CMakeFiles/cmTC_8957f.dir/build.make CMakeFiles/cmTC_8957f.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8957f.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_8957f.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_8957f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8957f.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_8957f.dir/CheckFunctionExistsEx.c.o -o cmTC_8957f  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_8957f.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `issetugid'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_8957f.dir/build.make:99: cmTC_8957f] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_8957f/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_4be14/fast && /bin/gmake  -f CMakeFiles/cmTC_4be14.dir/build.make CMakeFiles/cmTC_4be14.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4be14.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_4be14.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_4be14
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4be14.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_4be14.dir/CheckFunctionExistsEx.c.o -o cmTC_4be14  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_4be14.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `mach_absolute_time'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_4be14.dir/build.make:99: cmTC_4be14] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_4be14/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_acefa/fast && /bin/gmake  -f CMakeFiles/cmTC_acefa.dir/build.make CMakeFiles/cmTC_acefa.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_acefa.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_acefa.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_acefa
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_acefa.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_acefa.dir/CheckFunctionExistsEx.c.o -o cmTC_acefa  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_acefa.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `timeradd'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_acefa.dir/build.make:99: cmTC_acefa] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_acefa/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_92af5/fast && /bin/gmake  -f CMakeFiles/cmTC_92af5.dir/build.make CMakeFiles/cmTC_92af5.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_92af5.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_92af5.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_92af5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_92af5.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_92af5.dir/CheckFunctionExistsEx.c.o -o cmTC_92af5  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_92af5.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `timerclear'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_92af5.dir/build.make:99: cmTC_92af5] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_92af5/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_51c95/fast && /bin/gmake  -f CMakeFiles/cmTC_51c95.dir/build.make CMakeFiles/cmTC_51c95.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_51c95.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_51c95.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_51c95
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_51c95.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_51c95.dir/CheckFunctionExistsEx.c.o -o cmTC_51c95  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_51c95.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `timercmp'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_51c95.dir/build.make:99: cmTC_51c95] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_51c95/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_19136/fast && /bin/gmake  -f CMakeFiles/cmTC_19136.dir/build.make CMakeFiles/cmTC_19136.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_19136.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_19136.dir/CheckFunctionExistsEx.c.o -c /www/server/mysql/src/extra/libevent/libevent-2.1.11-stable/cmake/CheckFunctionExistsEx.c
Linking C executable cmTC_19136
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_19136.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_19136.dir/CheckFunctionExistsEx.c.o -o cmTC_19136  -lm -lcrypt 
/bin/ld: CMakeFiles/cmTC_19136.dir/CheckFunctionExistsEx.c.o: in function `main':
CheckFunctionExistsEx.c:(.text+0x10): undefined reference to `timerisset'
collect2: error: ld returned 1 exit status
gmake[1]: *** [CMakeFiles/cmTC_19136.dir/build.make:99: cmTC_19136] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_19136/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_2f50b/fast && /bin/gmake  -f CMakeFiles/cmTC_2f50b.dir/build.make CMakeFiles/cmTC_2f50b.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2f50b.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_2f50b.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_2f50b.dir/build.make:78: CMakeFiles/cmTC_2f50b.dir/CheckPrototypeDefinition.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_2f50b/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_e1ca9/fast && /bin/gmake  -f CMakeFiles/cmTC_e1ca9.dir/build.make CMakeFiles/cmTC_e1ca9.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e1ca9.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_e1ca9.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_e1ca9.dir/build.make:78: CMakeFiles/cmTC_e1ca9.dir/CheckPrototypeDefinition.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_e1ca9/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_b82ed/fast && /bin/gmake  -f CMakeFiles/cmTC_b82ed.dir/build.make CMakeFiles/cmTC_b82ed.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b82ed.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_b82ed.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_b82ed.dir/build.make:78: CMakeFiles/cmTC_b82ed.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_b82ed/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_6a78e/fast && /bin/gmake  -f CMakeFiles/cmTC_6a78e.dir/build.make CMakeFiles/cmTC_6a78e.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6a78e.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_6a78e.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_6a78e.dir/build.make:78: CMakeFiles/cmTC_6a78e.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_6a78e/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_f85d9/fast && /bin/gmake  -f CMakeFiles/cmTC_f85d9.dir/build.make CMakeFiles/cmTC_f85d9.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f85d9.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_f85d9.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_f85d9.dir/build.make:78: CMakeFiles/cmTC_f85d9.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_f85d9/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_02455/fast && /bin/gmake  -f CMakeFiles/cmTC_02455.dir/build.make CMakeFiles/cmTC_02455.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_02455.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_02455.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_02455.dir/build.make:78: CMakeFiles/cmTC_02455.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_02455/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_0caf0/fast && /bin/gmake  -f CMakeFiles/cmTC_0caf0.dir/build.make CMakeFiles/cmTC_0caf0.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0caf0.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_0caf0.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_0caf0.dir/build.make:78: CMakeFiles/cmTC_0caf0.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_0caf0/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_6931b/fast && /bin/gmake  -f CMakeFiles/cmTC_6931b.dir/build.make CMakeFiles/cmTC_6931b.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6931b.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_6931b.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_6931b.dir/build.make:78: CMakeFiles/cmTC_6931b.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_6931b/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_3743c/fast && /bin/gmake  -f CMakeFiles/cmTC_3743c.dir/build.make CMakeFiles/cmTC_3743c.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3743c.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_3743c.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_3743c.dir/build.make:78: CMakeFiles/cmTC_3743c.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_3743c/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_3f646/fast && /bin/gmake  -f CMakeFiles/cmTC_3f646.dir/build.make CMakeFiles/cmTC_3f646.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3f646.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_3f646.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_3f646.dir/build.make:78: CMakeFiles/cmTC_3f646.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_3f646/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;
}

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_5ab2e/fast && /bin/gmake  -f CMakeFiles/cmTC_5ab2e.dir/build.make CMakeFiles/cmTC_5ab2e.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5ab2e.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_5ab2e.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_5ab2e.dir/build.make:78: CMakeFiles/cmTC_5ab2e.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_5ab2e/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_c9f12/fast && /bin/gmake  -f CMakeFiles/cmTC_c9f12.dir/build.make CMakeFiles/cmTC_c9f12.dir/build
gmake[1]: Entering directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c9f12.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_c9f12.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_c9f12.dir/build.make:78: CMakeFiles/cmTC_c9f12.dir/src.c.o] Error 1
gmake[1]: Leaving directory '/www/server/mysql/src/install/CMakeFiles/CMakeTmp'
gmake: *** [Makefile:127: cmTC_c9f12/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);
}
