- Mar 28, 2022
-
-
CFLAGS is added to the linker flags and newer LLVM don't like that. CPPFLAGS is used during C compilation and C++ but not added to LDFLAGS.
-
- Mar 25, 2022
-
-
newer clang reports that it ignores the command on each C++ file compiled. In the end the static C++ compiler is used on Windows anyway.
-
- Mar 17, 2022
-
-
This avoids potential compiler optimizations when casting to void** when using IID_PPV_ARGS or WRL. If the option is not supported we fail the configure as many important C++ modules may not work as expected due to pointer aliasing. In practice this should never happen as GCC for mingw-w64 and Clang support this correctly.
-
- Mar 12, 2022
-
-
- Mar 10, 2022
-
-
- Mar 05, 2022
-
-
Maybe it was OK to keep it in 3.0 but in 4.0 we can't expect to reuse ancient folders, just to save a luac rebuild. Also add a nice message when configuring.
-
- Mar 01, 2022
-
-
- Feb 27, 2022
-
-
Rémi Denis-Courmont authored
Detection only worked on Linux, but more importantly, this flag fell out of use with 8512cab6.
-
Rémi Denis-Courmont authored
This flag fell out of use with 8512cab6.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Same problem as 0c482e07.
-
- Feb 23, 2022
-
-
Rémi Denis-Courmont authored
This was added over a decade ago, but
... -
Rémi Denis-Courmont authored
This is necessary for Linux-specific getauxval() and associated flags. In this case, VLC needs AT_HWCAP (and probably AT_HWCAP2 going forward) to detect CPU features on most architectures.
-
This requires MacOS 10.5 or less, which was dropped in VLC 2.1.0.
-
- Feb 19, 2022
-
-
Fix #26491
-
- Feb 11, 2022
-
-
- Feb 05, 2022
-
-
Rémi Denis-Courmont authored
This was superseded by fc8208ec.
-
- Feb 03, 2022
-
-
Fixes #26572 Signed-off-by:
Rémi Denis-Courmont <remi@remlab.net>
-
- Feb 02, 2022
-
-
Rémi Denis-Courmont authored
-
- Feb 01, 2022
-
-
Rémi Denis-Courmont authored
This follows the established cargo cult of not assuming that the toolchain supports SIMD.
-
- Jan 29, 2022
-
-
Allow the configure script to substitute the theme used in the documentation for Awesome doxygen css from the CI script. The theme won't be mandatory, but we can change it and inject it for the production documentation online.
-
- Jan 28, 2022
-
-
Otherwise it won't compile compatible code. If protoc is not there we check the version of protobuf we expect so we get the proper error messages on what's really missing.
-
Similar to how we force detection of luac there. We might be using AC_CHECK_TOOL(PROTOC, protoc, no, [${CONTRIB_DIR}/../bin$PATH_SEPARATOR$PATH]) Which works, but it doesn't keep the full path, so if the PATH is not set in the environment when using HOST-protoc it doesn't find it. So we either have to force everyone to add a new item in their PATH or just use the transparent way that luac is using.
-
Similar to how we use $host-luac that we build natively.
-
- Jan 27, 2022
-
-
- Jan 23, 2022
-
-
Rémi Denis-Courmont authored
Traditionally the presence of the header file was not considered sufficient, though this was somewhat forgotten with the prevalence of pkg-config. However most libraries have portable headers, while the shared library is platform-dependent. It is common for the header to be present while the library is absent with "multilib" installations (i.e. Linux installation with multiple architectures).
-
Rémi Denis-Courmont authored
Traditionally the presence of the header file was not considered sufficient, though this was somewhat forgotten with the prevalence of pkg-config. However most libraries have portable headers, while the shared library is platform-dependent. It is common for the header to be present while the library is absent with "multilib" installations (i.e. Linux installation with multiple architectures).
-
- Jan 22, 2022
-
-
Rémi Denis-Courmont authored
-
- Jan 18, 2022
-
-
This stuff is removed in AVCODEC ABI 59, and it is no longer used as of VLC 4.0.
-
- Jan 11, 2022
-
-
This adds an initial AVS2-P2 video decoder using libdavs2.
-
- Jan 08, 2022
-
-
It avoids using autoconf conditionals and defining -rpath manually, and makes HAVE_KMS available in the Makefile.am.
-
- Jan 04, 2022
-
-
- Dec 17, 2021
-
-
Steve Lhomme authored
-
- Dec 15, 2021
-
-
- Dec 08, 2021
-
-
The AX_APPEND_FLAG arguments were reversed, the program was not escaped from m4 macros, and the function was declared in the body of the main function, so it just couldn't work. After fixing this, static module bank is back working normally on MacOSX.
-
- Dec 07, 2021
-
-
The previous libavutil requirement was for libav, change that to the matching libavutil 55.22.101 for libavcodec 57.37.100
-
-
- Dec 06, 2021
-
-
The CPPFLAGS were already defined for stream_out_sdi but not the LIBS.
-
DeckLinkAPIDispatch.cpp is not available on Windows. DeckLinkAPI.h is available on all supported platforms. Allow decklink SDK from the contribs if --with-decklink-sdk is not used. Co-authored-by:
Marvin Scholz <epirat07@gmail.com>
-