Hi,
i'm trying to build the package as follows:
...
sudo apt install build-essential cmake libreadline-dev libssl-dev
liblzo2-dev libacl1-dev
git clone https://github.com/bareos/bareos.git
cd bareos
mkdir build
cd build
cmake -Dclient-only=yes -Dconfdir=/etc/bareos ../
...
The building process aborts with an error message.
I am attaching the log file with the error message.
Do you have a tip where to look for the error?
[email protected] schrieb am Freitag, 10. Dezember 2021 um
19:30:31 UTC+1:
> Hello,
>
>
> Am 10.12.2021 um 17:28 schrieb [email protected] <
> [email protected]>:
>
> Why am I not being offered the current version for installation?
>
>
> You used the correct bareos.list, but the repo does not contain prebuilt
> packages for the armhf architecture of your Raspberry. If you want to use
> newer version, you can build the packages yourself using the most recent
> version published on Github.
>
> Regards,
> Andreas
>
--
You received this message because you are subscribed to the Google Groups
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/bareos-users/de79fe8d-a617-4ca8-9554-88a2323dbf22n%40googlegroups.com.
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8a0f3/fast && /usr/bin/make -f CMakeFiles/cmTC_8a0f3.dir/build.make CMakeFiles/cmTC_8a0f3.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_8a0f3.dir/src.c.o
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_8a0f3.dir/src.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_8a0f3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8a0f3.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_8a0f3.dir/src.c.o -o cmTC_8a0f3
/usr/bin/ld: CMakeFiles/cmTC_8a0f3.dir/src.c.o: in function `main':
src.c:(.text+0x40): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x4c): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x5c): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_8a0f3.dir/build.make:87: cmTC_8a0f3] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_8a0f3/fast] Fehler 2
Source file was:
#include <pthread.h>
void* test_func(void* data)
{
return data;
}
int main(void)
{
pthread_t thread;
pthread_create(&thread, NULL, test_func, NULL);
pthread_detach(thread);
pthread_join(thread, NULL);
pthread_atfork(NULL, NULL, NULL);
pthread_exit(NULL);
return 0;
}
Determining if files pthread.h;pthread_np.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_92544/fast && /usr/bin/make -f CMakeFiles/cmTC_92544.dir/build.make CMakeFiles/cmTC_92544.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_92544.dir/HAVE_PTHREAD_NP_H.c.o
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -o CMakeFiles/cmTC_92544.dir/HAVE_PTHREAD_NP_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_PTHREAD_NP_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_PTHREAD_NP_H.c:3:10: fatal error: pthread_np.h: Datei oder Verzeichnis nicht gefunden
#include <pthread_np.h>
^~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_92544.dir/build.make:66: CMakeFiles/cmTC_92544.dir/HAVE_PTHREAD_NP_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_92544/fast] Fehler 2
Source:
/* */
#include <pthread.h>
#include <pthread_np.h>
int main(void){return 0;}
Performing C SOURCE FILE Test HAVE_PTHREAD_ATTR_GET_NP failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_7346f/fast && /usr/bin/make -f CMakeFiles/cmTC_7346f.dir/build.make CMakeFiles/cmTC_7346f.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_7346f.dir/src.c.o
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -DHAVE_PTHREAD_ATTR_GET_NP -o CMakeFiles/cmTC_7346f.dir/src.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/src.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/src.c: In function ‘main’:
/tmp/bareos/build/CMakeFiles/CMakeTmp/src.c:3:36: warning: implicit declaration of function ‘pthread_attr_get_np’; did you mean ‘pthread_attr_getscope’? [-Wimplicit-function-declaration]
int main() { pthread_attr_t a; pthread_attr_get_np(pthread_self(), &a); }
^~~~~~~~~~~~~~~~~~~
pthread_attr_getscope
Linking C executable cmTC_7346f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7346f.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -DHAVE_PTHREAD_ATTR_GET_NP CMakeFiles/cmTC_7346f.dir/src.c.o -o cmTC_7346f /usr/lib/arm-linux-gnueabihf/libpthread.so
/usr/bin/ld: CMakeFiles/cmTC_7346f.dir/src.c.o: in function `main':
src.c:(.text+0x20): undefined reference to `pthread_attr_get_np'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_7346f.dir/build.make:88: cmTC_7346f] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_7346f/fast] Fehler 2
Source file was:
#include <pthread.h>
int main() { pthread_attr_t a; pthread_attr_get_np(pthread_self(), &a); }
Determining if files afs/afsint.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_74041/fast && /usr/bin/make -f CMakeFiles/cmTC_74041.dir/build.make CMakeFiles/cmTC_74041.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_74041.dir/HAVE_AFS_AFSINT_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_74041.dir/HAVE_AFS_AFSINT_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_AFS_AFSINT_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_AFS_AFSINT_H.c:2:10: fatal error: afs/afsint.h: Datei oder Verzeichnis nicht gefunden
#include <afs/afsint.h>
^~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_74041.dir/build.make:66: CMakeFiles/cmTC_74041.dir/HAVE_AFS_AFSINT_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_74041/fast] Fehler 2
Source:
/* */
#include <afs/afsint.h>
int main(void){return 0;}
Determining if files afs/venus.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_a0af4/fast && /usr/bin/make -f CMakeFiles/cmTC_a0af4.dir/build.make CMakeFiles/cmTC_a0af4.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_a0af4.dir/HAVE_AFS_VENUS_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_a0af4.dir/HAVE_AFS_VENUS_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_AFS_VENUS_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_AFS_VENUS_H.c:2:10: fatal error: afs/venus.h: Datei oder Verzeichnis nicht gefunden
#include <afs/venus.h>
^~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_a0af4.dir/build.make:66: CMakeFiles/cmTC_a0af4.dir/HAVE_AFS_VENUS_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_a0af4/fast] Fehler 2
Source:
/* */
#include <afs/venus.h>
int main(void){return 0;}
Determining if files attr.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e14ed/fast && /usr/bin/make -f CMakeFiles/cmTC_e14ed.dir/build.make CMakeFiles/cmTC_e14ed.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_e14ed.dir/HAVE_ATTR_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_e14ed.dir/HAVE_ATTR_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_ATTR_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_ATTR_H.c:2:10: fatal error: attr.h: Datei oder Verzeichnis nicht gefunden
#include <attr.h>
^~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_e14ed.dir/build.make:66: CMakeFiles/cmTC_e14ed.dir/HAVE_ATTR_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_e14ed/fast] Fehler 2
Source:
/* */
#include <attr.h>
int main(void){return 0;}
Determining if files demangle.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_fed8c/fast && /usr/bin/make -f CMakeFiles/cmTC_fed8c.dir/build.make CMakeFiles/cmTC_fed8c.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_fed8c.dir/HAVE_DEMANGLE_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_fed8c.dir/HAVE_DEMANGLE_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_DEMANGLE_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_DEMANGLE_H.c:2:10: fatal error: demangle.h: Datei oder Verzeichnis nicht gefunden
#include <demangle.h>
^~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_fed8c.dir/build.make:66: CMakeFiles/cmTC_fed8c.dir/HAVE_DEMANGLE_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_fed8c/fast] Fehler 2
Source:
/* */
#include <demangle.h>
int main(void){return 0;}
Determining if files libutil.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_5aa49/fast && /usr/bin/make -f CMakeFiles/cmTC_5aa49.dir/build.make CMakeFiles/cmTC_5aa49.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_5aa49.dir/HAVE_LIBUTIL_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_5aa49.dir/HAVE_LIBUTIL_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_LIBUTIL_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_LIBUTIL_H.c:2:10: fatal error: libutil.h: Datei oder Verzeichnis nicht gefunden
#include <libutil.h>
^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_5aa49.dir/build.make:66: CMakeFiles/cmTC_5aa49.dir/HAVE_LIBUTIL_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_5aa49/fast] Fehler 2
Source:
/* */
#include <libutil.h>
int main(void){return 0;}
Determining if files mtio.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_baff1/fast && /usr/bin/make -f CMakeFiles/cmTC_baff1.dir/build.make CMakeFiles/cmTC_baff1.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_baff1.dir/HAVE_MTIO_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_baff1.dir/HAVE_MTIO_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_MTIO_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_MTIO_H.c:2:10: fatal error: mtio.h: Datei oder Verzeichnis nicht gefunden
#include <mtio.h>
^~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_baff1.dir/build.make:66: CMakeFiles/cmTC_baff1.dir/HAVE_MTIO_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_baff1/fast] Fehler 2
Source:
/* */
#include <mtio.h>
int main(void){return 0;}
Determining if files sys/types.h;sys/acl.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f2886/fast && /usr/bin/make -f CMakeFiles/cmTC_f2886.dir/build.make CMakeFiles/cmTC_f2886.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_f2886.dir/HAVE_SYS_ACL_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_f2886.dir/HAVE_SYS_ACL_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_ACL_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_ACL_H.c:3:10: fatal error: sys/acl.h: Datei oder Verzeichnis nicht gefunden
#include <sys/acl.h>
^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_f2886.dir/build.make:66: CMakeFiles/cmTC_f2886.dir/HAVE_SYS_ACL_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_f2886/fast] Fehler 2
Source:
/* */
#include <sys/types.h>
#include <sys/acl.h>
int main(void){return 0;}
Determining if files sys/attr.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_70238/fast && /usr/bin/make -f CMakeFiles/cmTC_70238.dir/build.make CMakeFiles/cmTC_70238.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_70238.dir/HAVE_SYS_ATTR_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_70238.dir/HAVE_SYS_ATTR_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_ATTR_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_ATTR_H.c:2:10: fatal error: sys/attr.h: Datei oder Verzeichnis nicht gefunden
#include <sys/attr.h>
^~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_70238.dir/build.make:66: CMakeFiles/cmTC_70238.dir/HAVE_SYS_ATTR_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_70238/fast] Fehler 2
Source:
/* */
#include <sys/attr.h>
int main(void){return 0;}
Determining if files sys/capability.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_aff8f/fast && /usr/bin/make -f CMakeFiles/cmTC_aff8f.dir/build.make CMakeFiles/cmTC_aff8f.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_aff8f.dir/HAVE_SYS_CAPABILITY_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_aff8f.dir/HAVE_SYS_CAPABILITY_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_CAPABILITY_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_CAPABILITY_H.c:2:10: fatal error: sys/capability.h: Datei oder Verzeichnis nicht gefunden
#include <sys/capability.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_aff8f.dir/build.make:66: CMakeFiles/cmTC_aff8f.dir/HAVE_SYS_CAPABILITY_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_aff8f/fast] Fehler 2
Source:
/* */
#include <sys/capability.h>
int main(void){return 0;}
Determining if files sys/ea.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_4a901/fast && /usr/bin/make -f CMakeFiles/cmTC_4a901.dir/build.make CMakeFiles/cmTC_4a901.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_4a901.dir/HAVE_SYS_EA_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_4a901.dir/HAVE_SYS_EA_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EA_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EA_H.c:2:10: fatal error: sys/ea.h: Datei oder Verzeichnis nicht gefunden
#include <sys/ea.h>
^~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_4a901.dir/build.make:66: CMakeFiles/cmTC_4a901.dir/HAVE_SYS_EA_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_4a901/fast] Fehler 2
Source:
/* */
#include <sys/ea.h>
int main(void){return 0;}
Determining if files sys/types.h;sys/extattr.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f752e/fast && /usr/bin/make -f CMakeFiles/cmTC_f752e.dir/build.make CMakeFiles/cmTC_f752e.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_f752e.dir/HAVE_SYS_EXTATTR_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_f752e.dir/HAVE_SYS_EXTATTR_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EXTATTR_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_EXTATTR_H.c:3:10: fatal error: sys/extattr.h: Datei oder Verzeichnis nicht gefunden
#include <sys/extattr.h>
^~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_f752e.dir/build.make:66: CMakeFiles/cmTC_f752e.dir/HAVE_SYS_EXTATTR_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_f752e/fast] Fehler 2
Source:
/* */
#include <sys/types.h>
#include <sys/extattr.h>
int main(void){return 0;}
Determining if files sys/nvpair.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_b1031/fast && /usr/bin/make -f CMakeFiles/cmTC_b1031.dir/build.make CMakeFiles/cmTC_b1031.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_b1031.dir/HAVE_SYS_NVPAIR_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_b1031.dir/HAVE_SYS_NVPAIR_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_NVPAIR_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_NVPAIR_H.c:2:10: fatal error: sys/nvpair.h: Datei oder Verzeichnis nicht gefunden
#include <sys/nvpair.h>
^~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_b1031.dir/build.make:66: CMakeFiles/cmTC_b1031.dir/HAVE_SYS_NVPAIR_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_b1031/fast] Fehler 2
Source:
/* */
#include <sys/nvpair.h>
int main(void){return 0;}
Determining if files sys/types.h;sys/tape.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_022db/fast && /usr/bin/make -f CMakeFiles/cmTC_022db.dir/build.make CMakeFiles/cmTC_022db.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_022db.dir/HAVE_SYS_TAPE_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_022db.dir/HAVE_SYS_TAPE_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_TAPE_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_TAPE_H.c:3:10: fatal error: sys/tape.h: Datei oder Verzeichnis nicht gefunden
#include <sys/tape.h>
^~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_022db.dir/build.make:66: CMakeFiles/cmTC_022db.dir/HAVE_SYS_TAPE_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_022db/fast] Fehler 2
Source:
/* */
#include <sys/types.h>
#include <sys/tape.h>
int main(void){return 0;}
Determining if files umem.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_90653/fast && /usr/bin/make -f CMakeFiles/cmTC_90653.dir/build.make CMakeFiles/cmTC_90653.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_90653.dir/HAVE_UMEM_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_90653.dir/HAVE_UMEM_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_UMEM_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_UMEM_H.c:2:10: fatal error: umem.h: Datei oder Verzeichnis nicht gefunden
#include <umem.h>
^~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_90653.dir/build.make:66: CMakeFiles/cmTC_90653.dir/HAVE_UMEM_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_90653/fast] Fehler 2
Source:
/* */
#include <umem.h>
int main(void){return 0;}
Determining if files sys/proplist.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_29b8c/fast && /usr/bin/make -f CMakeFiles/cmTC_29b8c.dir/build.make CMakeFiles/cmTC_29b8c.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_29b8c.dir/HAVE_SYS_PROPLIST_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_29b8c.dir/HAVE_SYS_PROPLIST_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PROPLIST_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_PROPLIST_H.c:2:10: fatal error: sys/proplist.h: Datei oder Verzeichnis nicht gefunden
#include <sys/proplist.h>
^~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_29b8c.dir/build.make:66: CMakeFiles/cmTC_29b8c.dir/HAVE_SYS_PROPLIST_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_29b8c/fast] Fehler 2
Source:
/* */
#include <sys/proplist.h>
int main(void){return 0;}
Determining if the ceph_statx exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_0a18f/fast && /usr/bin/make -f CMakeFiles/cmTC_0a18f.dir/build.make CMakeFiles/cmTC_0a18f.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_0a18f.dir/CheckSymbolExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_0a18f.dir/CheckSymbolExists.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:3:10: fatal error: cephfs/libcephfs.h: Datei oder Verzeichnis nicht gefunden
#include <cephfs/libcephfs.h>
^~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_0a18f.dir/build.make:66: CMakeFiles/cmTC_0a18f.dir/CheckSymbolExists.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_0a18f/fast] Fehler 2
File /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <sys/stat.h>
#include <cephfs/libcephfs.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef ceph_statx
return ((int*)(&ceph_statx))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if files rados/librados.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_6c8a2/fast && /usr/bin/make -f CMakeFiles/cmTC_6c8a2.dir/build.make CMakeFiles/cmTC_6c8a2.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_6c8a2.dir/HAVE_RADOS_LIBRADOS_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_6c8a2.dir/HAVE_RADOS_LIBRADOS_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_RADOS_LIBRADOS_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_RADOS_LIBRADOS_H.c:2:10: fatal error: rados/librados.h: Datei oder Verzeichnis nicht gefunden
#include <rados/librados.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_6c8a2.dir/build.make:66: CMakeFiles/cmTC_6c8a2.dir/HAVE_RADOS_LIBRADOS_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_6c8a2/fast] Fehler 2
Source:
/* */
#include <rados/librados.h>
int main(void){return 0;}
Determining if files radosstriper/libradosstriper.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_16502/fast && /usr/bin/make -f CMakeFiles/cmTC_16502.dir/build.make CMakeFiles/cmTC_16502.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_16502.dir/HAVE_RADOSSTRIPER_LIBRADOSSTRIPER_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_16502.dir/HAVE_RADOSSTRIPER_LIBRADOSSTRIPER_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_RADOSSTRIPER_LIBRADOSSTRIPER_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_RADOSSTRIPER_LIBRADOSSTRIPER_H.c:2:10: fatal error: radosstriper/libradosstriper.h: Datei oder Verzeichnis nicht gefunden
#include <radosstriper/libradosstriper.h>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_16502.dir/build.make:66: CMakeFiles/cmTC_16502.dir/HAVE_RADOSSTRIPER_LIBRADOSSTRIPER_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_16502/fast] Fehler 2
Source:
/* */
#include <radosstriper/libradosstriper.h>
int main(void){return 0;}
Determining if files glusterfs/api/glfs.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_da611/fast && /usr/bin/make -f CMakeFiles/cmTC_da611.dir/build.make CMakeFiles/cmTC_da611.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_da611.dir/HAVE_GLUSTERFS_API_GLFS_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_da611.dir/HAVE_GLUSTERFS_API_GLFS_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_GLUSTERFS_API_GLFS_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_GLUSTERFS_API_GLFS_H.c:2:10: fatal error: glusterfs/api/glfs.h: Datei oder Verzeichnis nicht gefunden
#include <glusterfs/api/glfs.h>
^~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_da611.dir/build.make:66: CMakeFiles/cmTC_da611.dir/HAVE_GLUSTERFS_API_GLFS_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_da611/fast] Fehler 2
Source:
/* */
#include <glusterfs/api/glfs.h>
int main(void){return 0;}
Determining if files sys/types.h;sys/scsi/impl/uscsi.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_50d2e/fast && /usr/bin/make -f CMakeFiles/cmTC_50d2e.dir/build.make CMakeFiles/cmTC_50d2e.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_50d2e.dir/HAVE_SYS_SCSI_IMPL_USCSI_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_50d2e.dir/HAVE_SYS_SCSI_IMPL_USCSI_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SCSI_IMPL_USCSI_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_SYS_SCSI_IMPL_USCSI_H.c:3:10: fatal error: sys/scsi/impl/uscsi.h: Datei oder Verzeichnis nicht gefunden
#include <sys/scsi/impl/uscsi.h>
^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_50d2e.dir/build.make:66: CMakeFiles/cmTC_50d2e.dir/HAVE_SYS_SCSI_IMPL_USCSI_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_50d2e/fast] Fehler 2
Source:
/* */
#include <sys/types.h>
#include <sys/scsi/impl/uscsi.h>
int main(void){return 0;}
Determining if files stdio.h;camlib.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_3cc57/fast && /usr/bin/make -f CMakeFiles/cmTC_3cc57.dir/build.make CMakeFiles/cmTC_3cc57.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_3cc57.dir/HAVE_CAMLIB_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_3cc57.dir/HAVE_CAMLIB_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_CAMLIB_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_CAMLIB_H.c:3:10: fatal error: camlib.h: Datei oder Verzeichnis nicht gefunden
#include <camlib.h>
^~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_3cc57.dir/build.make:66: CMakeFiles/cmTC_3cc57.dir/HAVE_CAMLIB_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_3cc57/fast] Fehler 2
Source:
/* */
#include <stdio.h>
#include <camlib.h>
int main(void){return 0;}
Determining if files cam/scsi/scsi_message.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_3956c/fast && /usr/bin/make -f CMakeFiles/cmTC_3956c.dir/build.make CMakeFiles/cmTC_3956c.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_3956c.dir/HAVE_CAM_SCSI_SCSI_MESSAGE_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_3956c.dir/HAVE_CAM_SCSI_SCSI_MESSAGE_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_CAM_SCSI_SCSI_MESSAGE_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_CAM_SCSI_SCSI_MESSAGE_H.c:2:10: fatal error: cam/scsi/scsi_message.h: Datei oder Verzeichnis nicht gefunden
#include <cam/scsi/scsi_message.h>
^~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_3956c.dir/build.make:66: CMakeFiles/cmTC_3956c.dir/HAVE_CAM_SCSI_SCSI_MESSAGE_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_3956c/fast] Fehler 2
Source:
/* */
#include <cam/scsi/scsi_message.h>
int main(void){return 0;}
Determining if files dev/scsipi/scsipi_all.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8cbce/fast && /usr/bin/make -f CMakeFiles/cmTC_8cbce.dir/build.make CMakeFiles/cmTC_8cbce.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_8cbce.dir/HAVE_DEV_SCSIPI_SCSIPI_ALL_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_8cbce.dir/HAVE_DEV_SCSIPI_SCSIPI_ALL_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_DEV_SCSIPI_SCSIPI_ALL_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_DEV_SCSIPI_SCSIPI_ALL_H.c:2:10: fatal error: dev/scsipi/scsipi_all.h: Datei oder Verzeichnis nicht gefunden
#include <dev/scsipi/scsipi_all.h>
^~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_8cbce.dir/build.make:66: CMakeFiles/cmTC_8cbce.dir/HAVE_DEV_SCSIPI_SCSIPI_ALL_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_8cbce/fast] Fehler 2
Source:
/* */
#include <dev/scsipi/scsipi_all.h>
int main(void){return 0;}
Determining if files scsi/uscsi_all.h exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_9a3c0/fast && /usr/bin/make -f CMakeFiles/cmTC_9a3c0.dir/build.make CMakeFiles/cmTC_9a3c0.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_9a3c0.dir/HAVE_USCSI_ALL_H.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_9a3c0.dir/HAVE_USCSI_ALL_H.c.o -c /tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_USCSI_ALL_H.c
/tmp/bareos/build/CMakeFiles/CheckIncludeFiles/HAVE_USCSI_ALL_H.c:2:10: fatal error: scsi/uscsi_all.h: Datei oder Verzeichnis nicht gefunden
#include <scsi/uscsi_all.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_9a3c0.dir/build.make:66: CMakeFiles/cmTC_9a3c0.dir/HAVE_USCSI_ALL_H.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_9a3c0/fast] Fehler 2
Source:
/* */
#include <scsi/uscsi_all.h>
int main(void){return 0;}
Determining if the function add_proplist_entry exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_c293f/fast && /usr/bin/make -f CMakeFiles/cmTC_c293f.dir/build.make CMakeFiles/cmTC_c293f.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_c293f.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=add_proplist_entry -o CMakeFiles/cmTC_c293f.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_c293f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c293f.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=add_proplist_entry CMakeFiles/cmTC_c293f.dir/CheckFunctionExists.c.o -o cmTC_c293f
/usr/bin/ld: CMakeFiles/cmTC_c293f.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `add_proplist_entry'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_c293f.dir/build.make:87: cmTC_c293f] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_c293f/fast] Fehler 2
Determining if the function closefrom exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_2197e/fast && /usr/bin/make -f CMakeFiles/cmTC_2197e.dir/build.make CMakeFiles/cmTC_2197e.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_2197e.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=closefrom -o CMakeFiles/cmTC_2197e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_2197e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2197e.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=closefrom CMakeFiles/cmTC_2197e.dir/CheckFunctionExists.c.o -o cmTC_2197e
/usr/bin/ld: CMakeFiles/cmTC_2197e.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `closefrom'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_2197e.dir/build.make:87: cmTC_2197e] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_2197e/fast] Fehler 2
Determining if the function extattr_get_file exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_b7009/fast && /usr/bin/make -f CMakeFiles/cmTC_b7009.dir/build.make CMakeFiles/cmTC_b7009.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_b7009.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_get_file -o CMakeFiles/cmTC_b7009.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_b7009
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7009.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_get_file CMakeFiles/cmTC_b7009.dir/CheckFunctionExists.c.o -o cmTC_b7009
/usr/bin/ld: CMakeFiles/cmTC_b7009.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_get_file'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_b7009.dir/build.make:87: cmTC_b7009] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_b7009/fast] Fehler 2
Determining if the function extattr_get_link exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_cc404/fast && /usr/bin/make -f CMakeFiles/cmTC_cc404.dir/build.make CMakeFiles/cmTC_cc404.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_cc404.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_get_link -o CMakeFiles/cmTC_cc404.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_cc404
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cc404.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_get_link CMakeFiles/cmTC_cc404.dir/CheckFunctionExists.c.o -o cmTC_cc404
/usr/bin/ld: CMakeFiles/cmTC_cc404.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_get_link'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_cc404.dir/build.make:87: cmTC_cc404] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_cc404/fast] Fehler 2
Determining if the function extattr_list_file exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e2861/fast && /usr/bin/make -f CMakeFiles/cmTC_e2861.dir/build.make CMakeFiles/cmTC_e2861.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_e2861.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_list_file -o CMakeFiles/cmTC_e2861.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_e2861
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e2861.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_list_file CMakeFiles/cmTC_e2861.dir/CheckFunctionExists.c.o -o cmTC_e2861
/usr/bin/ld: CMakeFiles/cmTC_e2861.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_list_file'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_e2861.dir/build.make:87: cmTC_e2861] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_e2861/fast] Fehler 2
Determining if the function extattr_list_link exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_d7647/fast && /usr/bin/make -f CMakeFiles/cmTC_d7647.dir/build.make CMakeFiles/cmTC_d7647.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_d7647.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_list_link -o CMakeFiles/cmTC_d7647.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_d7647
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d7647.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_list_link CMakeFiles/cmTC_d7647.dir/CheckFunctionExists.c.o -o cmTC_d7647
/usr/bin/ld: CMakeFiles/cmTC_d7647.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_list_link'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_d7647.dir/build.make:87: cmTC_d7647] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_d7647/fast] Fehler 2
Determining if the function extattr_namespace_to_string exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_ff2b1/fast && /usr/bin/make -f CMakeFiles/cmTC_ff2b1.dir/build.make CMakeFiles/cmTC_ff2b1.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_ff2b1.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_namespace_to_string -o CMakeFiles/cmTC_ff2b1.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_ff2b1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ff2b1.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_namespace_to_string CMakeFiles/cmTC_ff2b1.dir/CheckFunctionExists.c.o -o cmTC_ff2b1
/usr/bin/ld: CMakeFiles/cmTC_ff2b1.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_namespace_to_string'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_ff2b1.dir/build.make:87: cmTC_ff2b1] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_ff2b1/fast] Fehler 2
Determining if the function extattr_set_file exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_be440/fast && /usr/bin/make -f CMakeFiles/cmTC_be440.dir/build.make CMakeFiles/cmTC_be440.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_be440.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_set_file -o CMakeFiles/cmTC_be440.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_be440
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_be440.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_set_file CMakeFiles/cmTC_be440.dir/CheckFunctionExists.c.o -o cmTC_be440
/usr/bin/ld: CMakeFiles/cmTC_be440.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_set_file'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_be440.dir/build.make:87: cmTC_be440] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_be440/fast] Fehler 2
Determining if the function extattr_set_link exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_3aebe/fast && /usr/bin/make -f CMakeFiles/cmTC_3aebe.dir/build.make CMakeFiles/cmTC_3aebe.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_3aebe.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_set_link -o CMakeFiles/cmTC_3aebe.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_3aebe
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3aebe.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_set_link CMakeFiles/cmTC_3aebe.dir/CheckFunctionExists.c.o -o cmTC_3aebe
/usr/bin/ld: CMakeFiles/cmTC_3aebe.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_set_link'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_3aebe.dir/build.make:87: cmTC_3aebe] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_3aebe/fast] Fehler 2
Determining if the function extattr_string_to_namespace exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_93631/fast && /usr/bin/make -f CMakeFiles/cmTC_93631.dir/build.make CMakeFiles/cmTC_93631.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_93631.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_string_to_namespace -o CMakeFiles/cmTC_93631.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_93631
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_93631.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=extattr_string_to_namespace CMakeFiles/cmTC_93631.dir/CheckFunctionExists.c.o -o cmTC_93631
/usr/bin/ld: CMakeFiles/cmTC_93631.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `extattr_string_to_namespace'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_93631.dir/build.make:87: cmTC_93631] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_93631/fast] Fehler 2
Determining if the function getea exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_431b2/fast && /usr/bin/make -f CMakeFiles/cmTC_431b2.dir/build.make CMakeFiles/cmTC_431b2.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_431b2.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=getea -o CMakeFiles/cmTC_431b2.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_431b2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_431b2.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=getea CMakeFiles/cmTC_431b2.dir/CheckFunctionExists.c.o -o cmTC_431b2
/usr/bin/ld: CMakeFiles/cmTC_431b2.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `getea'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_431b2.dir/build.make:87: cmTC_431b2] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_431b2/fast] Fehler 2
Determining if the function getmntinfo exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_92ebb/fast && /usr/bin/make -f CMakeFiles/cmTC_92ebb.dir/build.make CMakeFiles/cmTC_92ebb.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_92ebb.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=getmntinfo -o CMakeFiles/cmTC_92ebb.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_92ebb
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_92ebb.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=getmntinfo CMakeFiles/cmTC_92ebb.dir/CheckFunctionExists.c.o -o cmTC_92ebb
/usr/bin/ld: CMakeFiles/cmTC_92ebb.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `getmntinfo'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_92ebb.dir/build.make:87: cmTC_92ebb] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_92ebb/fast] Fehler 2
Determining if the function getproplist exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_b4610/fast && /usr/bin/make -f CMakeFiles/cmTC_b4610.dir/build.make CMakeFiles/cmTC_b4610.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_b4610.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=getproplist -o CMakeFiles/cmTC_b4610.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_b4610
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b4610.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=getproplist CMakeFiles/cmTC_b4610.dir/CheckFunctionExists.c.o -o cmTC_b4610
/usr/bin/ld: CMakeFiles/cmTC_b4610.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `getproplist'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_b4610.dir/build.make:87: cmTC_b4610] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_b4610/fast] Fehler 2
Determining if the function get_proplist_entry exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_09357/fast && /usr/bin/make -f CMakeFiles/cmTC_09357.dir/build.make CMakeFiles/cmTC_09357.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_09357.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=get_proplist_entry -o CMakeFiles/cmTC_09357.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_09357
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_09357.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=get_proplist_entry CMakeFiles/cmTC_09357.dir/CheckFunctionExists.c.o -o cmTC_09357
/usr/bin/ld: CMakeFiles/cmTC_09357.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `get_proplist_entry'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_09357.dir/build.make:87: cmTC_09357] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_09357/fast] Fehler 2
Determining if the function glfs_readdirplus exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_5f84f/fast && /usr/bin/make -f CMakeFiles/cmTC_5f84f.dir/build.make CMakeFiles/cmTC_5f84f.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_5f84f.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=glfs_readdirplus -o CMakeFiles/cmTC_5f84f.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_5f84f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5f84f.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=glfs_readdirplus CMakeFiles/cmTC_5f84f.dir/CheckFunctionExists.c.o -o cmTC_5f84f
/usr/bin/ld: CMakeFiles/cmTC_5f84f.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `glfs_readdirplus'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_5f84f.dir/build.make:87: cmTC_5f84f] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_5f84f/fast] Fehler 2
Determining if the function lgetea exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_202b9/fast && /usr/bin/make -f CMakeFiles/cmTC_202b9.dir/build.make CMakeFiles/cmTC_202b9.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_202b9.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=lgetea -o CMakeFiles/cmTC_202b9.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_202b9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_202b9.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=lgetea CMakeFiles/cmTC_202b9.dir/CheckFunctionExists.c.o -o cmTC_202b9
/usr/bin/ld: CMakeFiles/cmTC_202b9.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `lgetea'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_202b9.dir/build.make:87: cmTC_202b9] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_202b9/fast] Fehler 2
Determining if the function listea exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_53b89/fast && /usr/bin/make -f CMakeFiles/cmTC_53b89.dir/build.make CMakeFiles/cmTC_53b89.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_53b89.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=listea -o CMakeFiles/cmTC_53b89.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_53b89
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_53b89.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=listea CMakeFiles/cmTC_53b89.dir/CheckFunctionExists.c.o -o cmTC_53b89
/usr/bin/ld: CMakeFiles/cmTC_53b89.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `listea'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_53b89.dir/build.make:87: cmTC_53b89] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_53b89/fast] Fehler 2
Determining if the function llistea exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_f5cde/fast && /usr/bin/make -f CMakeFiles/cmTC_f5cde.dir/build.make CMakeFiles/cmTC_f5cde.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_f5cde.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=llistea -o CMakeFiles/cmTC_f5cde.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_f5cde
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f5cde.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=llistea CMakeFiles/cmTC_f5cde.dir/CheckFunctionExists.c.o -o cmTC_f5cde
/usr/bin/ld: CMakeFiles/cmTC_f5cde.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `llistea'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_f5cde.dir/build.make:87: cmTC_f5cde] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_f5cde/fast] Fehler 2
Determining if the function lsetea exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_af348/fast && /usr/bin/make -f CMakeFiles/cmTC_af348.dir/build.make CMakeFiles/cmTC_af348.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_af348.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=lsetea -o CMakeFiles/cmTC_af348.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_af348
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af348.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=lsetea CMakeFiles/cmTC_af348.dir/CheckFunctionExists.c.o -o cmTC_af348
/usr/bin/ld: CMakeFiles/cmTC_af348.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `lsetea'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_af348.dir/build.make:87: cmTC_af348] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_af348/fast] Fehler 2
Determining if the function setea exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_64f61/fast && /usr/bin/make -f CMakeFiles/cmTC_64f61.dir/build.make CMakeFiles/cmTC_64f61.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_64f61.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=setea -o CMakeFiles/cmTC_64f61.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_64f61
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64f61.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=setea CMakeFiles/cmTC_64f61.dir/CheckFunctionExists.c.o -o cmTC_64f61
/usr/bin/ld: CMakeFiles/cmTC_64f61.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `setea'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_64f61.dir/build.make:87: cmTC_64f61] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_64f61/fast] Fehler 2
Determining if the function setproplist exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_52106/fast && /usr/bin/make -f CMakeFiles/cmTC_52106.dir/build.make CMakeFiles/cmTC_52106.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_52106.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=setproplist -o CMakeFiles/cmTC_52106.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_52106
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52106.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=setproplist CMakeFiles/cmTC_52106.dir/CheckFunctionExists.c.o -o cmTC_52106
/usr/bin/ld: CMakeFiles/cmTC_52106.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `setproplist'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_52106.dir/build.make:87: cmTC_52106] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_52106/fast] Fehler 2
Determining if the function hl_loa exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_7d28c/fast && /usr/bin/make -f CMakeFiles/cmTC_7d28c.dir/build.make CMakeFiles/cmTC_7d28c.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_7d28c.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=hl_loa -o CMakeFiles/cmTC_7d28c.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_7d28c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7d28c.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=hl_loa CMakeFiles/cmTC_7d28c.dir/CheckFunctionExists.c.o -o cmTC_7d28c
/usr/bin/ld: CMakeFiles/cmTC_7d28c.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `hl_loa'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_7d28c.dir/build.make:87: cmTC_7d28c] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_7d28c/fast] Fehler 2
Determining if the function sizeof_proplist_entry exists failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_9a338/fast && /usr/bin/make -f CMakeFiles/cmTC_9a338.dir/build.make CMakeFiles/cmTC_9a338.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_9a338.dir/CheckFunctionExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=sizeof_proplist_entry -o CMakeFiles/cmTC_9a338.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_9a338
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9a338.dir/link.txt --verbose=1
/usr/bin/cc -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DCHECK_FUNCTION_EXISTS=sizeof_proplist_entry CMakeFiles/cmTC_9a338.dir/CheckFunctionExists.c.o -o cmTC_9a338
/usr/bin/ld: CMakeFiles/cmTC_9a338.dir/CheckFunctionExists.c.o: in function `main':
CheckFunctionExists.c:(.text+0x14): undefined reference to `sizeof_proplist_entry'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_9a338.dir/build.make:87: cmTC_9a338] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_9a338/fast] Fehler 2
Determining if the __stub___lchmod exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_da34f/fast && /usr/bin/make -f CMakeFiles/cmTC_da34f.dir/build.make CMakeFiles/cmTC_da34f.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_da34f.dir/CheckSymbolExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_da34f.dir/CheckSymbolExists.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: features_h: Datei oder Verzeichnis nicht gefunden
#include <features_h>
^~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_da34f.dir/build.make:66: CMakeFiles/cmTC_da34f.dir/CheckSymbolExists.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_da34f/fast] Fehler 2
File /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <features_h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef __stub___lchmod
return ((int*)(&__stub___lchmod))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the rados_ioctx_set_namespace exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_c7a14/fast && /usr/bin/make -f CMakeFiles/cmTC_c7a14.dir/build.make CMakeFiles/cmTC_c7a14.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_c7a14.dir/CheckSymbolExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_c7a14.dir/CheckSymbolExists.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: rados/librados.h: Datei oder Verzeichnis nicht gefunden
#include <rados/librados.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_c7a14.dir/build.make:66: CMakeFiles/cmTC_c7a14.dir/CheckSymbolExists.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_c7a14/fast] Fehler 2
File /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <rados/librados.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef rados_ioctx_set_namespace
return ((int*)(&rados_ioctx_set_namespace))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the rados_nobjects_list_open exist failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_94dc1/fast && /usr/bin/make -f CMakeFiles/cmTC_94dc1.dir/build.make CMakeFiles/cmTC_94dc1.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_94dc1.dir/CheckSymbolExists.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -o CMakeFiles/cmTC_94dc1.dir/CheckSymbolExists.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:10: fatal error: rados/librados.h: Datei oder Verzeichnis nicht gefunden
#include <rados/librados.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_94dc1.dir/build.make:66: CMakeFiles/cmTC_94dc1.dir/CheckSymbolExists.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_94dc1/fast] Fehler 2
File /tmp/bareos/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <rados/librados.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef rados_nobjects_list_open
return ((int*)(&rados_nobjects_list_open))[argc];
#else
(void)argc;
return 0;
#endif
}
Performing C SOURCE FILE Test HAVE_ACL_TYPE_DEFAULT_DIR failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_984c9/fast && /usr/bin/make -f CMakeFiles/cmTC_984c9.dir/build.make CMakeFiles/cmTC_984c9.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_984c9.dir/src.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DHAVE_ACL_TYPE_DEFAULT_DIR -o CMakeFiles/cmTC_984c9.dir/src.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/src.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/src.c:2:13: fatal error: sys/acl.h: Datei oder Verzeichnis nicht gefunden
#include <sys/acl.h>
^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_984c9.dir/build.make:66: CMakeFiles/cmTC_984c9.dir/src.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_984c9/fast] Fehler 2
Source file was:
#include <sys/types.h>
#include <sys/acl.h>
int main(void) { return ACL_TYPE_DEFAULT_DIR; }
Performing C SOURCE FILE Test HAVE_ACL_TYPE_EXTENDED failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_5806d/fast && /usr/bin/make -f CMakeFiles/cmTC_5806d.dir/build.make CMakeFiles/cmTC_5806d.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_5806d.dir/src.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DHAVE_ACL_TYPE_EXTENDED -o CMakeFiles/cmTC_5806d.dir/src.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/src.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/src.c:2:13: fatal error: sys/acl.h: Datei oder Verzeichnis nicht gefunden
#include <sys/acl.h>
^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_5806d.dir/build.make:66: CMakeFiles/cmTC_5806d.dir/src.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_5806d/fast] Fehler 2
Source file was:
#include <sys/types.h>
#include <sys/acl.h>
int main(void) { return ACL_TYPE_EXTENDED; }
Performing C SOURCE FILE Test HAVE_ACL_TYPE_NFS4 failed with the following output:
Change Dir: /tmp/bareos/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_ec681/fast && /usr/bin/make -f CMakeFiles/cmTC_ec681.dir/build.make CMakeFiles/cmTC_ec681.dir/build
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird betreten
Building C object CMakeFiles/cmTC_ec681.dir/src.c.o
/usr/bin/cc -D_FILE_OFFSET_BITS=64 -fdebug-prefix-map=/tmp/bareos/core=. -fmacro-prefix-map=/tmp/bareos/core=. -Werror -Wall -DHAVE_ACL_TYPE_NFS4 -o CMakeFiles/cmTC_ec681.dir/src.c.o -c /tmp/bareos/build/CMakeFiles/CMakeTmp/src.c
/tmp/bareos/build/CMakeFiles/CMakeTmp/src.c:2:13: fatal error: sys/acl.h: Datei oder Verzeichnis nicht gefunden
#include <sys/acl.h>
^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_ec681.dir/build.make:66: CMakeFiles/cmTC_ec681.dir/src.c.o] Fehler 1
make[1]: Verzeichnis „/tmp/bareos/build/CMakeFiles/CMakeTmp“ wird verlassen
make: *** [Makefile:121: cmTC_ec681/fast] Fehler 2
Source file was:
#include <sys/types.h>
#include <sys/acl.h>
int main(void) { return ACL_TYPE_NFS4; }