This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by vlc configure 2.2.4, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/vlc-2.2.4 --htmldir=/usr/share/doc/vlc-2.2.4/html --libdir=/usr/lib64 --with-default-font=/usr/share/fonts/dejavu//DejaVuSans.ttf --with-default-font-family=Sans --with-default-monospace-font=/usr/share/fonts/dejavu//DejaVuSansMono.ttf --with-default-monospace-font-family=Monospace --enable-vlc --docdir=/usr/share/doc/vlc-2.2.4 --disable-dependency-tracking --disable-optimizations --disable-update-check --enable-fast-install --enable-screen --enable-a52 --disable-aa --enable-alsa --disable-altivec --disable-atmo --disable-audioqueue --enable-avcodec --enable-avformat --disable-fribidi --disable-bluray --enable-vcd --disable-libcddb --disable-chromaprint --enable-dbus --disable-directfb --disable-directx --disable-dc1394 --disable-debug --enable-dca --enable-dvbpsi --enable-dvdread --enable-dvdnav --disable-dxva2 --enable-sout --disable-faad --disable-fdkaac --enable-flac --disable-fluidsynth --enable-fontconfig --enable-libgcrypt --disable-gme --disable-gnomevfs --disable-gnutls --disable-growl --disable-httpd --disable-dv1394 --disable-jack --enable-jpeg --disable-kate --with-kde-solid --disable-libass --disable-caca --enable-notify --enable-samplerate --disable-libtar --disable-tiger --disable-linsys --disable-lirc --disable-live555 --disable-lua --disable-macosx-dialog-provider --disable-macosx-eyetv --disable-macosx-qtkit --disable-macosx-quartztext --disable-mkv --enable-mmx --disable-mod --enable-mad --enable-libmpeg2 --enable-mtp --disable-mpc --enable-ncurses --disable-neon --enable-ogg --enable-mux_ogg --disable-omxil --disable-omxil-vout --disable-opencv --enable-glspectrum --disable-opus --disable-optimize-memory --enable-png --disable-postproc --disable-projectm --enable-pulse --enable-qt=5 --enable-freerdp --disable-realrtsp --disable-run-as-root --disable-smbclient --disable-schroedinger --enable-sdl --disable-sdl-image --disable-sid --disable-sftp --disable-shout --disable-skins2 --disable-speex --enable-sse --disable-svg --disable-svgdec --enable-swscale --enable-taglib --enable-theora --disable-tremor --enable-freetype --disable-twolame --enable-udev --disable-upnp --disable-v4l2 --enable-libva --disable-vcdx --disable-vdpau --disable-vlm --disable-vnc --enable-vorbis --disable-vpx --disable-wma-fixed --with-x --enable-x264 --disable-x265 --enable-xcb --enable-libxml2 --enable-xvideo --disable-bonjour --disable-zvbi --enable-telx --disable-asdcp --disable-coverage --disable-cprof --disable-crystalhd --disable-decklink --disable-gles1 --disable-gles2 --disable-goom --disable-kai --disable-kva --disable-maintainer-mode --disable-merge-ffmpeg --disable-mfx --disable-mmal-codec --disable-mmal-vout --disable-opensles --disable-oss --disable-quicktime --disable-rpi-omxil --disable-shine --disable-sndio --disable-vda --disable-vsxu --disable-wasapi ## --------- ## ## Platform. ## ## --------- ## hostname = naomi uname -m = x86_64 uname -r = 4.5.4 uname -s = Linux uname -v = #3 SMP Wed May 11 21:31:44 EDT 2016 /usr/bin/uname -p = AMD Phenom(tm) II X6 1055T Processor /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/lib/portage/python3.5/ebuild-helpers PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /opt/bin PATH: /usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0 PATH: /usr/x86_64-pc-linux-gnu/aarch64-unknown-linux-gnu/gcc-bin/5.4.0 PATH: /usr/x86_64-pc-linux-gnu/armv7a-unknown-linux-gnueabi/gcc-bin/5.4.0 ## ----------- ## ## Core tests. ## ## ----------- ## configure:4227: loading site script /usr/share/config.site | #!/bin/sh | # Copyright 2009-2014 Gentoo Foundation | # Distributed under the terms of the GNU General Public License v2 | | TOPDIR=/usr/share/crossdev/include/site | | config_site_arch() { | local host="${CHOST%%-*}" | | case ${host} in | arm*b*) host=armeb ;; | arm*) host=arm ;; | mips*l*) host=mipsel ;; | mips*) host=mips ;; | esac | | echo "${host}" | } | | config_site_names() { | local site_arch="$(config_site_arch)" | local sites="" | local x | | case ${CHOST} in | *-linux-*) sites="${sites} linux ${site_arch}-linux" ;; | *-darwin*) sites="${sites} darwin ${site_arch}-darwin" ;; | esac | | case ${CHOST} in | *-linux-uclibc*) sites="${sites} linux-uclibc ${site_arch}-linux-uclibc" ;; | *-linux-gnu*) sites="${sites} linux-gnu ${site_arch}-linux-gnu" ;; | *-linux-musl*) sites="${sites} linux-musl ${site_arch}-linux-musl" ;; | esac | | case ${CHOST} in | *-linux-uclibceabi*) sites="${sites} linux-uclibceabi ${site_arch}-linux-uclibceabi" ;; | *-linux-gnueabi*) sites="${sites} linux-gnueabi ${site_arch}-linux-gnueabi" ;; | esac | | for x in ${sites} ${CHOST}; do | [ -e "${TOPDIR}/${x}" ] && echo "${TOPDIR}/${x}" | done | } | | # Only kick in for cross-compiles so we don't break native builds #427184 | if [ "${CBUILD:-${CHOST}}" != "${CHOST}" ] ; then | sites="$(config_site_names)" | if [ -n "${sites}" ] ; then | for site in ${sites}; do | echo "${0##*/}: loading site script ${site}" | . "${site}" | done | fi | unset site sites | fi configure:4373: checking build system type configure:4387: result: x86_64-pc-linux-gnu configure:4407: checking host system type configure:4420: result: x86_64-pc-linux-gnu configure:4460: checking for a BSD-compatible install configure:4528: result: /usr/bin/install -c configure:4539: checking whether build environment is sane configure:4594: result: yes configure:4745: checking for a thread-safe mkdir -p configure:4784: result: /bin/mkdir -p configure:4791: checking for gawk configure:4807: found /usr/bin/gawk configure:4818: result: gawk configure:4829: checking whether make sets $(MAKE) configure:4851: result: yes configure:4880: checking whether make supports nested variables configure:4897: result: yes configure:4986: checking whether UID '250' is supported by ustar format configure:4989: result: yes configure:4996: checking whether GID '250' is supported by ustar format configure:4999: result: yes configure:5007: checking how to create a ustar tar archive configure:5018: tar --version tar (GNU tar) 1.29 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by John Gilmore and Jay Fenlason. configure:5021: $? = 0 configure:5061: tardir=conftest.dir && eval tar --format=ustar -chf - "$tardir" >conftest.tar configure:5064: $? = 0 configure:5068: tar -xf - &5 x86_64-pc-linux-gnu-gcc (Gentoo 5.4.0 p1.0, pie-0.6.5) 5.4.0 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:5602: $? = 0 configure:5591: x86_64-pc-linux-gnu-gcc -v >&5 Using built-in specs. COLLECT_GCC=/usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0/x86_64-pc-linux-gnu-gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-pc-linux-gnu/5.4.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: /tmp/portage/sys-devel/gcc-5.4.0/work/gcc-5.4.0/configure --host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0 --includedir=/usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include --datadir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0 --mandir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/man --infodir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/info --with-gxx-include-dir=/usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include/g++-v5 --with-python-dir=/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/python --enable-languages=c,c++,go,fortran --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --enable-nls --without-included-gettext --enable-checking=release --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion='Gentoo 5.4.0 p1.0, pie-0.6.5' --enable-libstdcxx-time --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-multilib --with-multilib-list=m32,m64 --disable-altivec --disable-fixed-point --enable-targets=all --disable-libgcj --enable-libgomp --disable-libmudflap --disable-libssp --disable-libcilkrts --disable-libmpx --enable-vtable-verify --enable-libvtv --enable-lto --without-isl --enable-libsanitizer Thread model: posix gcc version 5.4.0 (Gentoo 5.4.0 p1.0, pie-0.6.5) configure:5602: $? = 0 configure:5591: x86_64-pc-linux-gnu-gcc -V >&5 x86_64-pc-linux-gnu-gcc: error: unrecognized command line option '-V' x86_64-pc-linux-gnu-gcc: fatal error: no input files compilation terminated. configure:5602: $? = 1 configure:5591: x86_64-pc-linux-gnu-gcc -qversion >&5 x86_64-pc-linux-gnu-gcc: error: unrecognized command line option '-qversion' x86_64-pc-linux-gnu-gcc: fatal error: no input files compilation terminated. configure:5602: $? = 1 configure:5622: checking whether the C compiler works configure:5644: x86_64-pc-linux-gnu-gcc -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 configure:5648: $? = 0 configure:5696: result: yes configure:5699: checking for C compiler default output file name configure:5701: result: a.out configure:5707: checking for suffix of executables configure:5714: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 configure:5718: $? = 0 configure:5740: result: configure:5762: checking whether we are cross compiling configure:5770: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 configure:5774: $? = 0 configure:5781: ./conftest configure:5785: $? = 0 configure:5800: result: no configure:5805: checking for suffix of object files configure:5827: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:5831: $? = 0 configure:5852: result: o configure:5856: checking whether we are using the GNU C compiler configure:5875: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:5875: $? = 0 configure:5884: result: yes configure:5893: checking whether x86_64-pc-linux-gnu-gcc accepts -g configure:5913: x86_64-pc-linux-gnu-gcc -c -g conftest.c >&5 configure:5913: $? = 0 configure:5954: result: yes configure:5971: checking for x86_64-pc-linux-gnu-gcc option to accept ISO C89 configure:6034: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6034: $? = 0 configure:6047: result: none needed configure:6072: checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together configure:6094: x86_64-pc-linux-gnu-gcc -c conftest.c -o conftest2.o configure:6097: $? = 0 configure:6094: x86_64-pc-linux-gnu-gcc -c conftest.c -o conftest2.o configure:6097: $? = 0 configure:6109: result: yes configure:6128: checking dependency style of x86_64-pc-linux-gnu-gcc configure:6239: result: none configure:6254: checking for x86_64-pc-linux-gnu-gcc option to accept ISO C99 configure:6403: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6403: $? = 0 configure:6416: result: none needed configure:6437: checking how to run the C preprocessor configure:6468: x86_64-pc-linux-gnu-gcc -E conftest.c configure:6468: $? = 0 configure:6482: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:6482: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | /* end confdefs.h. */ | #include configure:6507: result: x86_64-pc-linux-gnu-gcc -E configure:6527: x86_64-pc-linux-gnu-gcc -E conftest.c configure:6527: $? = 0 configure:6541: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:6541: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | /* end confdefs.h. */ | #include configure:6570: checking for grep that handles long lines and -e configure:6628: result: /bin/grep configure:6633: checking for egrep configure:6695: result: /bin/grep -E configure:6700: checking for ANSI C header files configure:6720: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6720: $? = 0 configure:6793: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 configure:6793: $? = 0 configure:6793: ./conftest configure:6793: $? = 0 configure:6804: result: yes configure:6817: checking for sys/types.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for sys/stat.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for stdlib.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for string.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for memory.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for strings.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for inttypes.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for stdint.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6817: checking for unistd.h configure:6817: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6817: $? = 0 configure:6817: result: yes configure:6830: checking minix/config.h usability configure:6830: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:54:26: fatal error: minix/config.h: No such file or directory compilation terminated. configure:6830: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:6830: result: no configure:6830: checking minix/config.h presence configure:6830: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:21:26: fatal error: minix/config.h: No such file or directory compilation terminated. configure:6830: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include configure:6830: result: no configure:6830: checking for minix/config.h configure:6830: result: no configure:6851: checking whether it is safe to define __EXTENSIONS__ configure:6869: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:6869: $? = 0 configure:6876: result: yes configure:6922: checking for x86_64-pc-linux-gnu-g++ configure:6938: found /usr/bin/x86_64-pc-linux-gnu-g++ configure:6949: result: x86_64-pc-linux-gnu-g++ configure:7020: checking for C++ compiler version configure:7029: x86_64-pc-linux-gnu-g++ --version >&5 x86_64-pc-linux-gnu-g++ (Gentoo 5.4.0 p1.0, pie-0.6.5) 5.4.0 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:7040: $? = 0 configure:7029: x86_64-pc-linux-gnu-g++ -v >&5 Using built-in specs. COLLECT_GCC=/usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0/x86_64-pc-linux-gnu-g++ COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-pc-linux-gnu/5.4.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: /tmp/portage/sys-devel/gcc-5.4.0/work/gcc-5.4.0/configure --host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0 --includedir=/usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include --datadir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0 --mandir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/man --infodir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/info --with-gxx-include-dir=/usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include/g++-v5 --with-python-dir=/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/python --enable-languages=c,c++,go,fortran --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --enable-nls --without-included-gettext --enable-checking=release --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion='Gentoo 5.4.0 p1.0, pie-0.6.5' --enable-libstdcxx-time --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-multilib --with-multilib-list=m32,m64 --disable-altivec --disable-fixed-point --enable-targets=all --disable-libgcj --enable-libgomp --disable-libmudflap --disable-libssp --disable-libcilkrts --disable-libmpx --enable-vtable-verify --enable-libvtv --enable-lto --without-isl --enable-libsanitizer Thread model: posix gcc version 5.4.0 (Gentoo 5.4.0 p1.0, pie-0.6.5) configure:7040: $? = 0 configure:7029: x86_64-pc-linux-gnu-g++ -V >&5 x86_64-pc-linux-gnu-g++: error: unrecognized command line option '-V' x86_64-pc-linux-gnu-g++: fatal error: no input files compilation terminated. configure:7040: $? = 1 configure:7029: x86_64-pc-linux-gnu-g++ -qversion >&5 x86_64-pc-linux-gnu-g++: error: unrecognized command line option '-qversion' x86_64-pc-linux-gnu-g++: fatal error: no input files compilation terminated. configure:7040: $? = 1 configure:7044: checking whether we are using the GNU C++ compiler configure:7063: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:7063: $? = 0 configure:7072: result: yes configure:7081: checking whether x86_64-pc-linux-gnu-g++ accepts -g configure:7101: x86_64-pc-linux-gnu-g++ -c -g conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:7101: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:7116: x86_64-pc-linux-gnu-g++ -c conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:7116: $? = 0 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:7132: x86_64-pc-linux-gnu-g++ -c -g conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:7132: $? = 0 configure:7142: result: yes configure:7167: checking dependency style of x86_64-pc-linux-gnu-g++ configure:7278: result: none configure:7298: checking how to run the C preprocessor configure:7368: result: x86_64-pc-linux-gnu-gcc -E configure:7388: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/limits.h:25:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:168, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/syslimits.h:7, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:34, from conftest.c:32: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:7388: $? = 0 configure:7402: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:31:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:7402: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | /* end confdefs.h. */ | #include configure:7440: checking for x86_64-pc-linux-gnu-gcc configure:7456: found /usr/bin/x86_64-pc-linux-gnu-gcc configure:7467: result: x86_64-pc-linux-gnu-gcc configure:7536: checking for Objective C compiler version configure:7545: x86_64-pc-linux-gnu-gcc --version >&5 x86_64-pc-linux-gnu-gcc (Gentoo 5.4.0 p1.0, pie-0.6.5) 5.4.0 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:7556: $? = 0 configure:7545: x86_64-pc-linux-gnu-gcc -v >&5 Using built-in specs. COLLECT_GCC=/usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0/x86_64-pc-linux-gnu-gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-pc-linux-gnu/5.4.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: /tmp/portage/sys-devel/gcc-5.4.0/work/gcc-5.4.0/configure --host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/gcc-bin/5.4.0 --includedir=/usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include --datadir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0 --mandir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/man --infodir=/usr/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/info --with-gxx-include-dir=/usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include/g++-v5 --with-python-dir=/share/gcc-data/x86_64-pc-linux-gnu/5.4.0/python --enable-languages=c,c++,go,fortran --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --enable-nls --without-included-gettext --enable-checking=release --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion='Gentoo 5.4.0 p1.0, pie-0.6.5' --enable-libstdcxx-time --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-multilib --with-multilib-list=m32,m64 --disable-altivec --disable-fixed-point --enable-targets=all --disable-libgcj --enable-libgomp --disable-libmudflap --disable-libssp --disable-libcilkrts --disable-libmpx --enable-vtable-verify --enable-libvtv --enable-lto --without-isl --enable-libsanitizer Thread model: posix gcc version 5.4.0 (Gentoo 5.4.0 p1.0, pie-0.6.5) configure:7556: $? = 0 configure:7545: x86_64-pc-linux-gnu-gcc -V >&5 x86_64-pc-linux-gnu-gcc: error: unrecognized command line option '-V' x86_64-pc-linux-gnu-gcc: fatal error: no input files compilation terminated. configure:7556: $? = 1 configure:7545: x86_64-pc-linux-gnu-gcc -qversion >&5 x86_64-pc-linux-gnu-gcc: error: unrecognized command line option '-qversion' x86_64-pc-linux-gnu-gcc: fatal error: no input files compilation terminated. configure:7556: $? = 1 configure:7560: checking whether we are using the GNU Objective C compiler configure:7579: x86_64-pc-linux-gnu-gcc -c conftest.m >&5 x86_64-pc-linux-gnu-gcc: error: conftest.m: Objective-C compiler not installed on this system configure:7579: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | /* end confdefs.h. */ | | int | main () | { | #ifndef __GNUC__ | choke me | #endif | | ; | return 0; | } configure:7588: result: no configure:7597: checking whether x86_64-pc-linux-gnu-gcc accepts -g configure:7617: x86_64-pc-linux-gnu-gcc -c -g conftest.m >&5 x86_64-pc-linux-gnu-gcc: error: conftest.m: Objective-C compiler not installed on this system configure:7617: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:7632: x86_64-pc-linux-gnu-gcc -c conftest.m >&5 x86_64-pc-linux-gnu-gcc: error: conftest.m: Objective-C compiler not installed on this system configure:7632: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:7648: x86_64-pc-linux-gnu-gcc -c -g conftest.m >&5 x86_64-pc-linux-gnu-gcc: error: conftest.m: Objective-C compiler not installed on this system configure:7648: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:7658: result: no configure:7683: checking dependency style of x86_64-pc-linux-gnu-gcc configure:7792: result: none configure:7810: checking dependency style of x86_64-pc-linux-gnu-gcc configure:7919: result: none configure:7934: checking for egrep configure:7996: result: /bin/grep -E configure:8001: checking whether make sets $(MAKE) configure:8023: result: yes configure:8042: checking dependency style of x86_64-pc-linux-gnu-gcc configure:8151: result: none configure:8172: checking for desktop-file-validate configure:8188: found /usr/bin/desktop-file-validate configure:8199: result: desktop-file-validate configure:8215: checking for yasm configure:8231: found /usr/bin/yasm configure:8242: result: yasm configure:8254: checking for an ANSI C-conforming const configure:8320: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:8320: $? = 0 configure:8327: result: yes configure:8335: checking for inline configure:8351: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:8351: $? = 0 configure:8359: result: inline configure:8377: checking for C/C++ restrict keyword configure:8402: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:8402: $? = 0 configure:8410: result: __restrict configure:9017: checking for an Android system configure:9034: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:33:12: error: #error Not Android # error Not Android ^ configure:9034: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | /* end confdefs.h. */ | #ifndef __ANDROID__ | # error Not Android | #endif | | int | main () | { | ; | ; | return 0; | } | configure:9042: result: no configure:9065: checking for 3rd party libraries path ./contrib/x86_64-pc-linux-gnu not found ./contrib/x86_64-pc-linux-gnu not found ./extras/contrib/hosts/x86_64-pc-linux-gnu not found ./extras/contrib/hosts/x86_64-pc-linux-gnu not found configure:9086: result: not found configure:9213: checking how to print strings configure:9240: result: printf configure:9261: checking for a sed that does not truncate output configure:9325: result: /bin/sed configure:9343: checking for fgrep configure:9405: result: /bin/grep -F configure:9440: checking for ld used by x86_64-pc-linux-gnu-gcc configure:9507: result: /usr/x86_64-pc-linux-gnu/bin/ld configure:9514: checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld configure:9529: result: yes configure:9541: checking for BSD- or MS-compatible name lister (nm) configure:9595: result: /usr/bin/x86_64-pc-linux-gnu-nm -B configure:9725: checking the name lister (/usr/bin/x86_64-pc-linux-gnu-nm -B) interface configure:9732: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:9735: /usr/bin/x86_64-pc-linux-gnu-nm -B "conftest.o" configure:9738: output 0000000000000000 B some_variable configure:9745: result: BSD nm configure:9748: checking whether ln -s works configure:9752: result: yes configure:9760: checking the maximum length of command line arguments configure:9891: result: 1572864 configure:9939: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format configure:9979: result: func_convert_file_noop configure:9986: checking how to convert x86_64-pc-linux-gnu file names to toolchain format configure:10006: result: func_convert_file_noop configure:10013: checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files configure:10020: result: -r configure:10054: checking for x86_64-pc-linux-gnu-objdump configure:10070: found /usr/bin/x86_64-pc-linux-gnu-objdump configure:10081: result: x86_64-pc-linux-gnu-objdump configure:10150: checking how to recognize dependent libraries configure:10350: result: pass_all configure:10395: checking for x86_64-pc-linux-gnu-dlltool configure:10411: found /usr/bin/x86_64-pc-linux-gnu-dlltool configure:10422: result: x86_64-pc-linux-gnu-dlltool configure:10492: checking how to associate runtime and link libraries configure:10519: result: printf %s\n configure:10535: checking for x86_64-pc-linux-gnu-ar configure:10551: found /usr/bin/x86_64-pc-linux-gnu-ar configure:10562: result: x86_64-pc-linux-gnu-ar configure:10643: checking for archiver @FILE support configure:10660: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:10660: $? = 0 configure:10663: x86_64-pc-linux-gnu-ar cru libconftest.a @conftest.lst >&5 configure:10666: $? = 0 configure:10671: x86_64-pc-linux-gnu-ar cru libconftest.a @conftest.lst >&5 x86_64-pc-linux-gnu-ar: conftest.o: No such file or directory configure:10674: $? = 1 configure:10686: result: @ configure:10704: checking for x86_64-pc-linux-gnu-strip configure:10720: found /usr/bin/x86_64-pc-linux-gnu-strip configure:10731: result: x86_64-pc-linux-gnu-strip configure:10803: checking for x86_64-pc-linux-gnu-ranlib configure:10819: found /usr/bin/x86_64-pc-linux-gnu-ranlib configure:10830: result: x86_64-pc-linux-gnu-ranlib configure:10972: checking command to parse /usr/bin/x86_64-pc-linux-gnu-nm -B output from x86_64-pc-linux-gnu-gcc object configure:11125: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:11128: $? = 0 configure:11132: /usr/bin/x86_64-pc-linux-gnu-nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm configure:11135: $? = 0 configure:11201: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c conftstm.o >&5 configure:11204: $? = 0 configure:11242: result: ok configure:11289: checking for sysroot configure:11319: result: no configure:11326: checking for a working dd configure:11364: result: /bin/dd configure:11368: checking how to truncate binary pipes configure:11383: result: /bin/dd bs=4096 count=1 configure:11519: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:11522: $? = 0 configure:11672: checking for x86_64-pc-linux-gnu-mt configure:11702: result: no configure:11712: checking for mt configure:11742: result: no configure:11762: checking if : is a manifest tool configure:11768: : '-?' configure:11776: result: no configure:12450: checking for dlfcn.h configure:12450: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:12450: $? = 0 configure:12450: result: yes configure:13012: checking for objdir configure:13027: result: .libs configure:13291: checking if x86_64-pc-linux-gnu-gcc supports -fno-rtti -fno-exceptions configure:13309: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C configure:13313: $? = 0 configure:13326: result: no configure:13684: checking for x86_64-pc-linux-gnu-gcc option to produce PIC configure:13691: result: -fPIC -DPIC configure:13699: checking if x86_64-pc-linux-gnu-gcc PIC flag -fPIC -DPIC works configure:13717: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -fPIC -DPIC -DPIC conftest.c >&5 configure:13721: $? = 0 configure:13734: result: yes configure:13763: checking if x86_64-pc-linux-gnu-gcc static flag -static works configure:13791: result: yes configure:13806: checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o configure:13827: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -o out/conftest2.o conftest.c >&5 configure:13831: $? = 0 configure:13853: result: yes configure:13861: checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o configure:13908: result: yes configure:13941: checking whether the x86_64-pc-linux-gnu-gcc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries configure:15200: result: yes configure:15237: checking whether -lc should be explicitly linked in configure:15245: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 configure:15248: $? = 0 configure:15263: x86_64-pc-linux-gnu-gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 configure:15266: $? = 0 configure:15280: result: no configure:15440: checking dynamic linker characteristics configure:16034: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ -Wl,-rpath -Wl,/foo conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:16034: $? = 0 configure:16271: result: GNU/Linux ld.so configure:16393: checking how to hardcode library paths into programs configure:16418: result: immediate configure:16520: checking for shl_load configure:16520: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccpUdt3w.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `shl_load' collect2: error: ld returned 1 exit status configure:16520: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | /* Define shl_load to an innocuous variant, in case declares shl_load. | For example, HP-UX 11i declares gettimeofday. */ | #define shl_load innocuous_shl_load | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char shl_load (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef shl_load | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shl_load (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_shl_load || defined __stub___shl_load | choke me | #endif | | int | main () | { | return shl_load (); | ; | return 0; | } configure:16520: result: no configure:16524: checking for shl_load in -ldld configure:16549: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -ldld >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -ldld collect2: error: ld returned 1 exit status configure:16549: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shl_load (); | int | main () | { | return shl_load (); | ; | return 0; | } configure:16558: result: no configure:16563: checking for dlopen configure:16563: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccKkGVzM.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `dlopen' collect2: error: ld returned 1 exit status configure:16563: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | /* Define dlopen to an innocuous variant, in case declares dlopen. | For example, HP-UX 11i declares gettimeofday. */ | #define dlopen innocuous_dlopen | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char dlopen (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef dlopen | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char dlopen (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_dlopen || defined __stub___dlopen | choke me | #endif | | int | main () | { | return dlopen (); | ; | return 0; | } configure:16563: result: no configure:16567: checking for dlopen in -ldl configure:16592: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -ldl >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:16592: $? = 0 configure:16601: result: yes configure:16720: checking whether a program can dlopen itself configure:16800: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -DHAVE_DLFCN_H -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ -Wl,--export-dynamic conftest.c -ldl >&5 In file included from configure:16730:0: confdefs.h:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:16803: $? = 0 configure:16821: result: yes configure:16826: checking whether a statically linked program can dlopen itself configure:16906: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -DHAVE_DLFCN_H -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ -Wl,--export-dynamic -static conftest.c -ldl >&5 In file included from configure:16836:0: confdefs.h:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccGgFhWa.o: In function `main': conftest.c:(.text.startup+0x9): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/../../../../x86_64-pc-linux-gnu/bin/ld: dynamic STT_GNU_IFUNC symbol `strcmp' with pointer equality in `/usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/../../../../lib64/libc.a(strcmp.o)' can not be used when making an executable; recompile with -fPIE and relink with -pie collect2: error: ld returned 1 exit status configure:16909: $? = 1 configure:16927: result: no configure:16966: checking whether stripping libraries is possible configure:16971: result: yes configure:17006: checking if libtool supports shared libraries configure:17008: result: yes configure:17011: checking whether to build shared libraries configure:17036: result: yes configure:17039: checking whether to build static libraries configure:17043: result: no configure:17066: checking how to run the C++ preprocessor configure:17093: x86_64-pc-linux-gnu-g++ -E conftest.cpp conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/limits.h:25:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:168, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/syslimits.h:7, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:34, from conftest.cpp:35: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:17093: $? = 0 configure:17107: x86_64-pc-linux-gnu-g++ -E conftest.cpp conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.cpp:34:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:17107: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:17132: result: x86_64-pc-linux-gnu-g++ -E configure:17152: x86_64-pc-linux-gnu-g++ -E conftest.cpp conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/limits.h:25:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:168, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/syslimits.h:7, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:34, from conftest.cpp:35: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:17152: $? = 0 configure:17166: x86_64-pc-linux-gnu-g++ -E conftest.cpp conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.cpp:34:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:17166: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:17328: checking for ld used by x86_64-pc-linux-gnu-g++ configure:17395: result: /usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64 configure:17402: checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) is GNU ld configure:17417: result: yes configure:17472: checking whether the x86_64-pc-linux-gnu-g++ linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries configure:18545: result: yes configure:18581: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches conftest.cpp >&5 configure:18584: $? = 0 configure:19065: checking for x86_64-pc-linux-gnu-g++ option to produce PIC configure:19072: result: -fPIC -DPIC configure:19080: checking if x86_64-pc-linux-gnu-g++ PIC flag -fPIC -DPIC works configure:19098: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -fPIC -DPIC -DPIC conftest.cpp >&5 configure:19102: $? = 0 configure:19115: result: yes configure:19138: checking if x86_64-pc-linux-gnu-g++ static flag -static works configure:19166: result: yes configure:19178: checking if x86_64-pc-linux-gnu-g++ supports -c -o file.o configure:19199: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -o out/conftest2.o conftest.cpp >&5 configure:19203: $? = 0 configure:19225: result: yes configure:19230: checking if x86_64-pc-linux-gnu-g++ supports -c -o file.o configure:19277: result: yes configure:19307: checking whether the x86_64-pc-linux-gnu-g++ linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries configure:19347: result: yes configure:19488: checking dynamic linker characteristics configure:20246: result: GNU/Linux ld.so configure:20311: checking how to hardcode library paths into programs configure:20336: result: immediate configure:20401: checking for x86_64-pc-linux-gnu-windres configure:20417: found /usr/bin/x86_64-pc-linux-gnu-windres configure:20428: result: x86_64-pc-linux-gnu-windres configure:20575: checking for bash configure:20593: found /bin/bash configure:20605: result: /bin/bash configure:20613: checking if dolt supports this host configure:20645: result: yes, replacing libtool configure:20794: checking whether NLS is requested configure:20803: result: yes configure:20843: checking for msgfmt configure: trying /usr/bin/msgfmt... 0 translated messages. configure:20875: result: /usr/bin/msgfmt configure:20884: checking for gmsgfmt configure:20902: found /usr/bin/gmsgfmt configure:20915: result: /usr/bin/gmsgfmt configure:20965: checking for xgettext configure: trying /usr/bin/xgettext... /usr/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C configure:20997: result: /usr/bin/xgettext configure:21042: checking for msgmerge configure: trying /usr/bin/msgmerge... configure:21073: result: /usr/bin/msgmerge configure:21131: checking for ld used by x86_64-pc-linux-gnu-gcc configure:21198: result: /usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64 configure:21205: checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) is GNU ld configure:21220: result: yes configure:21227: checking for shared library run path origin configure:21240: result: done configure:21812: checking for CFPreferencesCopyAppValue configure:21830: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -Wl,-framework -Wl,CoreFoundation >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:34:42: fatal error: CoreFoundation/CFPreferences.h: No such file or directory compilation terminated. configure:21830: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include | int | main () | { | CFPreferencesCopyAppValue(NULL, NULL) | ; | return 0; | } configure:21839: result: no configure:21846: checking for CFLocaleCopyCurrent configure:21864: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -Wl,-framework -Wl,CoreFoundation >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:34:37: fatal error: CoreFoundation/CFLocale.h: No such file or directory compilation terminated. configure:21864: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include | int | main () | { | CFLocaleCopyCurrent(); | ; | return 0; | } configure:21873: result: no configure:21922: checking for GNU gettext in libc configure:21946: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:21946: $? = 0 configure:21955: result: yes configure:22783: checking whether to use NLS configure:22785: result: yes configure:22788: checking where the gettext function comes from configure:22799: result: libc configure:22887: checking for iconv configure:22911: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:22911: $? = 0 configure:22945: result: yes configure:22948: checking for working iconv configure:23068: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23068: $? = 0 configure:23068: ./conftest configure:23068: $? = 0 configure:23080: result: yes configure:23108: checking for iconv declaration configure:23137: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23137: $? = 0 configure:23148: result: extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); configure:23417: checking for buggy GNU/libc versions configure:23429: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/limits.h:25:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:168, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/syslimits.h:7, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:34, from conftest.c:41: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:23429: $? = 0 configure:23431: result: not present configure:23451: checking for shared objects suffix configure:23467: result: .so configure:23478: checking whether nanosleep is declared configure:23478: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23478: $? = 0 configure:23478: result: yes configure:23493: checking for daemon configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for fcntl configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for fstatvfs configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for fork configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:68:6: warning: conflicting types for built-in function 'fork' char fork (); ^ configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for getenv configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for getpwuid_r configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for isatty configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for lstat configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for memalign configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for mmap configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for open_memstream configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for openat configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for pread configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for posix_fadvise configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for posix_madvise configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for setlocale configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for stricmp configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccTVorc8.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `stricmp' collect2: error: ld returned 1 exit status configure:23493: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | /* end confdefs.h. */ | /* Define stricmp to an innocuous variant, in case declares stricmp. | For example, HP-UX 11i declares gettimeofday. */ | #define stricmp innocuous_stricmp | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char stricmp (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef stricmp | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char stricmp (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_stricmp || defined __stub___stricmp | choke me | #endif | | int | main () | { | return stricmp (); | ; | return 0; | } configure:23493: result: no configure:23493: checking for strnicmp configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccOkvVli.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `strnicmp' collect2: error: ld returned 1 exit status configure:23493: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | /* end confdefs.h. */ | /* Define strnicmp to an innocuous variant, in case declares strnicmp. | For example, HP-UX 11i declares gettimeofday. */ | #define strnicmp innocuous_strnicmp | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strnicmp (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strnicmp | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strnicmp (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strnicmp || defined __stub___strnicmp | choke me | #endif | | int | main () | { | return strnicmp (); | ; | return 0; | } configure:23493: result: no configure:23493: checking for strptime configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23493: checking for uselocale configure:23493: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23493: $? = 0 configure:23493: result: yes configure:23502: checking for atof configure:23502: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23502: $? = 0 configure:23502: result: yes configure:23515: checking for atoll configure:23515: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23515: $? = 0 configure:23515: result: yes configure:23528: checking for dirfd configure:23528: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23528: $? = 0 configure:23528: result: yes configure:23541: checking for fdopendir configure:23541: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23541: $? = 0 configure:23541: result: yes configure:23554: checking for flockfile configure:23554: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23554: $? = 0 configure:23554: result: yes configure:23567: checking for fsync configure:23567: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23567: $? = 0 configure:23567: result: yes configure:23580: checking for getdelim configure:23580: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23580: $? = 0 configure:23580: result: yes configure:23593: checking for getpid configure:23593: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23593: $? = 0 configure:23593: result: yes configure:23606: checking for gmtime_r configure:23606: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23606: $? = 0 configure:23606: result: yes configure:23619: checking for lldiv configure:23619: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23619: $? = 0 configure:23619: result: yes configure:23632: checking for localtime_r configure:23632: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23632: $? = 0 configure:23632: result: yes configure:23645: checking for nrand48 configure:23645: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23645: $? = 0 configure:23645: result: yes configure:23658: checking for poll configure:23658: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23658: $? = 0 configure:23658: result: yes configure:23671: checking for posix_memalign configure:23671: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:96:6: warning: conflicting types for built-in function 'posix_memalign' char posix_memalign (); ^ configure:23671: $? = 0 configure:23671: result: yes configure:23684: checking for rewind configure:23684: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23684: $? = 0 configure:23684: result: yes configure:23697: checking for setenv configure:23697: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23697: $? = 0 configure:23697: result: yes configure:23710: checking for strcasecmp configure:23710: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:99:6: warning: conflicting types for built-in function 'strcasecmp' char strcasecmp (); ^ configure:23710: $? = 0 configure:23710: result: yes configure:23723: checking for strcasestr configure:23723: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23723: $? = 0 configure:23723: result: yes configure:23736: checking for strdup configure:23736: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:101:6: warning: conflicting types for built-in function 'strdup' char strdup (); ^ configure:23736: $? = 0 configure:23736: result: yes configure:23749: checking for strlcpy configure:23749: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccAzlTVL.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `strlcpy' collect2: error: ld returned 1 exit status configure:23749: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | /* end confdefs.h. */ | /* Define strlcpy to an innocuous variant, in case declares strlcpy. | For example, HP-UX 11i declares gettimeofday. */ | #define strlcpy innocuous_strlcpy | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char strlcpy (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef strlcpy | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char strlcpy (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_strlcpy || defined __stub___strlcpy | choke me | #endif | | int | main () | { | return strlcpy (); | ; | return 0; | } configure:23749: result: no configure:23762: checking for strndup configure:23762: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:102:6: warning: conflicting types for built-in function 'strndup' char strndup (); ^ configure:23762: $? = 0 configure:23762: result: yes configure:23775: checking for strnlen configure:23775: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23775: $? = 0 configure:23775: result: yes configure:23788: checking for strsep configure:23788: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23788: $? = 0 configure:23788: result: yes configure:23801: checking for strtof configure:23801: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23801: $? = 0 configure:23801: result: yes configure:23814: checking for strtok_r configure:23814: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23814: $? = 0 configure:23814: result: yes configure:23827: checking for strtoll configure:23827: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23827: $? = 0 configure:23827: result: yes configure:23840: checking for swab configure:23840: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23840: $? = 0 configure:23840: result: yes configure:23853: checking for tdestroy configure:23853: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23853: $? = 0 configure:23853: result: yes configure:23866: checking for strverscmp configure:23866: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23866: $? = 0 configure:23866: result: yes configure:23882: checking for fdatasync configure:23882: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23882: $? = 0 configure:23882: result: yes configure:23913: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23913: $? = 0 configure:23945: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23945: $? = 0 configure:23960: checking for static_assert in assert.h configure:23975: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:23975: $? = 0 configure:23977: result: yes configure:23993: checking for working strcoll configure:24014: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24014: $? = 0 configure:24014: ./conftest configure:24014: $? = 0 configure:24024: result: yes configure:24038: checking for accept4 configure:24038: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24038: $? = 0 configure:24038: result: yes configure:24038: checking for pipe2 configure:24038: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24038: $? = 0 configure:24038: result: yes configure:24038: checking for eventfd configure:24038: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24038: $? = 0 configure:24038: result: yes configure:24038: checking for vmsplice configure:24038: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24038: $? = 0 configure:24038: result: yes configure:24038: checking for sched_getaffinity configure:24038: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24038: $? = 0 configure:24038: result: yes configure:24065: checking for struct pollfd configure:24065: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24065: $? = 0 configure:24065: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:109:28: error: expected expression before ')' token if (sizeof ((struct pollfd))) ^ configure:24065: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | /* end confdefs.h. */ | #include | #if HAVE_POLL | # include | #elif defined (_WIN32) | # include | #endif | | | int | main () | { | if (sizeof ((struct pollfd))) | return 0; | ; | return 0; | } configure:24065: result: yes configure:24092: checking for library containing connect configure:24123: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24123: $? = 0 configure:24140: result: none required configure:24163: checking for library containing inet_pton configure:24194: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24194: $? = 0 configure:24211: result: none required configure:24250: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24250: $? = 0 configure:24267: checking for if_nameindex configure:24267: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24267: $? = 0 configure:24267: result: yes configure:24267: checking for if_nametoindex configure:24267: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24267: $? = 0 configure:24267: result: yes configure:24334: checking for socklen_t in sys/socket.h configure:24357: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24357: $? = 0 configure:24364: result: yes configure:24371: checking for struct sockaddr_storage configure:24392: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24392: $? = 0 configure:24399: result: yes configure:24411: checking for getopt_long configure:24411: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24411: $? = 0 configure:24411: result: yes configure:24463: checking for cos in -lm configure:24488: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -lm >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:109:6: warning: conflicting types for built-in function 'cos' char cos (); ^ configure:24488: $? = 0 configure:24497: result: yes configure:24643: checking for lrintf in -lm configure:24668: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -lm >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:109:6: warning: conflicting types for built-in function 'lrintf' char lrintf (); ^ configure:24668: $? = 0 configure:24677: result: yes configure:24704: checking for library containing dlsym configure:24735: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccqfmY7A.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `dlsym' collect2: error: ld returned 1 exit status configure:24735: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char dlsym (); | int | main () | { | return dlsym (); | ; | return 0; | } configure:24735: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -ldl >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24735: $? = 0 configure:24752: result: -ldl configure:24812: checking for library containing pthread_rwlock_init configure:24843: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition /tmp/portage/media-video/vlc-2.2.4/temp/ccqTQNBH.o: In function `main': conftest.c:(.text.startup+0x7): undefined reference to `pthread_rwlock_init' collect2: error: ld returned 1 exit status configure:24843: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char pthread_rwlock_init (); | int | main () | { | return pthread_rwlock_init (); | ; | return 0; | } configure:24843: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -lpthread >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24843: $? = 0 configure:24860: result: -lpthread configure:24883: checking for clock_nanosleep in -lrt configure:24908: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c -lrt >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:24908: $? = 0 configure:24917: result: yes configure:25089: checking search.h usability configure:25089: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25089: $? = 0 configure:25089: result: yes configure:25089: checking search.h presence configure:25089: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/search.h:22:0, from conftest.c:103: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25089: $? = 0 configure:25089: result: yes configure:25089: checking for search.h configure:25089: result: yes configure:25102: checking getopt.h usability configure:25102: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25102: $? = 0 configure:25102: result: yes configure:25102: checking getopt.h presence configure:25102: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/ctype.h:25:0, from /usr/include/getopt.h:33, from conftest.c:104: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25102: $? = 0 configure:25102: result: yes configure:25102: checking for getopt.h configure:25102: result: yes configure:25102: checking locale.h usability configure:25102: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25102: $? = 0 configure:25102: result: yes configure:25102: checking locale.h presence configure:25102: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/locale.h:25:0, from conftest.c:105: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25102: $? = 0 configure:25102: result: yes configure:25102: checking for locale.h configure:25102: result: yes configure:25102: checking xlocale.h usability configure:25102: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25102: $? = 0 configure:25102: result: yes configure:25102: checking xlocale.h presence configure:25102: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25102: $? = 0 configure:25102: result: yes configure:25102: checking for xlocale.h configure:25102: result: yes configure:25115: checking sys/time.h usability configure:25115: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25115: $? = 0 configure:25115: result: yes configure:25115: checking sys/time.h presence configure:25115: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/sys/time.h:21:0, from conftest.c:107: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25115: $? = 0 configure:25115: result: yes configure:25115: checking for sys/time.h configure:25115: result: yes configure:25115: checking sys/ioctl.h usability configure:25115: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25115: $? = 0 configure:25115: result: yes configure:25115: checking sys/ioctl.h presence configure:25115: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/sys/ioctl.h:21:0, from conftest.c:108: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25115: $? = 0 configure:25115: result: yes configure:25115: checking for sys/ioctl.h configure:25115: result: yes configure:25128: checking arpa/inet.h usability configure:25128: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25128: $? = 0 configure:25128: result: yes configure:25128: checking arpa/inet.h presence configure:25128: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/arpa/inet.h:21:0, from conftest.c:109: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25128: $? = 0 configure:25128: result: yes configure:25128: checking for arpa/inet.h configure:25128: result: yes configure:25128: checking netinet/udplite.h usability configure:25128: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:143:29: fatal error: netinet/udplite.h: No such file or directory compilation terminated. configure:25128: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:25128: result: no configure:25128: checking netinet/udplite.h presence configure:25128: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:110:29: fatal error: netinet/udplite.h: No such file or directory compilation terminated. configure:25128: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | /* end confdefs.h. */ | #include configure:25128: result: no configure:25128: checking for netinet/udplite.h configure:25128: result: no configure:25128: checking sys/eventfd.h usability configure:25128: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25128: $? = 0 configure:25128: result: yes configure:25128: checking sys/eventfd.h presence configure:25128: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/stdint.h:25:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include/stdint.h:9, from /usr/include/sys/eventfd.h:21, from conftest.c:110: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25128: $? = 0 configure:25128: result: yes configure:25128: checking for sys/eventfd.h configure:25128: result: yes configure:25140: checking for net/if.h configure:25140: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25140: $? = 0 configure:25140: result: yes configure:25156: checking for sys/mount.h configure:25156: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25156: $? = 0 configure:25156: result: yes configure:25174: checking machine/param.h usability configure:25174: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:146:27: fatal error: machine/param.h: No such file or directory compilation terminated. configure:25174: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:25174: result: no configure:25174: checking machine/param.h presence configure:25174: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:113:27: fatal error: machine/param.h: No such file or directory compilation terminated. configure:25174: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | /* end confdefs.h. */ | #include configure:25174: result: no configure:25174: checking for machine/param.h configure:25174: result: no configure:25174: checking sys/shm.h usability configure:25174: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25174: $? = 0 configure:25174: result: yes configure:25174: checking sys/shm.h presence configure:25174: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/sys/shm.h:21:0, from conftest.c:113: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25174: $? = 0 configure:25174: result: yes configure:25174: checking for sys/shm.h configure:25174: result: yes configure:25187: checking linux/version.h usability configure:25187: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking linux/version.h presence configure:25187: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking for linux/version.h configure:25187: result: yes configure:25187: checking linux/dccp.h usability configure:25187: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking linux/dccp.h presence configure:25187: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking for linux/dccp.h configure:25187: result: yes configure:25187: checking scsi/scsi.h usability configure:25187: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking scsi/scsi.h presence configure:25187: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/scsi/scsi.h:26:0, from conftest.c:116: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking for scsi/scsi.h configure:25187: result: yes configure:25187: checking linux/magic.h usability configure:25187: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking linux/magic.h presence configure:25187: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25187: $? = 0 configure:25187: result: yes configure:25187: checking for linux/magic.h configure:25187: result: yes configure:25200: checking syslog.h usability configure:25200: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25200: $? = 0 configure:25200: result: yes configure:25200: checking syslog.h presence configure:25200: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/sys/syslog.h:35:0, from /usr/include/syslog.h:1, from conftest.c:118: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25200: $? = 0 configure:25200: result: yes configure:25200: checking for syslog.h configure:25200: result: yes configure:25200: checking mntent.h usability configure:25200: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25200: $? = 0 configure:25200: result: yes configure:25200: checking mntent.h presence configure:25200: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/mntent.h:22:0, from conftest.c:119: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25200: $? = 0 configure:25200: result: yes configure:25200: checking for mntent.h configure:25200: result: yes configure:25212: checking for ssize_t configure:25212: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25212: $? = 0 configure:25212: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:156:22: error: expected expression before ')' token if (sizeof ((ssize_t))) ^ configure:25212: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((ssize_t))) | return 0; | ; | return 0; | } configure:25212: result: yes configure:25226: checking pthread.h usability configure:25226: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25226: $? = 0 configure:25226: result: yes configure:25226: checking pthread.h presence configure:25226: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/pthread.h:21:0, from conftest.c:120: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25226: $? = 0 configure:25226: result: yes configure:25226: checking for pthread.h configure:25226: result: yes configure:25250: checking for x86_64-pc-linux-gnu-pkg-config configure:25268: found /usr/bin/x86_64-pc-linux-gnu-pkg-config configure:25280: result: /usr/bin/x86_64-pc-linux-gnu-pkg-config configure:25348: checking pkg-config is at least version 0.9.0 configure:25351: result: yes configure:25373: checking zlib.h usability configure:25373: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25373: $? = 0 configure:25373: result: yes configure:25373: checking zlib.h presence configure:25373: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/limits.h:25:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:168, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/syslimits.h:7, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include-fixed/limits.h:34, from /usr/include/zconf.h:395, from /usr/include/zlib.h:34, from conftest.c:121: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:25373: $? = 0 configure:25373: result: yes configure:25373: checking for zlib.h configure:25373: result: yes configure:25412: checking for MINIZIP configure:25419: $PKG_CONFIG --exists --print-errors "minizip " configure:25422: $? = 0 configure:25436: $PKG_CONFIG --exists --print-errors "minizip " configure:25439: $? = 0 configure:25541: result: yes configure:25570: checking for IDN configure:25577: $PKG_CONFIG --exists --print-errors "libidn" configure:25580: $? = 0 configure:25594: $PKG_CONFIG --exists --print-errors "libidn" configure:25597: $? = 0 configure:25639: result: yes configure:25660: checking for DBUS configure:25667: $PKG_CONFIG --exists --print-errors "dbus-1 >= 1.6.0" configure:25670: $? = 0 configure:25684: $PKG_CONFIG --exists --print-errors "dbus-1 >= 1.6.0" configure:25687: $? = 0 configure:25747: result: yes configure:25773: checking for ntohl in sys/param.h configure:25789: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Werror conftest.c >&5 conftest.c:25:0: error: "_FORTIFY_SOURCE" redefined [-Werror] #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:127:11: error: implicit declaration of function 'ntohl' [-Werror=implicit-function-declaration] int meuh; ntohl(meuh); ^ conftest.c:127:11: error: 'meuh' is used uninitialized in this function [-Werror=uninitialized] cc1: all warnings being treated as errors configure:25789: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ZLIB_H 1 | #define HAVE_IDN 1 | /* end confdefs.h. */ | #include | int | main () | { | int meuh; ntohl(meuh); | ; | return 0; | } configure:25796: result: no configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wall configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wextra configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wsign-compare configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wundef configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wpointer-arith configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wbad-function-cast configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wwrite-strings configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wmissing-prototypes configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Wvolatile-register-var configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25819: checking if x86_64-pc-linux-gnu-gcc accepts -Werror-implicit-function-declaration configure:25837: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25837: $? = 0 configure:25850: result: yes configure:25866: checking if x86_64-pc-linux-gnu-gcc accepts -pipe configure:25884: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25884: $? = 0 configure:25897: result: yes configure:25918: checking if x86_64-pc-linux-gnu-g++ accepts -Wall configure:25936: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -Wall conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25936: $? = 0 configure:25949: result: yes configure:25918: checking if x86_64-pc-linux-gnu-g++ accepts -Wextra configure:25936: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25936: $? = 0 configure:25949: result: yes configure:25918: checking if x86_64-pc-linux-gnu-g++ accepts -Wsign-compare configure:25936: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25936: $? = 0 configure:25949: result: yes configure:25918: checking if x86_64-pc-linux-gnu-g++ accepts -Wundef configure:25936: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25936: $? = 0 configure:25949: result: yes configure:25918: checking if x86_64-pc-linux-gnu-g++ accepts -Wpointer-arith configure:25936: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25936: $? = 0 configure:25949: result: yes configure:25918: checking if x86_64-pc-linux-gnu-g++ accepts -Wvolatile-register-var configure:25936: x86_64-pc-linux-gnu-g++ -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wvolatile-register-var conftest.cpp >&5 conftest.cpp:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:25936: $? = 0 configure:25949: result: yes configure:26058: checking if x86_64-pc-linux-gnu-gcc accepts -fvisibility=hidden configure:26075: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:26075: $? = 0 configure:26087: result: yes configure:26392: checking if linker supports -Bsymbolic configure:26409: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ -Wl,-Bsymbolic conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:26409: $? = 0 configure:26422: result: -Wl,-Bsymbolic configure:26444: checking __attribute__ ((aligned ())) support configure:26462: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Werror conftest.c >&5 conftest.c:25:0: error: "_FORTIFY_SOURCE" redefined [-Werror] #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition cc1: all warnings being treated as errors configure:26462: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ZLIB_H 1 | #define HAVE_IDN 1 | #define NDEBUG 1 | /* end confdefs.h. */ | | int | main () | { | static char c __attribute__ ((aligned(2))) = 0; return c; | ; | return 0; | } configure:26462: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Werror conftest.c >&5 conftest.c:25:0: error: "_FORTIFY_SOURCE" redefined [-Werror] #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition cc1: all warnings being treated as errors configure:26462: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ZLIB_H 1 | #define HAVE_IDN 1 | #define NDEBUG 1 | /* end confdefs.h. */ | | int | main () | { | static char c __attribute__ ((aligned(4))) = 0; return c; | ; | return 0; | } configure:26462: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Werror conftest.c >&5 conftest.c:25:0: error: "_FORTIFY_SOURCE" redefined [-Werror] #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition cc1: all warnings being treated as errors configure:26462: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ZLIB_H 1 | #define HAVE_IDN 1 | #define NDEBUG 1 | /* end confdefs.h. */ | | int | main () | { | static char c __attribute__ ((aligned(8))) = 0; return c; | ; | return 0; | } configure:26462: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Werror conftest.c >&5 conftest.c:25:0: error: "_FORTIFY_SOURCE" redefined [-Werror] #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition cc1: all warnings being treated as errors configure:26462: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ZLIB_H 1 | #define HAVE_IDN 1 | #define NDEBUG 1 | /* end confdefs.h. */ | | int | main () | { | static char c __attribute__ ((aligned(16))) = 0; return c; | ; | return 0; | } configure:26462: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Werror conftest.c >&5 conftest.c:25:0: error: "_FORTIFY_SOURCE" redefined [-Werror] #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition cc1: all warnings being treated as errors configure:26462: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ZLIB_H 1 | #define HAVE_IDN 1 | #define NDEBUG 1 | /* end confdefs.h. */ | | int | main () | { | static char c __attribute__ ((aligned(32))) = 0; return c; | ; | return 0; | } configure:26462: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Werror conftest.c >&5 conftest.c:25:0: error: "_FORTIFY_SOURCE" redefined [-Werror] #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition cc1: all warnings being treated as errors configure:26462: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "vlc" | #define PACKAGE_TARNAME "vlc" | #define PACKAGE_VERSION "2.2.4" | #define PACKAGE_STRING "vlc 2.2.4" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define PACKAGE "vlc" | #define VERSION "2.2.4" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FORTIFY_SOURCE 2 | #define _FILE_OFFSET_BITS 64 | #define _THREAD_SAFE /**/ | #define __LIBVLC__ /**/ | #define WIN32_LEAN_AND_MEAN /**/ | #define restrict __restrict | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define VLC_WINSTORE_APP 0 | #define LIBEXT ".so" | #define HAVE_DECL_NANOSLEEP 1 | #define HAVE_DAEMON 1 | #define HAVE_FCNTL 1 | #define HAVE_FSTATVFS 1 | #define HAVE_FORK 1 | #define HAVE_GETENV 1 | #define HAVE_GETPWUID_R 1 | #define HAVE_ISATTY 1 | #define HAVE_LSTAT 1 | #define HAVE_MEMALIGN 1 | #define HAVE_MMAP 1 | #define HAVE_OPEN_MEMSTREAM 1 | #define HAVE_OPENAT 1 | #define HAVE_PREAD 1 | #define HAVE_POSIX_FADVISE 1 | #define HAVE_POSIX_MADVISE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_STRPTIME 1 | #define HAVE_USELOCALE 1 | #define HAVE_ATOF 1 | #define HAVE_ATOLL 1 | #define HAVE_DIRFD 1 | #define HAVE_FDOPENDIR 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FSYNC 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETPID 1 | #define HAVE_GMTIME_R 1 | #define HAVE_LLDIV 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_NRAND48 1 | #define HAVE_POLL 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_REWIND 1 | #define HAVE_SETENV 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCASESTR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRSEP 1 | #define HAVE_STRTOF 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOLL 1 | #define HAVE_SWAB 1 | #define HAVE_TDESTROY 1 | #define HAVE_STRVERSCMP 1 | #define HAVE_FDATASYNC 1 | #define HAVE_ASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_STATIC_ASSERT 1 | #define HAVE_STRCOLL 1 | #define HAVE_ACCEPT4 1 | #define HAVE_PIPE2 1 | #define HAVE_EVENTFD 1 | #define HAVE_VMSPLICE 1 | #define HAVE_SCHED_GETAFFINITY 1 | #define HAVE_STRUCT_POLLFD 1 | #define HAVE_INET_PTON 1 | #define HAVE_IF_NAMEINDEX 1 | #define HAVE_IF_NAMETOINDEX 1 | #define HAVE_LRINTF 1 | #define HAVE_SEARCH_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_SYS_EVENTFD_H 1 | #define HAVE_NET_IF_H 1 | #define HAVE_SYS_MOUNT_H 1 | #define HAVE_SYS_SHM_H 1 | #define HAVE_LINUX_VERSION_H 1 | #define HAVE_LINUX_DCCP_H 1 | #define HAVE_SCSI_SCSI_H 1 | #define HAVE_LINUX_MAGIC_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_MNTENT_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_ZLIB_H 1 | #define HAVE_IDN 1 | #define NDEBUG 1 | /* end confdefs.h. */ | | int | main () | { | static char c __attribute__ ((aligned(64))) = 0; return c; | ; | return 0; | } configure:26468: result: 0 configure:26486: checking for __attribute__((packed)) configure:26503: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:26503: $? = 0 configure:26508: result: yes configure:26527: checking execinfo.h usability configure:26527: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:26527: $? = 0 configure:26527: result: yes configure:26527: checking execinfo.h presence configure:26527: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/execinfo.h:21:0, from conftest.c:125: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:26527: $? = 0 configure:26527: result: yes configure:26527: checking for execinfo.h configure:26527: result: yes configure:26539: checking for backtrace configure:26539: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/ conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:26539: $? = 0 configure:26539: result: yes configure:26582: checking if x86_64-pc-linux-gnu-gcc groks MMX intrinsics configure:26611: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -mmmx conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:26611: $? = 0 configure:26623: result: yes configure:26650: checking if x86_64-pc-linux-gnu-gcc groks MMX inline assembly configure:26671: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -mmmx conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:134:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("packuswb %%mm1,%%mm2"::"r"(p):"mm1", "mm2"); ^ configure:26671: $? = 0 configure:26683: result: yes configure:26694: checking if x86_64-pc-linux-gnu-gcc groks MMX EXT inline assembly configure:26715: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -mmmx conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:135:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("maskmovq %%mm1,%%mm2"::"r"(p):"mm1", "mm2"); ^ configure:26715: $? = 0 configure:26727: result: yes configure:26794: checking if x86_64-pc-linux-gnu-gcc groks SSE2 intrinsics configure:26823: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse2 conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:146:11: warning: cast from function call of type '__m64 {aka __vector(2) int}' to non-matching type 'long unsigned int' [-Wbad-function-cast] frobzor = (uint64_t)_mm_movepi64_pi64(a); ^ configure:26823: $? = 0 configure:26835: result: yes configure:26862: checking if x86_64-pc-linux-gnu-gcc groks SSE inline assembly configure:26883: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:137:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("xorps %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2"); ^ configure:26883: $? = 0 configure:26895: result: yes configure:26906: checking if x86_64-pc-linux-gnu-gcc groks SSE2 inline assembly configure:26927: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:138:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2"); ^ configure:26927: $? = 0 configure:26939: result: yes configure:26951: checking if x86_64-pc-linux-gnu-gcc groks SSE3 inline assembly configure:26972: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:139:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1"); ^ configure:26972: $? = 0 configure:26984: result: yes configure:26994: checking if x86_64-pc-linux-gnu-gcc groks SSSE3 inline assembly configure:27015: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:140:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p):"xmm0"); ^ configure:27015: $? = 0 configure:27027: result: yes configure:27038: checking if x86_64-pc-linux-gnu-gcc groks SSE4.1 inline assembly configure:27059: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:141:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1"); ^ configure:27059: $? = 0 configure:27071: result: yes configure:27082: checking if x86_64-pc-linux-gnu-gcc groks SSE4.2 inline assembly configure:27103: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:142:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1"); ^ configure:27103: $? = 0 configure:27115: result: yes configure:27126: checking if x86_64-pc-linux-gnu-gcc groks SSE4A inline assembly configure:27147: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -msse conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:143:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("insertq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1"); ^ configure:27147: $? = 0 configure:27159: result: yes configure:27196: checking if x86_64-pc-linux-gnu-gcc groks 3D Now! inline assembly configure:27217: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden -mmmx conftest.c >&5 conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c: In function 'main': conftest.c:144:1: warning: 'p' is used uninitialized in this function [-Wuninitialized] asm volatile("pfadd %%mm1,%%mm2"::"r"(p):"mm1", "mm2"); ^ configure:27217: $? = 0 configure:27229: result: yes configure:31039: checking for DVDREAD configure:31046: $PKG_CONFIG --exists --print-errors "dvdread > 4.9.0" configure:31049: $? = 0 configure:31063: $PKG_CONFIG --exists --print-errors "dvdread > 4.9.0" configure:31066: $? = 0 configure:31116: result: yes configure:31284: checking for DVDNAV configure:31291: $PKG_CONFIG --exists --print-errors "dvdnav > 4.9.0" configure:31294: $? = 0 configure:31308: $PKG_CONFIG --exists --print-errors "dvdnav > 4.9.0" configure:31311: $? = 0 configure:31361: result: yes configure:31502: checking for dvdnav_stream_cb in dvdnav/dvdnav.h conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition In file included from /usr/include/stdint.h:25:0, from /usr/lib/gcc/x86_64-pc-linux-gnu/5.4.0/include/stdint.h:9, from /usr/include/dvdnav/dvd_types.h:29, from /usr/include/dvdnav/dvdnav.h:35, from conftest.c:141: /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp] # warning _FORTIFY_SOURCE requires compiling with optimization (-O) ^ configure:31512: result: yes configure:33160: checking for cdrom_msf0 in linux/cdrom.h conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:33170: result: yes configure:33191: checking for scsireq in sys/scsiio.h conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:142:24: fatal error: sys/scsiio.h: No such file or directory compilation terminated. configure:33218: result: no configure:33225: checking for ioc_toc_header in sys/cdio.h conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition conftest.c:142:22: fatal error: sys/cdio.h: No such file or directory compilation terminated. configure:33252: result: no configure:33370: checking for Linux DVB version 5.1 configure:33395: x86_64-pc-linux-gnu-gcc -E conftest.c conftest.c:25:0: warning: "_FORTIFY_SOURCE" redefined #define _FORTIFY_SOURCE 2 ^ : note: this is the location of the previous definition configure:33395: $? = 0 configure:33406: result: yes configure:33727: checking for FREERDP configure:33734: $PKG_CONFIG --exists --print-errors "freerdp >= 1.0.1" Package freerdp was not found in the pkg-config search path. Perhaps you should add the directory containing `freerdp.pc' to the PKG_CONFIG_PATH environment variable Package 'freerdp', required by 'world', not found configure:33737: $? = 1 configure:33751: $PKG_CONFIG --exists --print-errors "freerdp >= 1.0.1" Package freerdp was not found in the pkg-config search path. Perhaps you should add the directory containing `freerdp.pc' to the PKG_CONFIG_PATH environment variable Package 'freerdp', required by 'world', not found configure:33754: $? = 1 configure:33768: result: no Package freerdp was not found in the pkg-config search path. Perhaps you should add the directory containing `freerdp.pc' to the PKG_CONFIG_PATH environment variable Package 'freerdp', required by 'world', not found configure:33785: error: Library freerdp >= 1.0.1 needed for freerdp was not found ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_3dnow_inline=yes ac_cv_build=x86_64-pc-linux-gnu ac_cv_c_attr_align_try=64 ac_cv_c_attribute_aligned=0 ac_cv_c_attribute_packed=yes ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_c_inline=inline ac_cv_c_mmx_intrinsics=yes ac_cv_c_ntohl_sys_param_h=no ac_cv_c_restrict=__restrict ac_cv_c_sse2_intrinsics=yes ac_cv_c_visibility_hidden=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_ALSA_CFLAGS_set= ac_cv_env_ALSA_CFLAGS_value= ac_cv_env_ALSA_LIBS_set= ac_cv_env_ALSA_LIBS_value= ac_cv_env_ASDCP_CFLAGS_set= ac_cv_env_ASDCP_CFLAGS_value= ac_cv_env_ASDCP_LIBS_set= ac_cv_env_ASDCP_LIBS_value= ac_cv_env_AVCODEC_CFLAGS_set= ac_cv_env_AVCODEC_CFLAGS_value= ac_cv_env_AVCODEC_LIBS_set= ac_cv_env_AVCODEC_LIBS_value= ac_cv_env_AVFORMAT_CFLAGS_set= ac_cv_env_AVFORMAT_CFLAGS_value= ac_cv_env_AVFORMAT_LIBS_set= ac_cv_env_AVFORMAT_LIBS_value= ac_cv_env_BLURAY_CFLAGS_set= ac_cv_env_BLURAY_CFLAGS_value= ac_cv_env_BLURAY_LIBS_set= ac_cv_env_BLURAY_LIBS_value= ac_cv_env_BONJOUR_CFLAGS_set= ac_cv_env_BONJOUR_CFLAGS_value= ac_cv_env_BONJOUR_LIBS_set= ac_cv_env_BONJOUR_LIBS_value= ac_cv_env_CACA_CFLAGS_set= ac_cv_env_CACA_CFLAGS_value= ac_cv_env_CACA_LIBS_set= ac_cv_env_CACA_LIBS_value= ac_cv_env_CCASFLAGS_set= ac_cv_env_CCASFLAGS_value= ac_cv_env_CCAS_set= ac_cv_env_CCAS_value= ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -pipe -march=native -frecord-gcc-switches' ac_cv_env_CHROMAPRINT_CFLAGS_set= ac_cv_env_CHROMAPRINT_CFLAGS_value= ac_cv_env_CHROMAPRINT_LIBS_set= ac_cv_env_CHROMAPRINT_LIBS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set=set ac_cv_env_CXXFLAGS_value='-O2 -pipe -march=native -frecord-gcc-switches' ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_DBUS_CFLAGS_set= ac_cv_env_DBUS_CFLAGS_value= ac_cv_env_DBUS_LIBS_set= ac_cv_env_DBUS_LIBS_value= ac_cv_env_DC1394_CFLAGS_set= ac_cv_env_DC1394_CFLAGS_value= ac_cv_env_DC1394_LIBS_set= ac_cv_env_DC1394_LIBS_value= ac_cv_env_DCA_CFLAGS_set= ac_cv_env_DCA_CFLAGS_value= ac_cv_env_DCA_LIBS_set= ac_cv_env_DCA_LIBS_value= ac_cv_env_DESKTOP_FILE_VALIDATE_set= ac_cv_env_DESKTOP_FILE_VALIDATE_value= ac_cv_env_DIRECTFB_CFLAGS_set= ac_cv_env_DIRECTFB_CFLAGS_value= ac_cv_env_DIRECTFB_LIBS_set= ac_cv_env_DIRECTFB_LIBS_value= ac_cv_env_DV1394_CFLAGS_set= ac_cv_env_DV1394_CFLAGS_value= ac_cv_env_DV1394_LIBS_set= ac_cv_env_DV1394_LIBS_value= ac_cv_env_DVBPSI_CFLAGS_set= ac_cv_env_DVBPSI_CFLAGS_value= ac_cv_env_DVBPSI_LIBS_set= ac_cv_env_DVBPSI_LIBS_value= ac_cv_env_DVDNAV_CFLAGS_set= ac_cv_env_DVDNAV_CFLAGS_value= ac_cv_env_DVDNAV_LIBS_set= ac_cv_env_DVDNAV_LIBS_value= ac_cv_env_DVDREAD_CFLAGS_set= ac_cv_env_DVDREAD_CFLAGS_value= ac_cv_env_DVDREAD_LIBS_set= ac_cv_env_DVDREAD_LIBS_value= ac_cv_env_EGL_CFLAGS_set= ac_cv_env_EGL_CFLAGS_value= ac_cv_env_EGL_LIBS_set= ac_cv_env_EGL_LIBS_value= ac_cv_env_FDKAAC_CFLAGS_set= ac_cv_env_FDKAAC_CFLAGS_value= ac_cv_env_FDKAAC_LIBS_set= ac_cv_env_FDKAAC_LIBS_value= ac_cv_env_FLAC_CFLAGS_set= ac_cv_env_FLAC_CFLAGS_value= ac_cv_env_FLAC_LIBS_set= ac_cv_env_FLAC_LIBS_value= ac_cv_env_FLUIDSYNTH_CFLAGS_set= ac_cv_env_FLUIDSYNTH_CFLAGS_value= ac_cv_env_FLUIDSYNTH_LIBS_set= ac_cv_env_FLUIDSYNTH_LIBS_value= ac_cv_env_FREERDP_CFLAGS_set= ac_cv_env_FREERDP_CFLAGS_value= ac_cv_env_FREERDP_LIBS_set= ac_cv_env_FREERDP_LIBS_value= ac_cv_env_FREETYPE_CFLAGS_set= ac_cv_env_FREETYPE_CFLAGS_value= ac_cv_env_FREETYPE_LIBS_set= ac_cv_env_FREETYPE_LIBS_value= ac_cv_env_FRIBIDI_CFLAGS_set= ac_cv_env_FRIBIDI_CFLAGS_value= ac_cv_env_FRIBIDI_LIBS_set= ac_cv_env_FRIBIDI_LIBS_value= ac_cv_env_GLES1_CFLAGS_set= ac_cv_env_GLES1_CFLAGS_value= ac_cv_env_GLES1_LIBS_set= ac_cv_env_GLES1_LIBS_value= ac_cv_env_GLES2_CFLAGS_set= ac_cv_env_GLES2_CFLAGS_value= ac_cv_env_GLES2_LIBS_set= ac_cv_env_GLES2_LIBS_value= ac_cv_env_GL_CFLAGS_set= ac_cv_env_GL_CFLAGS_value= ac_cv_env_GL_LIBS_set= ac_cv_env_GL_LIBS_value= ac_cv_env_GNOMEVFS_CFLAGS_set= ac_cv_env_GNOMEVFS_CFLAGS_value= ac_cv_env_GNOMEVFS_LIBS_set= ac_cv_env_GNOMEVFS_LIBS_value= ac_cv_env_GNUTLS_CFLAGS_set= ac_cv_env_GNUTLS_CFLAGS_value= ac_cv_env_GNUTLS_LIBS_set= ac_cv_env_GNUTLS_LIBS_value= ac_cv_env_GOOM_CFLAGS_set= ac_cv_env_GOOM_CFLAGS_value= ac_cv_env_GOOM_LIBS_set= ac_cv_env_GOOM_LIBS_value= ac_cv_env_GST_APP_CFLAGS_set= ac_cv_env_GST_APP_CFLAGS_value= ac_cv_env_GST_APP_LIBS_set= ac_cv_env_GST_APP_LIBS_value= ac_cv_env_GST_VIDEO_CFLAGS_set= ac_cv_env_GST_VIDEO_CFLAGS_value= ac_cv_env_GST_VIDEO_LIBS_set= ac_cv_env_GST_VIDEO_LIBS_value= ac_cv_env_IDN_CFLAGS_set= ac_cv_env_IDN_CFLAGS_value= ac_cv_env_IDN_LIBS_set= ac_cv_env_IDN_LIBS_value= ac_cv_env_JACK_CFLAGS_set= ac_cv_env_JACK_CFLAGS_value= ac_cv_env_JACK_LIBS_set= ac_cv_env_JACK_LIBS_value= ac_cv_env_KATE_CFLAGS_set= ac_cv_env_KATE_CFLAGS_value= ac_cv_env_KATE_LIBS_set= ac_cv_env_KATE_LIBS_value= ac_cv_env_KDE4_CONFIG_set= ac_cv_env_KDE4_CONFIG_value= ac_cv_env_LDFLAGS_set=set ac_cv_env_LDFLAGS_value='-Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/' ac_cv_env_LIBASS_CFLAGS_set= ac_cv_env_LIBASS_CFLAGS_value= ac_cv_env_LIBASS_LIBS_set= ac_cv_env_LIBASS_LIBS_value= ac_cv_env_LIBCDDB_CFLAGS_set= ac_cv_env_LIBCDDB_CFLAGS_value= ac_cv_env_LIBCDDB_LIBS_set= ac_cv_env_LIBCDDB_LIBS_value= ac_cv_env_LIBMODPLUG_CFLAGS_set= ac_cv_env_LIBMODPLUG_CFLAGS_value= ac_cv_env_LIBMODPLUG_LIBS_set= ac_cv_env_LIBMODPLUG_LIBS_value= ac_cv_env_LIBMPEG2_CFLAGS_set= ac_cv_env_LIBMPEG2_CFLAGS_value= ac_cv_env_LIBMPEG2_LIBS_set= ac_cv_env_LIBMPEG2_LIBS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LIBVA_DRM_CFLAGS_set= ac_cv_env_LIBVA_DRM_CFLAGS_value= ac_cv_env_LIBVA_DRM_LIBS_set= ac_cv_env_LIBVA_DRM_LIBS_value= ac_cv_env_LIBVA_X11_CFLAGS_set= ac_cv_env_LIBVA_X11_CFLAGS_value= ac_cv_env_LIBVA_X11_LIBS_set= ac_cv_env_LIBVA_X11_LIBS_value= ac_cv_env_LIBVORBIS_CFLAGS_set= ac_cv_env_LIBVORBIS_CFLAGS_value= ac_cv_env_LIBVORBIS_LIBS_set= ac_cv_env_LIBVORBIS_LIBS_value= ac_cv_env_LIBXML2_CFLAGS_set= ac_cv_env_LIBXML2_CFLAGS_value= ac_cv_env_LIBXML2_LIBS_set= ac_cv_env_LIBXML2_LIBS_value= ac_cv_env_LINSYS_SDI_CFLAGS_set= ac_cv_env_LINSYS_SDI_CFLAGS_value= ac_cv_env_LINSYS_SDI_LIBS_set= ac_cv_env_LINSYS_SDI_LIBS_value= ac_cv_env_LIVE555_CFLAGS_set= ac_cv_env_LIVE555_CFLAGS_value= ac_cv_env_LIVE555_LIBS_set= ac_cv_env_LIVE555_LIBS_value= ac_cv_env_LT_SYS_LIBRARY_PATH_set= ac_cv_env_LT_SYS_LIBRARY_PATH_value= ac_cv_env_LUAC_set= ac_cv_env_LUAC_value= ac_cv_env_LUA_CFLAGS_set= ac_cv_env_LUA_CFLAGS_value= ac_cv_env_LUA_LIBS_set= ac_cv_env_LUA_LIBS_value= ac_cv_env_MFX_CFLAGS_set= ac_cv_env_MFX_CFLAGS_value= ac_cv_env_MFX_LIBS_set= ac_cv_env_MFX_LIBS_value= ac_cv_env_MINIZIP_CFLAGS_set= ac_cv_env_MINIZIP_CFLAGS_value= ac_cv_env_MINIZIP_LIBS_set= ac_cv_env_MINIZIP_LIBS_value= ac_cv_env_MTP_CFLAGS_set= ac_cv_env_MTP_CFLAGS_value= ac_cv_env_MTP_LIBS_set= ac_cv_env_MTP_LIBS_value= ac_cv_env_MUX_OGG_CFLAGS_set= ac_cv_env_MUX_OGG_CFLAGS_value= ac_cv_env_MUX_OGG_LIBS_set= ac_cv_env_MUX_OGG_LIBS_value= ac_cv_env_NCURSES_CFLAGS_set= ac_cv_env_NCURSES_CFLAGS_value= ac_cv_env_NCURSES_LIBS_set= ac_cv_env_NCURSES_LIBS_value= ac_cv_env_NOTIFY_CFLAGS_set= ac_cv_env_NOTIFY_CFLAGS_value= ac_cv_env_NOTIFY_LIBS_set= ac_cv_env_NOTIFY_LIBS_value= ac_cv_env_OBJCFLAGS_set= ac_cv_env_OBJCFLAGS_value= ac_cv_env_OBJC_set= ac_cv_env_OBJC_value= ac_cv_env_OGG_CFLAGS_set= ac_cv_env_OGG_CFLAGS_value= ac_cv_env_OGG_LIBS_set= ac_cv_env_OGG_LIBS_value= ac_cv_env_OPENCV_CFLAGS_set= ac_cv_env_OPENCV_CFLAGS_value= ac_cv_env_OPENCV_LIBS_set= ac_cv_env_OPENCV_LIBS_value= ac_cv_env_OPUS_CFLAGS_set= ac_cv_env_OPUS_CFLAGS_value= ac_cv_env_OPUS_LIBS_set= ac_cv_env_OPUS_LIBS_value= ac_cv_env_PKG_CONFIG_LIBDIR_set= ac_cv_env_PKG_CONFIG_LIBDIR_value= ac_cv_env_PKG_CONFIG_PATH_set=set ac_cv_env_PKG_CONFIG_PATH_value=/usr/lib64/pkgconfig ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_POSTPROC_CFLAGS_set= ac_cv_env_POSTPROC_CFLAGS_value= ac_cv_env_POSTPROC_LIBS_set= ac_cv_env_POSTPROC_LIBS_value= ac_cv_env_PROJECTM_CFLAGS_set= ac_cv_env_PROJECTM_CFLAGS_value= ac_cv_env_PROJECTM_LIBS_set= ac_cv_env_PROJECTM_LIBS_value= ac_cv_env_PULSE_CFLAGS_set= ac_cv_env_PULSE_CFLAGS_value= ac_cv_env_PULSE_LIBS_set= ac_cv_env_PULSE_LIBS_value= ac_cv_env_QTX11_CFLAGS_set= ac_cv_env_QTX11_CFLAGS_value= ac_cv_env_QTX11_LIBS_set= ac_cv_env_QTX11_LIBS_value= ac_cv_env_QT_CFLAGS_set= ac_cv_env_QT_CFLAGS_value= ac_cv_env_QT_LIBS_set= ac_cv_env_QT_LIBS_value= ac_cv_env_SAMPLERATE_CFLAGS_set= ac_cv_env_SAMPLERATE_CFLAGS_value= ac_cv_env_SAMPLERATE_LIBS_set= ac_cv_env_SAMPLERATE_LIBS_value= ac_cv_env_SCHROEDINGER_CFLAGS_set= ac_cv_env_SCHROEDINGER_CFLAGS_value= ac_cv_env_SCHROEDINGER_LIBS_set= ac_cv_env_SCHROEDINGER_LIBS_value= ac_cv_env_SDL_CFLAGS_set= ac_cv_env_SDL_CFLAGS_value= ac_cv_env_SDL_IMAGE_CFLAGS_set= ac_cv_env_SDL_IMAGE_CFLAGS_value= ac_cv_env_SDL_IMAGE_LIBS_set= ac_cv_env_SDL_IMAGE_LIBS_value= ac_cv_env_SDL_LIBS_set= ac_cv_env_SDL_LIBS_value= ac_cv_env_SFTP_CFLAGS_set= ac_cv_env_SFTP_CFLAGS_value= ac_cv_env_SFTP_LIBS_set= ac_cv_env_SFTP_LIBS_value= ac_cv_env_SHINE_CFLAGS_set= ac_cv_env_SHINE_CFLAGS_value= ac_cv_env_SHINE_LIBS_set= ac_cv_env_SHINE_LIBS_value= ac_cv_env_SHOUT_CFLAGS_set= ac_cv_env_SHOUT_CFLAGS_value= ac_cv_env_SHOUT_LIBS_set= ac_cv_env_SHOUT_LIBS_value= ac_cv_env_SID_CFLAGS_set= ac_cv_env_SID_CFLAGS_value= ac_cv_env_SID_LIBS_set= ac_cv_env_SID_LIBS_value= ac_cv_env_SMBCLIENT_CFLAGS_set= ac_cv_env_SMBCLIENT_CFLAGS_value= ac_cv_env_SMBCLIENT_LIBS_set= ac_cv_env_SMBCLIENT_LIBS_value= ac_cv_env_SPEEXDSP_CFLAGS_set= ac_cv_env_SPEEXDSP_CFLAGS_value= ac_cv_env_SPEEXDSP_LIBS_set= ac_cv_env_SPEEXDSP_LIBS_value= ac_cv_env_SPEEX_CFLAGS_set= ac_cv_env_SPEEX_CFLAGS_value= ac_cv_env_SPEEX_LIBS_set= ac_cv_env_SPEEX_LIBS_value= ac_cv_env_SVGDEC_CFLAGS_set= ac_cv_env_SVGDEC_CFLAGS_value= ac_cv_env_SVGDEC_LIBS_set= ac_cv_env_SVGDEC_LIBS_value= ac_cv_env_SVG_CFLAGS_set= ac_cv_env_SVG_CFLAGS_value= ac_cv_env_SVG_LIBS_set= ac_cv_env_SVG_LIBS_value= ac_cv_env_SWSCALE_CFLAGS_set= ac_cv_env_SWSCALE_CFLAGS_value= ac_cv_env_SWSCALE_LIBS_set= ac_cv_env_SWSCALE_LIBS_value= ac_cv_env_TAGLIB_CFLAGS_set= ac_cv_env_TAGLIB_CFLAGS_value= ac_cv_env_TAGLIB_LIBS_set= ac_cv_env_TAGLIB_LIBS_value= ac_cv_env_THEORA_CFLAGS_set= ac_cv_env_THEORA_CFLAGS_value= ac_cv_env_THEORA_LIBS_set= ac_cv_env_THEORA_LIBS_value= ac_cv_env_TIGER_CFLAGS_set= ac_cv_env_TIGER_CFLAGS_value= ac_cv_env_TIGER_LIBS_set= ac_cv_env_TIGER_LIBS_value= ac_cv_env_TWOLAME_CFLAGS_set= ac_cv_env_TWOLAME_CFLAGS_value= ac_cv_env_TWOLAME_LIBS_set= ac_cv_env_TWOLAME_LIBS_value= ac_cv_env_UDEV_CFLAGS_set= ac_cv_env_UDEV_CFLAGS_value= ac_cv_env_UDEV_LIBS_set= ac_cv_env_UDEV_LIBS_value= ac_cv_env_UPNP_CFLAGS_set= ac_cv_env_UPNP_CFLAGS_value= ac_cv_env_UPNP_LIBS_set= ac_cv_env_UPNP_LIBS_value= ac_cv_env_VCDX_CFLAGS_set= ac_cv_env_VCDX_CFLAGS_value= ac_cv_env_VCDX_LIBS_set= ac_cv_env_VCDX_LIBS_value= ac_cv_env_VDPAU_CFLAGS_set= ac_cv_env_VDPAU_CFLAGS_value= ac_cv_env_VDPAU_LIBS_set= ac_cv_env_VDPAU_LIBS_value= ac_cv_env_VNC_CFLAGS_set= ac_cv_env_VNC_CFLAGS_value= ac_cv_env_VNC_LIBS_set= ac_cv_env_VNC_LIBS_value= ac_cv_env_VORBIS_CFLAGS_set= ac_cv_env_VORBIS_CFLAGS_value= ac_cv_env_VORBIS_LIBS_set= ac_cv_env_VORBIS_LIBS_value= ac_cv_env_VPX_CFLAGS_set= ac_cv_env_VPX_CFLAGS_value= ac_cv_env_VPX_LIBS_set= ac_cv_env_VPX_LIBS_value= ac_cv_env_VSXU_CFLAGS_set= ac_cv_env_VSXU_CFLAGS_value= ac_cv_env_VSXU_LIBS_set= ac_cv_env_VSXU_LIBS_value= ac_cv_env_X262_CFLAGS_set= ac_cv_env_X262_CFLAGS_value= ac_cv_env_X262_LIBS_set= ac_cv_env_X262_LIBS_value= ac_cv_env_X26410B_CFLAGS_set= ac_cv_env_X26410B_CFLAGS_value= ac_cv_env_X26410B_LIBS_set= ac_cv_env_X26410B_LIBS_value= ac_cv_env_X264_CFLAGS_set= ac_cv_env_X264_CFLAGS_value= ac_cv_env_X264_LIBS_set= ac_cv_env_X264_LIBS_value= ac_cv_env_X265_CFLAGS_set= ac_cv_env_X265_CFLAGS_value= ac_cv_env_X265_LIBS_set= ac_cv_env_X265_LIBS_value= ac_cv_env_XCB_CFLAGS_set= ac_cv_env_XCB_CFLAGS_value= ac_cv_env_XCB_COMPOSITE_CFLAGS_set= ac_cv_env_XCB_COMPOSITE_CFLAGS_value= ac_cv_env_XCB_COMPOSITE_LIBS_set= ac_cv_env_XCB_COMPOSITE_LIBS_value= ac_cv_env_XCB_KEYSYMS_CFLAGS_set= ac_cv_env_XCB_KEYSYMS_CFLAGS_value= ac_cv_env_XCB_KEYSYMS_LIBS_set= ac_cv_env_XCB_KEYSYMS_LIBS_value= ac_cv_env_XCB_LIBS_set= ac_cv_env_XCB_LIBS_value= ac_cv_env_XCB_RANDR_CFLAGS_set= ac_cv_env_XCB_RANDR_CFLAGS_value= ac_cv_env_XCB_RANDR_LIBS_set= ac_cv_env_XCB_RANDR_LIBS_value= ac_cv_env_XCB_SHM_CFLAGS_set= ac_cv_env_XCB_SHM_CFLAGS_value= ac_cv_env_XCB_SHM_LIBS_set= ac_cv_env_XCB_SHM_LIBS_value= ac_cv_env_XCB_XV_CFLAGS_set= ac_cv_env_XCB_XV_CFLAGS_value= ac_cv_env_XCB_XV_LIBS_set= ac_cv_env_XCB_XV_LIBS_value= ac_cv_env_XEXT_CFLAGS_set= ac_cv_env_XEXT_CFLAGS_value= ac_cv_env_XEXT_LIBS_set= ac_cv_env_XEXT_LIBS_value= ac_cv_env_XINERAMA_CFLAGS_set= ac_cv_env_XINERAMA_CFLAGS_value= ac_cv_env_XINERAMA_LIBS_set= ac_cv_env_XINERAMA_LIBS_value= ac_cv_env_XI_CFLAGS_set= ac_cv_env_XI_CFLAGS_value= ac_cv_env_XI_LIBS_set= ac_cv_env_XI_LIBS_value= ac_cv_env_XMKMF_set= ac_cv_env_XMKMF_value= ac_cv_env_XPM_CFLAGS_set= ac_cv_env_XPM_CFLAGS_value= ac_cv_env_XPM_LIBS_set= ac_cv_env_XPM_LIBS_value= ac_cv_env_XPROTO_CFLAGS_set= ac_cv_env_XPROTO_CFLAGS_value= ac_cv_env_XPROTO_LIBS_set= ac_cv_env_XPROTO_LIBS_value= ac_cv_env_ZVBI_CFLAGS_set= ac_cv_env_ZVBI_CFLAGS_value= ac_cv_env_ZVBI_LIBS_set= ac_cv_env_ZVBI_LIBS_value= ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=x86_64-pc-linux-gnu ac_cv_env_host_alias_set=set ac_cv_env_host_alias_value=x86_64-pc-linux-gnu ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_func_accept4=yes ac_cv_func_atof=yes ac_cv_func_atoll=yes ac_cv_func_backtrace=yes ac_cv_func_daemon=yes ac_cv_func_dirfd=yes ac_cv_func_dlopen=no ac_cv_func_eventfd=yes ac_cv_func_fcntl=yes ac_cv_func_fdatasync=yes ac_cv_func_fdopendir=yes ac_cv_func_flockfile=yes ac_cv_func_fork=yes ac_cv_func_fstatvfs=yes ac_cv_func_fsync=yes ac_cv_func_getdelim=yes ac_cv_func_getenv=yes ac_cv_func_getopt_long=yes ac_cv_func_getpid=yes ac_cv_func_getpwuid_r=yes ac_cv_func_gmtime_r=yes ac_cv_func_if_nameindex=yes ac_cv_func_if_nametoindex=yes ac_cv_func_isatty=yes ac_cv_func_lldiv=yes ac_cv_func_localtime_r=yes ac_cv_func_lstat=yes ac_cv_func_memalign=yes ac_cv_func_mmap=yes ac_cv_func_nrand48=yes ac_cv_func_open_memstream=yes ac_cv_func_openat=yes ac_cv_func_pipe2=yes ac_cv_func_poll=yes ac_cv_func_posix_fadvise=yes ac_cv_func_posix_madvise=yes ac_cv_func_posix_memalign=yes ac_cv_func_pread=yes ac_cv_func_rewind=yes ac_cv_func_sched_getaffinity=yes ac_cv_func_setenv=yes ac_cv_func_setlocale=yes ac_cv_func_shl_load=no ac_cv_func_strcasecmp=yes ac_cv_func_strcasestr=yes ac_cv_func_strcoll_works=yes ac_cv_func_strdup=yes ac_cv_func_stricmp=no ac_cv_func_strlcpy=no ac_cv_func_strndup=yes ac_cv_func_strnicmp=no ac_cv_func_strnlen=yes ac_cv_func_strptime=yes ac_cv_func_strsep=yes ac_cv_func_strtof=yes ac_cv_func_strtok_r=yes ac_cv_func_strtoll=yes ac_cv_func_strverscmp=yes ac_cv_func_swab=yes ac_cv_func_tdestroy=yes ac_cv_func_uselocale=yes ac_cv_func_vmsplice=yes ac_cv_have_decl_nanosleep=yes ac_cv_header_arpa_inet_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_execinfo_h=yes ac_cv_header_getopt_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_linux_dccp_h=yes ac_cv_header_linux_magic_h=yes ac_cv_header_linux_version_h=yes ac_cv_header_locale_h=yes ac_cv_header_machine_param_h=no ac_cv_header_memory_h=yes ac_cv_header_minix_config_h=no ac_cv_header_mntent_h=yes ac_cv_header_net_if_h=yes ac_cv_header_netinet_udplite_h=no ac_cv_header_pthread_h=yes ac_cv_header_scsi_scsi_h=yes ac_cv_header_search_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_eventfd_h=yes ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_mount_h=yes ac_cv_header_sys_shm_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_syslog_h=yes ac_cv_header_unistd_h=yes ac_cv_header_xlocale_h=yes ac_cv_header_zlib_h=yes ac_cv_host=x86_64-pc-linux-gnu ac_cv_ld_bsymbolic=-Wl,-Bsymbolic ac_cv_lib_dl_dlopen=yes ac_cv_lib_dld_shl_load=no ac_cv_lib_m_cos=yes ac_cv_lib_m_lrintf=yes ac_cv_lib_rt_clock_nanosleep=yes ac_cv_linux_dvb_5_1=yes ac_cv_mmx_inline=yes ac_cv_mmxext_inline=yes ac_cv_objc_compiler_gnu=no ac_cv_objext=o ac_cv_path_DOLT_BASH=/bin/bash ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_FGREP='/bin/grep -F' ac_cv_path_GMSGFMT=/usr/bin/gmsgfmt ac_cv_path_GREP=/bin/grep ac_cv_path_MSGFMT=/usr/bin/msgfmt ac_cv_path_MSGMERGE=/usr/bin/msgmerge ac_cv_path_PKG_CONFIG=/usr/bin/x86_64-pc-linux-gnu-pkg-config ac_cv_path_SED=/bin/sed ac_cv_path_XGETTEXT=/usr/bin/xgettext ac_cv_path_install='/usr/bin/install -c' ac_cv_path_lt_DD=/bin/dd ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AR=x86_64-pc-linux-gnu-ar ac_cv_prog_AWK=gawk ac_cv_prog_CC=x86_64-pc-linux-gnu-gcc ac_cv_prog_CPP='x86_64-pc-linux-gnu-gcc -E' ac_cv_prog_CXX=x86_64-pc-linux-gnu-g++ ac_cv_prog_CXXCPP='x86_64-pc-linux-gnu-g++ -E' ac_cv_prog_DESKTOP_FILE_VALIDATE=desktop-file-validate ac_cv_prog_DLLTOOL=x86_64-pc-linux-gnu-dlltool ac_cv_prog_OBJC=x86_64-pc-linux-gnu-gcc ac_cv_prog_OBJDUMP=x86_64-pc-linux-gnu-objdump ac_cv_prog_RANLIB=x86_64-pc-linux-gnu-ranlib ac_cv_prog_RC=x86_64-pc-linux-gnu-windres ac_cv_prog_STRIP=x86_64-pc-linux-gnu-strip ac_cv_prog_YASM=yasm ac_cv_prog_cc_c89= ac_cv_prog_cc_c99= ac_cv_prog_cc_flags__Wall=yes ac_cv_prog_cc_flags__Wbad_function_cast=yes ac_cv_prog_cc_flags__Werror_implicit_function_declaration=yes ac_cv_prog_cc_flags__Wextra=yes ac_cv_prog_cc_flags__Wmissing_prototypes=yes ac_cv_prog_cc_flags__Wpointer_arith=yes ac_cv_prog_cc_flags__Wsign_compare=yes ac_cv_prog_cc_flags__Wundef=yes ac_cv_prog_cc_flags__Wvolatile_register_var=yes ac_cv_prog_cc_flags__Wwrite_strings=yes ac_cv_prog_cc_flags__pipe=yes ac_cv_prog_cc_g=yes ac_cv_prog_cxx_flags__Wall=yes ac_cv_prog_cxx_flags__Wextra=yes ac_cv_prog_cxx_flags__Wpointer_arith=yes ac_cv_prog_cxx_flags__Wsign_compare=yes ac_cv_prog_cxx_flags__Wundef=yes ac_cv_prog_cxx_flags__Wvolatile_register_var=yes ac_cv_prog_cxx_g=yes ac_cv_prog_make_make_set=yes ac_cv_prog_objc_g=no ac_cv_safe_to_define___extensions__=yes ac_cv_search_connect='none required' ac_cv_search_dlsym=-ldl ac_cv_search_inet_pton='none required' ac_cv_search_pthread_rwlock_init=-lpthread ac_cv_sse2_inline=yes ac_cv_sse3_inline=yes ac_cv_sse4_1_inline=yes ac_cv_sse4_2_inline=yes ac_cv_sse4a_inline=yes ac_cv_sse_inline=yes ac_cv_ssse3_inline=yes ac_cv_struct_sockaddr_storage=yes ac_cv_type_socklen_t=yes ac_cv_type_ssize_t=yes ac_cv_type_struct_pollfd=yes acl_cv_hardcode_direct=no acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' acl_cv_hardcode_libdir_separator= acl_cv_hardcode_minus_L=no acl_cv_libext=a acl_cv_libname_spec='lib$name' acl_cv_library_names_spec='$libname$shrext' acl_cv_path_LD='/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64' acl_cv_prog_gnu_ld=yes acl_cv_rpath=done acl_cv_shlibext=so acl_cv_wl=-Wl, am_cv_CCAS_dependencies_compiler_type=none am_cv_CC_dependencies_compiler_type=none am_cv_CXX_dependencies_compiler_type=none am_cv_OBJC_dependencies_compiler_type=none am_cv_func_iconv=yes am_cv_func_iconv_works=yes am_cv_lib_iconv=no am_cv_make_support_nested_variables=yes am_cv_prog_cc_c_o=yes am_cv_prog_tar_ustar=gnutar am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);' am_cv_proto_iconv_arg1= gt_cv_func_CFLocaleCopyCurrent=no gt_cv_func_CFPreferencesCopyAppValue=no gt_cv_func_gnugettext2_libc=yes lt_cv_ar_at_file=@ lt_cv_archive_cmds_need_lc=no lt_cv_deplibs_check_method=pass_all lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl lt_cv_dlopen_self=yes lt_cv_dlopen_self_static=no lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/x86_64-pc-linux-gnu/bin/ld lt_cv_path_LDCXX='/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64' lt_cv_path_NM='/usr/bin/x86_64-pc-linux-gnu-nm -B' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_c_o_RC=yes lt_cv_prog_compiler_pic='-fPIC -DPIC' lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC' lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_pic_works_CXX=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_compiler_static_works_CXX=yes lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sharedlib_from_linklib_cmd='printf %s\n' lt_cv_shlibpath_overrides_runpath=yes lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_global_symbol_to_import= lt_cv_sys_max_cmd_len=1572864 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop lt_cv_truncate_bin='/bin/dd bs=4096 count=1' pkg_cv_DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include ' pkg_cv_DBUS_LIBS='-ldbus-1 ' pkg_cv_DVDNAV_CFLAGS=' ' pkg_cv_DVDNAV_LIBS='-ldvdnav -lpthread ' pkg_cv_DVDREAD_CFLAGS=' ' pkg_cv_DVDREAD_LIBS='-ldvdread ' pkg_cv_IDN_CFLAGS=' ' pkg_cv_IDN_LIBS='-lidn ' pkg_cv_MINIZIP_CFLAGS='-I/usr/include/minizip ' pkg_cv_MINIZIP_LIBS='-lminizip ' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /tmp/portage/media-video/vlc-2.2.4/work/vlc-2.2.4/autotools/missing aclocal-1.15' ALIASES=' cvlc rvlc' ALSA_CFLAGS='' ALSA_LIBS='' ALTIVEC_CFLAGS='' AMDEPBACKSLASH='' AMDEP_FALSE='' AMDEP_TRUE='#' AMTAR='$${TAR-tar}' AM_BACKSLASH='\' AM_CPPFLAGS='' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='1' AM_V='$(V)' AR='x86_64-pc-linux-gnu-ar' ARCH='x86_64 mmx sse sse2' AS='as' ASDCP_CFLAGS='' ASDCP_LIBS='' ASM='' AUTOCONF='${SHELL} /tmp/portage/media-video/vlc-2.2.4/work/vlc-2.2.4/autotools/missing autoconf' AUTOHEADER='${SHELL} /tmp/portage/media-video/vlc-2.2.4/work/vlc-2.2.4/autotools/missing autoheader' AUTOMAKE='${SHELL} /tmp/portage/media-video/vlc-2.2.4/work/vlc-2.2.4/autotools/missing automake-1.15' AVCODEC_CFLAGS='' AVCODEC_LIBS='' AVFORMAT_CFLAGS='' AVFORMAT_LIBS='' AWK='gawk' BLURAY_CFLAGS='' BLURAY_LIBS='' BONJOUR_CFLAGS='' BONJOUR_LIBS='' BUILD_HTTPD_FALSE='' BUILD_HTTPD_TRUE='#' BUILD_LUA_FALSE='' BUILD_LUA_TRUE='#' BUILD_MACOSX_VLC_APP_FALSE='' BUILD_MACOSX_VLC_APP_TRUE='' BUILD_SKINS_FALSE='' BUILD_SKINS_TRUE='' BUILD_VLC_FALSE='' BUILD_VLC_TRUE='' CACA_CFLAGS='' CACA_LIBS='' CC='x86_64-pc-linux-gnu-gcc' CCAS='x86_64-pc-linux-gnu-gcc' CCASDEPMODE='depmode=none' CCASFLAGS='-O2 -pipe -march=native -frecord-gcc-switches' CCDEPMODE='depmode=none' CFLAGS='-O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wbad-function-cast -Wwrite-strings -Wmissing-prototypes -Wvolatile-register-var -Werror-implicit-function-declaration -pipe -fvisibility=hidden' CFLAGS_access_mtp='' CFLAGS_access_output_shout='' CFLAGS_bonjour='' CFLAGS_caca='' CFLAGS_cdda='' CFLAGS_dc1394='' CFLAGS_deinterlace='' CFLAGS_dtstofloat32='' CFLAGS_dv1394='' CFLAGS_dvdnav=' ' CFLAGS_dvdread=' ' CFLAGS_fdkaac='' CFLAGS_flac='' CFLAGS_fluidsynth='' CFLAGS_gles1='' CFLAGS_gles2='' CFLAGS_gnomevfs='' CFLAGS_goom='' CFLAGS_kate='' CFLAGS_libbluray='' CFLAGS_libmpeg2='' CFLAGS_libvlccore='' CFLAGS_mmal_codec='' CFLAGS_mmal_vout='' CFLAGS_mod='' CFLAGS_mtp='' CFLAGS_mux_ogg='' CFLAGS_ncurses='' CFLAGS_notify='' CFLAGS_ogg='' CFLAGS_omxil='' CFLAGS_omxil_vout='' CFLAGS_opencv_example='' CFLAGS_opencv_wrapper='' CFLAGS_opus='' CFLAGS_postproc='' CFLAGS_qsv='' CFLAGS_rdp='' CFLAGS_samplerate='' CFLAGS_schroedinger='' CFLAGS_sftp='' CFLAGS_shine='' CFLAGS_sid='' CFLAGS_smb='' CFLAGS_speex='' CFLAGS_stream_out_chromaprint='' CFLAGS_svg='' CFLAGS_svgdec='' CFLAGS_swscale='' CFLAGS_theora='' CFLAGS_twolame='' CFLAGS_udev='' CFLAGS_upnp='' CFLAGS_vcdx='' CFLAGS_vnc='' CFLAGS_vorbis='' CFLAGS_vout_sdl='' CFLAGS_x262='' CFLAGS_x26410b='' CFLAGS_x264='' CFLAGS_x265='' CFLAGS_xml='' CHROMAPRINT_CFLAGS='' CHROMAPRINT_LIBS='' CONTRIB_DIR='' COPYRIGHT_MESSAGE='' COPYRIGHT_YEARS='1996-2016' CPP='x86_64-pc-linux-gnu-gcc -E' CPPFLAGS='' CPPFLAGS_a52tofloat32='' CPPFLAGS_access_mtp='' CPPFLAGS_access_output_shout='' CPPFLAGS_bonjour='' CPPFLAGS_caca='' CPPFLAGS_dc1394='' CPPFLAGS_decklink='' CPPFLAGS_decklinkoutput='' CPPFLAGS_directfb='' CPPFLAGS_dtstofloat32='' CPPFLAGS_dv1394='' CPPFLAGS_dvdnav='' CPPFLAGS_dvdread='' CPPFLAGS_faad='' CPPFLAGS_fdkaac='' CPPFLAGS_flac='' CPPFLAGS_fluidsynth='' CPPFLAGS_freetype='' CPPFLAGS_gles1='' CPPFLAGS_gles2='' CPPFLAGS_gnomevfs='' CPPFLAGS_goom='' CPPFLAGS_kate='' CPPFLAGS_libass='' CPPFLAGS_libbluray='' CPPFLAGS_libmpeg2='' CPPFLAGS_mpgatofixed32='' CPPFLAGS_mtp='' CPPFLAGS_mux_ogg='' CPPFLAGS_notify='' CPPFLAGS_ogg='' CPPFLAGS_opencv_example='' CPPFLAGS_opencv_wrapper='' CPPFLAGS_opus='' CPPFLAGS_qsv='' CPPFLAGS_rdp='' CPPFLAGS_samplerate='' CPPFLAGS_schroedinger='' CPPFLAGS_sftp='' CPPFLAGS_shine='' CPPFLAGS_skins2=' -I/usr/include/minizip ' CPPFLAGS_smb='' CPPFLAGS_speex='' CPPFLAGS_svg='' CPPFLAGS_svgdec='' CPPFLAGS_theora='' CPPFLAGS_twolame='' CPPFLAGS_udev='' CPPFLAGS_upnp='' CPPFLAGS_vcdx='' CPPFLAGS_vnc='' CPPFLAGS_vorbis='' CPPFLAGS_vpx='' CPPFLAGS_x264='' CPPFLAGS_x265='' CPPFLAGS_xml='' CXX='x86_64-pc-linux-gnu-g++' CXXCPP='x86_64-pc-linux-gnu-g++ -E' CXXDEPMODE='depmode=none' CXXFLAGS='-O2 -pipe -march=native -frecord-gcc-switches -Wall -Wextra -Wsign-compare -Wundef -Wpointer-arith -Wvolatile-register-var -fvisibility=hidden' CXXFLAGS_live555='' CXXFLAGS_mod='' CXXFLAGS_qt4='' CXXFLAGS_skins2='' CXXFLAGS_vsxu='' CYGPATH_W='echo' DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include ' DBUS_LIBS='-ldbus-1 ' DC1394_CFLAGS='' DC1394_LIBS='' DCA_CFLAGS='' DCA_LIBS='' DEFS='' DEFS_BIGENDIAN='' DEPDIR='.deps' DESKTOP_FILE_VALIDATE='desktop-file-validate' DIRECTFB_CFLAGS='' DIRECTFB_CONFIG='' DIRECTFB_LIBS='' DLLTOOL='x86_64-pc-linux-gnu-dlltool' DOLT_BASH='/bin/bash' DOLT_CLEANFILES='doltlibtool doltcompile' DSYMUTIL='' DUMPBIN='' DV1394_CFLAGS='' DV1394_LIBS='' DVBPSI_CFLAGS='' DVBPSI_LIBS='' DVDNAV_CFLAGS=' ' DVDNAV_LIBS='-ldvdnav -lpthread ' DVDREAD_CFLAGS=' ' DVDREAD_LIBS='-ldvdread ' ECHO_C='' ECHO_N='-n' ECHO_T='' EGL_CFLAGS='' EGL_LIBS='' EGREP='/bin/grep -E' ENABLE_ADDONMANAGERMODULES_FALSE='#' ENABLE_ADDONMANAGERMODULES_TRUE='' ENABLE_MACOSX_DIALOG_PROVIDER_FALSE='' ENABLE_MACOSX_DIALOG_PROVIDER_TRUE='' ENABLE_MACOSX_UI_FALSE='' ENABLE_MACOSX_UI_TRUE='' ENABLE_MINIMAL_MACOSX_FALSE='' ENABLE_MINIMAL_MACOSX_TRUE='' ENABLE_QT4_FALSE='' ENABLE_QT4_TRUE='' ENABLE_SOUT_FALSE='#' ENABLE_SOUT_TRUE='' ENABLE_VLM_FALSE='' ENABLE_VLM_TRUE='#' EXEEXT='' FDKAAC_CFLAGS='' FDKAAC_LIBS='' FGREP='/bin/grep -F' FILE_LIBVLCCORE_DLL='' FILE_LIBVLC_DLL='' FLAC_CFLAGS='' FLAC_LIBS='' FLUIDSYNTH_CFLAGS='' FLUIDSYNTH_LIBS='' FREERDP_CFLAGS='' FREERDP_LIBS='' FREETYPE_CFLAGS='' FREETYPE_LIBS='' FRIBIDI_CFLAGS='' FRIBIDI_LIBS='' GCRYPT_CFLAGS='' GCRYPT_LIBS='' GETTEXT_MACRO_VERSION='0.18' GLES1_CFLAGS='' GLES1_LIBS='' GLES2_CFLAGS='' GLES2_LIBS='' GL_CFLAGS='' GL_LIBS='' GMSGFMT='/usr/bin/gmsgfmt' GMSGFMT_015='/usr/bin/gmsgfmt' GNOMEVFS_CFLAGS='' GNOMEVFS_LIBS='' GNUGETOPT_LIBS='' GNUTLS_CFLAGS='' GNUTLS_LIBS='' GOOM_CFLAGS='' GOOM_LIBS='' GREP='/bin/grep' GST_APP_CFLAGS='' GST_APP_LIBS='' GST_VIDEO_CFLAGS='' GST_VIDEO_LIBS='' HAVE_3DNOW_FALSE='#' HAVE_3DNOW_TRUE='' HAVE_ALSA_FALSE='' HAVE_ALSA_TRUE='' HAVE_ALTIVEC_FALSE='' HAVE_ALTIVEC_TRUE='#' HAVE_ANDROID_FALSE='' HAVE_ANDROID_TRUE='#' HAVE_ASDCP_FALSE='' HAVE_ASDCP_TRUE='' HAVE_AVCODEC_DXVA2_FALSE='' HAVE_AVCODEC_DXVA2_TRUE='' HAVE_AVCODEC_FALSE='' HAVE_AVCODEC_TRUE='' HAVE_AVCODEC_VAAPI_FALSE='' HAVE_AVCODEC_VAAPI_TRUE='' HAVE_AVCODEC_VDA_FALSE='' HAVE_AVCODEC_VDA_TRUE='' HAVE_AVCODEC_VDPAU_FALSE='' HAVE_AVCODEC_VDPAU_TRUE='' HAVE_AVFORMAT_FALSE='' HAVE_AVFORMAT_TRUE='' HAVE_AVFOUNDATION_FALSE='' HAVE_AVFOUNDATION_TRUE='' HAVE_DARWIN_FALSE='' HAVE_DARWIN_TRUE='#' HAVE_DBUS_FALSE='#' HAVE_DBUS_TRUE='' HAVE_DECKLINK_FALSE='' HAVE_DECKLINK_TRUE='#' HAVE_DIRECTX_FALSE='' HAVE_DIRECTX_TRUE='' HAVE_DVBPSI_FALSE='' HAVE_DVBPSI_TRUE='' HAVE_DYNAMIC_PLUGINS_FALSE='#' HAVE_DYNAMIC_PLUGINS_TRUE='' HAVE_EGL_FALSE='' HAVE_EGL_TRUE='' HAVE_GCRYPT_FALSE='' HAVE_GCRYPT_TRUE='' HAVE_GL_FALSE='' HAVE_GL_TRUE='' HAVE_GST_DECODE_FALSE='' HAVE_GST_DECODE_TRUE='' HAVE_IOS_FALSE='' HAVE_IOS_TRUE='#' HAVE_JACK_FALSE='' HAVE_JACK_TRUE='' HAVE_KAI_FALSE='' HAVE_KAI_TRUE='' HAVE_KVA_FALSE='' HAVE_KVA_TRUE='' HAVE_LINUX_DVB_FALSE='#' HAVE_LINUX_DVB_TRUE='' HAVE_LINUX_FALSE='#' HAVE_LINUX_TRUE='' HAVE_MAC_SCREEN_FALSE='' HAVE_MAC_SCREEN_TRUE='#' HAVE_MINIZIP_FALSE='#' HAVE_MINIZIP_TRUE='' HAVE_MMXEXT_FALSE='#' HAVE_MMXEXT_TRUE='' HAVE_MMX_FALSE='#' HAVE_MMX_TRUE='' HAVE_NEON_FALSE='' HAVE_NEON_TRUE='#' HAVE_OS2_FALSE='' HAVE_OS2_TRUE='#' HAVE_OSS_FALSE='' HAVE_OSS_TRUE='' HAVE_OSX_FALSE='' HAVE_OSX_TRUE='#' HAVE_PULSE_FALSE='' HAVE_PULSE_TRUE='' HAVE_QTKIT_FALSE='' HAVE_QTKIT_TRUE='' HAVE_SNDIO_FALSE='' HAVE_SNDIO_TRUE='' HAVE_SPEEXDSP_FALSE='' HAVE_SPEEXDSP_TRUE='' HAVE_SSE2_FALSE='#' HAVE_SSE2_TRUE='' HAVE_SYMBIAN_FALSE='' HAVE_SYMBIAN_TRUE='#' HAVE_V4L2_FALSE='' HAVE_V4L2_TRUE='#' HAVE_VAAPI_DRM_FALSE='' HAVE_VAAPI_DRM_TRUE='' HAVE_VAAPI_X11_FALSE='' HAVE_VAAPI_X11_TRUE='' HAVE_VDPAU_FALSE='' HAVE_VDPAU_TRUE='' HAVE_WASAPI_FALSE='' HAVE_WASAPI_TRUE='' HAVE_WIN32_FALSE='' HAVE_WIN32_TRUE='#' HAVE_WIN64_FALSE='' HAVE_WIN64_TRUE='#' HAVE_WINSTORE_FALSE='' HAVE_WINSTORE_TRUE='#' HAVE_XCB_FALSE='' HAVE_XCB_KEYSYMS_FALSE='' HAVE_XCB_KEYSYMS_TRUE='' HAVE_XCB_RANDR_FALSE='' HAVE_XCB_RANDR_TRUE='' HAVE_XCB_TRUE='' HAVE_XCB_XVIDEO_FALSE='' HAVE_XCB_XVIDEO_TRUE='' HAVE_ZLIB_FALSE='#' HAVE_ZLIB_TRUE='' IDN_CFLAGS=' ' IDN_LIBS='-lidn ' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' INTLLIBS='' INTL_MACOSX_LIBS='' JACK_CFLAGS='' JACK_LIBS='' KAI_LIBS='' KATE_CFLAGS='' KATE_LIBS='' KDE4_CONFIG='' KDE_SOLID_FALSE='' KDE_SOLID_TRUE='' KVA_LIBS='' LD='/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64' LDFLAGS='-Wl,-O1 -Wl,--as-needed -L/usr/lib64/sidplay/builders/' LDFLAGS_live555='' LDFLAGS_mmal_codec='' LDFLAGS_mmal_vout='' LDFLAGS_vlc='' LDFLAGS_x262='' LDFLAGS_x26410b='' LDFLAGS_x264='' LIBASS_CFLAGS='' LIBASS_LIBS='' LIBCDDB_CFLAGS='' LIBCDDB_LIBS='' LIBDL='-ldl' LIBEXT='.so' LIBICONV='' LIBINTL='' LIBM='-lm' LIBMODPLUG_CFLAGS='' LIBMODPLUG_LIBS='' LIBMPEG2_CFLAGS='' LIBMPEG2_LIBS='' LIBOBJS=' strlcpy.o' LIBPTHREAD='-lpthread' LIBS='' LIBS_a52tofloat32='-lm ' LIBS_aa='' LIBS_access_mtp='' LIBS_access_output_shout='' LIBS_access_rtmp='' LIBS_adjust='-lm ' LIBS_anaglyph='-lm ' LIBS_android_opaque='' LIBS_android_surface='' LIBS_audiobargraph_a='-lm ' LIBS_audiobargraph_v='-lm ' LIBS_ball='-lm ' LIBS_bonjour='' LIBS_caca='' LIBS_cdda='' LIBS_chorus_flanger='-lm ' LIBS_colorthres='-lm ' LIBS_compressor='-lm ' LIBS_crystalhd='' LIBS_dc1394='' LIBS_directfb='' LIBS_dtstofloat32='-lm ' LIBS_dv1394='' LIBS_dvdnav='-ldvdnav -lpthread ' LIBS_dvdread='-ldvdread ' LIBS_equalizer='-lm ' LIBS_extract='-lm ' LIBS_faad='' LIBS_fdkaac='' LIBS_flac='' LIBS_fluidsynth='' LIBS_freetype='-lm -lm ' LIBS_gaussianblur='-lm ' LIBS_gles1='' LIBS_gles2='' LIBS_glspectrum='-lm ' LIBS_gme='' LIBS_gnomevfs='' LIBS_gnutls='' LIBS_goom='-lm ' LIBS_gradient='-lm ' LIBS_grain='-lm ' LIBS_growl='' LIBS_headphone_channel_mixer='-lm ' LIBS_hotkeys='-lm ' LIBS_hqdn3d='-lm ' LIBS_kate='' LIBS_libass='' LIBS_libbluray='' LIBS_libmpeg2='' LIBS_libvlc='' LIBS_libvlccore='-lrt ' LIBS_lirc='' LIBS_live555='' LIBS_macosx='' LIBS_macosx_dialog_provider='' LIBS_minimal_macosx='' LIBS_mkv='' LIBS_mmal_codec='' LIBS_mmal_vout='' LIBS_mod='' LIBS_mono='-lm ' LIBS_mosaic='-lm ' LIBS_mpc='-lm ' LIBS_mpgatofixed32='' LIBS_mtp='' LIBS_mux_ogg='' LIBS_ncurses='-lm ' LIBS_netsync='' LIBS_noise='-lm ' LIBS_normvol='-lm ' LIBS_notify='' LIBS_ogg='' LIBS_oldmovie='-lm ' LIBS_oldrc='-lm ' LIBS_opencv_example='' LIBS_opencv_wrapper='' LIBS_opus='' LIBS_param_eq='-lm ' LIBS_postproc='-lm ' LIBS_psychedelic='-lm ' LIBS_qsv='' LIBS_qt4='-lm ' LIBS_quartztext='' LIBS_quicktime='' LIBS_rdp='' LIBS_remoteosd='' LIBS_ripple='-lm ' LIBS_samplerate='-lm ' LIBS_sap='-lz ' LIBS_scene='-lm ' LIBS_schroedinger='' LIBS_sftp='' LIBS_shine='' LIBS_sid='' LIBS_skins2='-lminizip -lz -lm ' LIBS_smb='' LIBS_spatializer='-lm ' LIBS_speex='' LIBS_stream_out_chromaprint='' LIBS_stream_out_raop='' LIBS_stream_out_rtp='' LIBS_stream_out_standard='' LIBS_svg='' LIBS_svgdec='' LIBS_swscale='-lm ' LIBS_theora='' LIBS_ts='' LIBS_twolame='' LIBS_udev='' LIBS_unzip='-lz ' LIBS_upnp='' LIBS_vcdx='' LIBS_vlc='' LIBS_vnc='' LIBS_vod_rtsp='' LIBS_vorbis='' LIBS_vout_sdl='' LIBS_vpx='' LIBS_vsxu='' LIBS_wave='-lm ' LIBS_win32text='' LIBS_x262='-lm ' LIBS_x26410b='-lm ' LIBS_x264='-lm ' LIBS_x265='' LIBS_xml='' LIBS_zip='-lz ' LIBTOOL='$(top_builddir)/doltlibtool' LIBVA_DRM_CFLAGS='' LIBVA_DRM_LIBS='' LIBVA_X11_CFLAGS='' LIBVA_X11_LIBS='' LIBVORBIS_CFLAGS='' LIBVORBIS_LIBS='' LIBXML2_CFLAGS='' LIBXML2_LIBS='' LINSYS_SDI_CFLAGS='' LINSYS_SDI_LIBS='' LIPO='' LIVE555_CFLAGS='' LIVE555_LIBS='' LN_S='ln -s' LTCOMPILE='$(top_builddir)/doltcompile $(COMPILE)' LTCXXCOMPILE='$(top_builddir)/doltcompile $(CXXCOMPILE)' LTLIBICONV='' LTLIBINTL='' LTLIBOBJS='' LTLIBa52tofloat32='' LTLIBaa='' LTLIBaccess_eyetv='' LTLIBaccess_mtp='' LTLIBaccess_output_shout='' LTLIBaccess_realrtsp='' LTLIBandroid_opaque='' LTLIBandroid_surface='' LTLIBatmo='' LTLIBaudioqueue='' LTLIBavcapture='' LTLIBbonjour='' LTLIBcaca='' LTLIBcdda='libcdda_plugin.la' LTLIBcrystalhd='' LTLIBdc1394='' LTLIBdirect2d='' LTLIBdirect3d='' LTLIBdirectfb='' LTLIBdtstofloat32='' LTLIBdv1394='' LTLIBdvdnav='libdvdnav_plugin.la' LTLIBdvdread='libdvdread_plugin.la' LTLIBfaad='' LTLIBfb='' LTLIBfdkaac='' LTLIBflac='' LTLIBfluidsynth='' LTLIBfreetype='' LTLIBgles1='' LTLIBgles2='' LTLIBglspectrum='' LTLIBglwin32='' LTLIBgme='' LTLIBgnomevfs='' LTLIBgnutls='' LTLIBgoom='' LTLIBgrowl='' LTLIBjpeg='' LTLIBkate='' LTLIBlibass='' LTLIBlibbluray='' LTLIBlibmpeg2='' LTLIBlinsys_hdsdi='' LTLIBlinsys_sdi='' LTLIBlirc='' LTLIBlive555='' LTLIBmacosx='' LTLIBmacosx_dialog_provider='' LTLIBminimal_macosx='' LTLIBmkv='' LTLIBmmal_codec='' LTLIBmmal_vout='' LTLIBmod='' LTLIBmpc='' LTLIBmpgatofixed32='' LTLIBmtp='' LTLIBmux_ogg='' LTLIBncurses='' LTLIBnotify='' LTLIBogg='' LTLIBomxil='' LTLIBomxil_vout='' LTLIBopencv_example='' LTLIBopencv_wrapper='' LTLIBopensles_android='' LTLIBopus='' LTLIBpng='' LTLIBpostproc='' LTLIBprojectm='' LTLIBqsv='' LTLIBqt4='' LTLIBqtcapture='' LTLIBqtsound='' LTLIBquartztext='' LTLIBquicktime='' LTLIBrdp='' LTLIBsamplerate='' LTLIBschroedinger='' LTLIBscreen='' LTLIBsdl_image='' LTLIBsftp='' LTLIBshine='' LTLIBsid='' LTLIBskins2='' LTLIBsmb='' LTLIBspeex='' LTLIBstream_out_chromaprint='' LTLIBsvg='' LTLIBsvgdec='' LTLIBswscale='' LTLIBtaglib='' LTLIBtelx='' LTLIBtheora='' LTLIBtremor='' LTLIBtwolame='' LTLIBudev='' LTLIBupnp='' LTLIBvcd='libvcd_plugin.la' LTLIBvcdx='' LTLIBvnc='' LTLIBvorbis='' LTLIBvout_sdl='' LTLIBvpx='' LTLIBvsxu='' LTLIBwma_fixed='' LTLIBx262='' LTLIBx26410b='' LTLIBx264='' LTLIBx265='' LTLIBxml='' LTLIBzvbi='' LT_SYS_LIBRARY_PATH='' LUAC='' LUA_CFLAGS='' LUA_LIBS='' MACOSX_DEPLOYMENT_TARGET='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /tmp/portage/media-video/vlc-2.2.4/work/vlc-2.2.4/autotools/missing makeinfo' MANIFEST_TOOL=':' MERGE_FFMPEG_FALSE='' MERGE_FFMPEG_TRUE='' MFX_CFLAGS='' MFX_LIBS='' MINIZIP_CFLAGS='-I/usr/include/minizip ' MINIZIP_LIBS='-lminizip ' MKDIR_P='/bin/mkdir -p' MOC='' MSGFMT='/usr/bin/msgfmt' MSGFMT_015='/usr/bin/msgfmt' MSGMERGE='/usr/bin/msgmerge' MTP_CFLAGS='' MTP_LIBS='' MUX_OGG_CFLAGS='' MUX_OGG_LIBS='' NCURSES_CFLAGS='' NCURSES_LIBS='' NM='/usr/bin/x86_64-pc-linux-gnu-nm -B' NMEDIT='' NOTIFY_CFLAGS='' NOTIFY_LIBS='' OBJC='x86_64-pc-linux-gnu-gcc' OBJCDEPMODE='depmode=none' OBJCFLAGS=' -fvisibility=hidden' OBJCFLAGS_growl='' OBJCFLAGS_macosx='' OBJCFLAGS_minimal_macosx='' OBJCOPY='' OBJDUMP='x86_64-pc-linux-gnu-objdump' OBJEXT='o' OGG_CFLAGS='' OGG_LIBS='' OPENCV_CFLAGS='' OPENCV_LIBS='' OPUS_CFLAGS='' OPUS_LIBS='' OSS_LIBS='' OTOOL64='' OTOOL='' PACKAGE='vlc' PACKAGE_BUGREPORT='' PACKAGE_NAME='vlc' PACKAGE_STRING='vlc 2.2.4' PACKAGE_TARNAME='vlc' PACKAGE_URL='' PACKAGE_VERSION='2.2.4' PATH_SEPARATOR=':' PKGDIR='vlc' PKG_CONFIG='/usr/bin/x86_64-pc-linux-gnu-pkg-config' PKG_CONFIG_LIBDIR='' PKG_CONFIG_PATH='/usr/lib64/pkgconfig' POSTPROC_CFLAGS='' POSTPROC_LIBS='' POSUB='po' PROGRAMFILES='' PROJECTM_CFLAGS='' PROJECTM_LIBS='' PULSE_CFLAGS='' PULSE_LIBS='' QTX11_CFLAGS='' QTX11_LIBS='' QT_CFLAGS='' QT_LIBS='' RANLIB='x86_64-pc-linux-gnu-ranlib' RC='x86_64-pc-linux-gnu-windres' RCC='' SAMPLERATE_CFLAGS='' SAMPLERATE_LIBS='' SCHROEDINGER_CFLAGS='' SCHROEDINGER_LIBS='' SDL_CFLAGS='' SDL_IMAGE_CFLAGS='' SDL_IMAGE_LIBS='' SDL_LIBS='' SED='/bin/sed' SET_MAKE='' SFTP_CFLAGS='' SFTP_LIBS='' SHELL='/bin/sh' SHINE_CFLAGS='' SHINE_LIBS='' SHOUT_CFLAGS='' SHOUT_LIBS='' SID_CFLAGS='' SID_LIBS='' SMBCLIENT_CFLAGS='' SMBCLIENT_LIBS='' SOCKET_LIBS='' SPEEXDSP_CFLAGS='' SPEEXDSP_LIBS='' SPEEX_CFLAGS='' SPEEX_LIBS='' STRIP='x86_64-pc-linux-gnu-strip' SVGDEC_CFLAGS='' SVGDEC_LIBS='' SVG_CFLAGS='' SVG_LIBS='' SWSCALE_CFLAGS='' SWSCALE_LIBS='' SYMBOLIC_LDFLAGS='-Wl,-Bsymbolic' SYS='linux' TAGLIB_CFLAGS='' TAGLIB_LIBS='' THEORA_CFLAGS='' THEORA_LIBS='' TIGER_CFLAGS='' TIGER_LIBS='' TWOLAME_CFLAGS='' TWOLAME_LIBS='' U2D='' UDEV_CFLAGS='' UDEV_LIBS='' UIC='' UPNP_CFLAGS='' UPNP_LIBS='' USE_NLS='yes' VCDX_CFLAGS='' VCDX_LIBS='' VDPAU_CFLAGS='' VDPAU_LIBS='' VERSION='2.2.4' VERSION_EXTRA='0' VERSION_MAJOR='2' VERSION_MESSAGE='' VERSION_MINOR='2' VERSION_REVISION='4' VNC_CFLAGS='' VNC_LIBS='' VORBIS_CFLAGS='' VORBIS_LIBS='' VPX_CFLAGS='' VPX_LIBS='' VSXU_CFLAGS='' VSXU_LIBS='' WINDOWS_ARCH='' WINDRES='' WINE_SDK_PATH='' X262_CFLAGS='' X262_LIBS='' X26410B_CFLAGS='' X26410B_LIBS='' X264_CFLAGS='' X264_LIBS='' X265_CFLAGS='' X265_LIBS='' XCB_CFLAGS='' XCB_COMPOSITE_CFLAGS='' XCB_COMPOSITE_LIBS='' XCB_KEYSYMS_CFLAGS='' XCB_KEYSYMS_LIBS='' XCB_LIBS='' XCB_RANDR_CFLAGS='' XCB_RANDR_LIBS='' XCB_SHM_CFLAGS='' XCB_SHM_LIBS='' XCB_XV_CFLAGS='' XCB_XV_LIBS='' XEXT_CFLAGS='' XEXT_LIBS='' XGETTEXT='/usr/bin/xgettext' XGETTEXT_015='/usr/bin/xgettext' XGETTEXT_EXTRA_OPTIONS='' XINERAMA_CFLAGS='' XINERAMA_LIBS='' XI_CFLAGS='' XI_LIBS='' XMKMF='' XPM_CFLAGS='' XPM_LIBS='' XPROTO_CFLAGS='' XPROTO_LIBS='' X_CFLAGS='' X_EXTRA_LIBS='' X_LIBS='' X_PRE_LIBS='' YASM='yasm' YASMFLAGS='-f elf64' ZVBI_CFLAGS='' ZVBI_LIBS='' ac_ct_AR='' ac_ct_CC='' ac_ct_CXX='' ac_ct_DUMPBIN='' ac_ct_OBJC='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='' am__fastdepCCAS_FALSE='' am__fastdepCCAS_TRUE='#' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='#' am__fastdepCXX_FALSE='' am__fastdepCXX_TRUE='#' am__fastdepOBJC_FALSE='' am__fastdepOBJC_TRUE='#' am__include='include' am__isrc='' am__leading_dot='.' am__nodep='' am__quote='' am__tar='tar --format=ustar -chf - "$$tardir"' am__untar='tar -xf -' bindir='${exec_prefix}/bin' build='x86_64-pc-linux-gnu' build_alias='x86_64-pc-linux-gnu' build_cpu='x86_64' build_os='linux-gnu' build_vendor='pc' datadir='/usr/share' datarootdir='${prefix}/share' docdir='/usr/share/doc/vlc-2.2.4' dvidir='${docdir}' exec_prefix='NONE' have_avfoundation='' host='x86_64-pc-linux-gnu' host_alias='x86_64-pc-linux-gnu' host_cpu='x86_64' host_os='linux-gnu' host_vendor='pc' htmldir='/usr/share/doc/vlc-2.2.4/html' includedir='${prefix}/include' infodir='/usr/share/info' install_sh='${SHELL} /tmp/portage/media-video/vlc-2.2.4/work/vlc-2.2.4/autotools/install-sh' libdir='/usr/lib64' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='/var/lib' mandir='/usr/share/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' soliddatadir='' sysconfdir='/etc' target_alias='' vlcdatadir='${datadir}/${PKGDIR}' vlclibdir='${libdir}/${PKGDIR}' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "vlc" #define PACKAGE_TARNAME "vlc" #define PACKAGE_VERSION "2.2.4" #define PACKAGE_STRING "vlc 2.2.4" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define PACKAGE "vlc" #define VERSION "2.2.4" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define __EXTENSIONS__ 1 #define _ALL_SOURCE 1 #define _GNU_SOURCE 1 #define _POSIX_PTHREAD_SEMANTICS 1 #define _TANDEM_SOURCE 1 #define _FORTIFY_SOURCE 2 #define _FILE_OFFSET_BITS 64 #define _THREAD_SAFE /**/ #define __LIBVLC__ /**/ #define WIN32_LEAN_AND_MEAN /**/ #define restrict __restrict #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define ENABLE_NLS 1 #define HAVE_GETTEXT 1 #define HAVE_DCGETTEXT 1 #define HAVE_ICONV 1 #define ICONV_CONST #define VLC_WINSTORE_APP 0 #define LIBEXT ".so" #define HAVE_DECL_NANOSLEEP 1 #define HAVE_DAEMON 1 #define HAVE_FCNTL 1 #define HAVE_FSTATVFS 1 #define HAVE_FORK 1 #define HAVE_GETENV 1 #define HAVE_GETPWUID_R 1 #define HAVE_ISATTY 1 #define HAVE_LSTAT 1 #define HAVE_MEMALIGN 1 #define HAVE_MMAP 1 #define HAVE_OPEN_MEMSTREAM 1 #define HAVE_OPENAT 1 #define HAVE_PREAD 1 #define HAVE_POSIX_FADVISE 1 #define HAVE_POSIX_MADVISE 1 #define HAVE_SETLOCALE 1 #define HAVE_STRPTIME 1 #define HAVE_USELOCALE 1 #define HAVE_ATOF 1 #define HAVE_ATOLL 1 #define HAVE_DIRFD 1 #define HAVE_FDOPENDIR 1 #define HAVE_FLOCKFILE 1 #define HAVE_FSYNC 1 #define HAVE_GETDELIM 1 #define HAVE_GETPID 1 #define HAVE_GMTIME_R 1 #define HAVE_LLDIV 1 #define HAVE_LOCALTIME_R 1 #define HAVE_NRAND48 1 #define HAVE_POLL 1 #define HAVE_POSIX_MEMALIGN 1 #define HAVE_REWIND 1 #define HAVE_SETENV 1 #define HAVE_STRCASECMP 1 #define HAVE_STRCASESTR 1 #define HAVE_STRDUP 1 #define HAVE_STRNDUP 1 #define HAVE_STRNLEN 1 #define HAVE_STRSEP 1 #define HAVE_STRTOF 1 #define HAVE_STRTOK_R 1 #define HAVE_STRTOLL 1 #define HAVE_SWAB 1 #define HAVE_TDESTROY 1 #define HAVE_STRVERSCMP 1 #define HAVE_FDATASYNC 1 #define HAVE_ASPRINTF 1 #define HAVE_VASPRINTF 1 #define HAVE_STATIC_ASSERT 1 #define HAVE_STRCOLL 1 #define HAVE_ACCEPT4 1 #define HAVE_PIPE2 1 #define HAVE_EVENTFD 1 #define HAVE_VMSPLICE 1 #define HAVE_SCHED_GETAFFINITY 1 #define HAVE_STRUCT_POLLFD 1 #define HAVE_INET_PTON 1 #define HAVE_IF_NAMEINDEX 1 #define HAVE_IF_NAMETOINDEX 1 #define HAVE_LRINTF 1 #define HAVE_SEARCH_H 1 #define HAVE_GETOPT_H 1 #define HAVE_LOCALE_H 1 #define HAVE_XLOCALE_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYS_IOCTL_H 1 #define HAVE_ARPA_INET_H 1 #define HAVE_SYS_EVENTFD_H 1 #define HAVE_NET_IF_H 1 #define HAVE_SYS_MOUNT_H 1 #define HAVE_SYS_SHM_H 1 #define HAVE_LINUX_VERSION_H 1 #define HAVE_LINUX_DCCP_H 1 #define HAVE_SCSI_SCSI_H 1 #define HAVE_LINUX_MAGIC_H 1 #define HAVE_SYSLOG_H 1 #define HAVE_MNTENT_H 1 #define HAVE_PTHREAD_H 1 #define HAVE_ZLIB_H 1 #define HAVE_IDN 1 #define NDEBUG 1 #define HAVE_ATTRIBUTE_PACKED 1 #define HAVE_EXECINFO_H 1 #define HAVE_BACKTRACE 1 #define HAVE_MMX_INTRINSICS 1 #define CAN_COMPILE_MMX 1 #define CAN_COMPILE_MMXEXT 1 #define HAVE_SSE2_INTRINSICS 1 #define CAN_COMPILE_SSE 1 #define CAN_COMPILE_SSE2 1 #define CAN_COMPILE_SSE3 1 #define CAN_COMPILE_SSSE3 1 #define CAN_COMPILE_SSE4_1 1 #define CAN_COMPILE_SSE4_2 1 #define CAN_COMPILE_SSE4A 1 #define CAN_COMPILE_3DNOW 1 #define ENABLE_SOUT 1 #define ENABLE_ADDONMANAGERMODULES 1 #define HAVE_STREAM_CB_IN_DVDNAV_H 1 configure: exit 1