mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-31 23:38:34 +00:00
2848178815
Qt 6 `configure` will look for Qt 6 first and only continue looking for Qt 5 if Qt 6 isn't found or disabled via `--disable-qt6`. Qt 6 detection works by first looking for the `qmake6` binary. Its location can be specified with the `--with-qmake6=…` option. All other Qt 6 related facts (such as compiler & linker flags or the position of the other required tools such as `lconvert`, `moc`, `rcc` and `uic`) will be derived from the output generated by `qmake6`. Note that at this point Qt 6 is not yet supported for the cross-compilation build to Windows, nor is a static Qt 6 build supported yet. Note that the command line options `--enable-static-qt`, `--with-qt-pkg-config-modules` and `--without-qt-pkg-config` only apply to the Qt 5 and have no effect on Qt 6. Qt 5 The options for specifying the position of the tools (`--with-moc=…`, `--with-rcc=…` and `--with-uic=…`) have been removed. Their position will now be derived from the output generated by `qmake`. General Completely disabling the GUI now requires passing both `--disable-qt6` and `--disable-qt` options. Part of the implementation of #3115.
62 lines
1.7 KiB
Plaintext
62 lines
1.7 KiB
Plaintext
AC_INIT([MKVToolNix],[57.0.0],[https://gitlab.com/mbunkus/mkvtoolnix/issues/],[mkvtoolnix])
|
|
AC_PREREQ(2.50)
|
|
|
|
AC_CONFIG_HEADERS(config.h:config.h.in)
|
|
|
|
dnl Optional features that are built and those that aren't
|
|
opt_features_yes=""
|
|
opt_features_no=""
|
|
|
|
m4_include(ac/other_features.m4)
|
|
m4_include(ac/pkg.m4)
|
|
m4_include(ac/initialization.m4)
|
|
m4_include(ac/check_version.m4)
|
|
m4_include(ac/compiler_version.m4)
|
|
m4_include(ac/c++-features.m4)
|
|
m4_include(ac/endianess.m4)
|
|
m4_include(ac/macos.m4)
|
|
m4_include(ac/mingw.m4)
|
|
m4_include(ac/extra_inc_lib.m4)
|
|
m4_include(ac/drmingw.m4)
|
|
m4_include(ac/debugging_profiling.m4)
|
|
m4_include(ac/precompiled_headers.m4)
|
|
m4_include(ac/inttypes.m4)
|
|
m4_include(ac/iconv.m4)
|
|
m4_include(ac/nl_langinfo.m4)
|
|
m4_include(ac/ogg.m4)
|
|
m4_include(ac/static.m4)
|
|
m4_include(ac/vorbis.m4)
|
|
m4_include(ac/flac.m4)
|
|
m4_include(ac/matroska.m4)
|
|
m4_include(ac/pugixml.m4)
|
|
m4_include(ac/nlohmann_jsoncpp.m4)
|
|
m4_include(ac/utf8cpp.m4)
|
|
m4_include(ac/fmt.m4)
|
|
m4_include(ac/pcre2.m4)
|
|
m4_include(ac/zlib.m4)
|
|
m4_include(ac/qt6.m4)
|
|
m4_include(ac/qt5.m4)
|
|
m4_include(ac/cmark.m4)
|
|
m4_include(ac/gnurx.m4)
|
|
m4_include(ac/magic.m4)
|
|
m4_include(ac/ax_boost_base.m4)
|
|
m4_include(ac/ax_boost_check_headers.m4)
|
|
m4_include(ac/boost.m4)
|
|
m4_include(ac/gtest.m4)
|
|
m4_include(ac/benchmark.m4)
|
|
m4_include(ac/pandoc.m4)
|
|
m4_include(ac/ax_docbook.m4)
|
|
m4_include(ac/tiocgwinsz.m4)
|
|
m4_include(ac/dvdread.m4)
|
|
m4_include(ac/po4a.m4)
|
|
m4_include(ac/translations.m4)
|
|
m4_include(ac/manpages_translations.m4)
|
|
m4_include(ac/tools.m4)
|
|
|
|
AC_OUTPUT(build-config)
|
|
|
|
echo ''
|
|
echo 'The mkvtoolnix configuration is complete.'
|
|
printf 'Optional features that are built: '"$opt_features_yes"'\n'
|
|
printf 'Optional features that are NOT built: '"$opt_features_no"'\n'
|