# Log file generated by # # './configure --with-gcc=x86_64-pc-linux-gnu-gcc --with-g++=x86_64-pc-linux-gnu-g++ --disable-kmods --disable-alsa --disable-docs --disable-java --disable-devmapper --disable-pulse --disable-python' # ***** Checking environment ***** Determined build machine: linux.amd64, target machine: linux.amd64 ***** Checking kBuild ***** found ***** Checking gcc ***** found version 12.2.1 ***** Checking Open Watcom ***** ** Open Watcom was not found, using alternative BIOS sources! ***** Checking iasl ***** found version 20200717 ***** Checking yasm ***** found version 1.3.0 ***** Checking xslt ***** found ***** Checking pthread ***** compiling the following source file: #include #include extern "C" int main(void) { pthread_mutex_t mutex; if (pthread_mutex_init(&mutex, NULL)) { printf("pthread_mutex_init() failed\n"); return 1; } if (pthread_mutex_lock(&mutex)) { printf("pthread_mutex_lock() failed\n"); return 1; } if (pthread_mutex_unlock(&mutex)) { printf("pthread_mutex_unlock() failed\n"); return 1; } printf("found, OK.\n"); } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -lpthread executing the binary found, OK. ***** Checking libxml2 ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", LIBXML_DOTTED_VERSION); #if LIBXML_VERSION >= 20626 printf(", OK.\n"); return 0; #else printf(", expected version 2.6.26 or higher\n"); return 1; #endif } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -lxml2 -lpthread -I/usr/include/libxml2 executing the binary found version 2.10.3, OK. ***** Checking libIDL ***** found version 0.8.14 ***** Checking zlib ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", ZLIB_VERSION); #if ZLIB_VERNUM >= 0x1210 printf(", OK.\n"); return 0; #else printf(", expected version 1.2.1 or higher\n"); return 1; #endif } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -lz executing the binary found version 1.2.13, OK. ***** Checking liblzf ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found LZF API version %u.%u", LZF_VERSION >> 8, LZF_VERSION & 0xff); #if LZF_VERSION >= 0x0105 printf(", OK.\n"); return 0; #else printf(", expected version 1.5 or higher\n"); return 1; #endif } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -llzf -I/usr/include/liblzf /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc:2:10: fatal error: lzf.h: No such file or directory 2 | #include | ^~~~~~~ compilation terminated. ***** Checking ssl ***** compiling the following source file: #include #include #include extern "C" int main(void) { printf("found version %s", OPENSSL_VERSION_TEXT); SSL_library_init(); #if OPENSSL_VERSION_NUMBER >= 0x10001000 printf(", OK.\n"); return 0; #else printf(", expected version 1.0.1 or higher\n"); return 1; #endif } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -lssl -lcrypto executing the binary found version OpenSSL 3.0.7 1 Nov 2022, OK. ***** Checking libcurl ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", LIBCURL_VERSION); #if 10000*LIBCURL_VERSION_MAJOR + 100*LIBCURL_VERSION_MINOR + LIBCURL_VERSION_PATCH >= 71901 printf(", OK.\n"); return 0; #else printf(", expected version 7.19.1 or higher\n"); return 1; #endif } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -lcurl executing the binary found version 7.87.0, OK. ***** Checking libvpx ***** compiling the following source file: #include #include extern "C" int main(void) { int version = vpx_codec_version(); int verMajor = VPX_VERSION_MAJOR(version); int verMinor = VPX_VERSION_MINOR(version); int verPatch = VPX_VERSION_PATCH(version); printf("found version %d.%d.%d", verMajor, verMinor, verPatch); if ( verMajor == 1 && verMinor >= 0 || verMajor == 0 && verMinor == 9 && verPatch >= 5) { printf(", OK.\n"); return 0; } else { printf(", expected version 0.9.5 or higher\n"); return 1; } } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -lvpx -lm /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc: In function 'int main()': /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc:10:24: warning: suggest parentheses around '&&' within '||' [-Wparentheses] 10 | if ( verMajor == 1 && verMinor >= 0 | ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ executing the binary found version 1.12.0, OK. ***** Checking libtpms ***** Package libtpms was not found in the pkg-config search path. Perhaps you should add the directory containing `libtpms.pc' to the PKG_CONFIG_PATH environment variable Package 'libtpms', required by 'virtual:world', not found compiling the following source file: #include #include extern "C" int main(void) { TPMLIB_MainInit(); printf("found, OK.\n"); } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc:2:10: fatal error: libtpms/tpm_library.h: No such file or directory 2 | #include | ^~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. ***** Checking libpng ***** compiling the following source file: #include #include extern "C" int main(void) { printf("found version %s", PNG_LIBPNG_VER_STRING); #if PNG_LIBPNG_VER >= 10205 printf(", OK.\n"); return 0; #else printf(", expected version 1.2.5 or higher\n"); return 1; #endif } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -lpng executing the binary found version 1.6.39, OK. ***** Checking SDL ***** compiling the following source file: #include #include #include #undef main extern "C" int main(int argc, char** argv) { printf("found version %d.%d.%d", SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL); #if SDL_VERSION_ATLEAST(1,2,7) printf(", OK.\n"); return 0; #else printf(", expected version 1.2.7 or higher\n"); return 1; #endif } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -L/usr/lib -lSDL -I/usr/include/SDL /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: skipping incompatible /usr/lib/libSDL.so when searching for -lSDL /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: skipping incompatible /usr/lib/libm.so when searching for -lm /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: skipping incompatible /usr/lib/libm.a when searching for -lm /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: skipping incompatible /usr/lib/libc.a when searching for -lc executing the binary found version 1.2.60, OK. ***** Checking X libraries ***** compiling the following source file: #include #include extern "C" int main(void) { Display *dpy; int scrn_num; Screen *scrn; Window win; dpy = XOpenDisplay(NULL); scrn_num = DefaultScreen(dpy); scrn = ScreenOfDisplay(dpy, scrn_num); win = XCreateWindow(dpy, RootWindowOfScreen(scrn), 0, 0, 100, 100, 0, 16, InputOutput, CopyFromParent, 0, NULL); XDestroyWindow(dpy, win); XCloseDisplay(dpy); } using the following command line: x86_64-pc-linux-gnu-g++ -fPIC -g -O -Wall -o /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_out /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc -L/usr/X11R6/lib -L/usr/X11R6/lib64 -L/usr/local/lib -lXext -lX11 In file included from /var/tmp/portage/app-emulation/virtualbox-7.0.4-r1/work/VirtualBox-7.0.4/.tmp_src.cc:2: /usr/include/X11/Xlib.h:44:10: fatal error: X11/X.h: No such file or directory 44 | #include | ^~~~~~~~~ compilation terminated.