# HG changeset patch # User Markus Mützel # Date 1701279584 -3600 # Node ID 8cffc9e9e770338f487306612d895db005273a20 # Parent 6bef17ab3e08ec503913ff28a67d56211271d89f build: Default to Qt5 only when building the Octave release tarball. * configure.ac: Default to Qt5 when building release-octave. Default to Qt6 otherwise. diff -r 6bef17ab3e08 -r 8cffc9e9e770 configure.ac --- a/configure.ac Tue Nov 28 10:33:52 2023 -0500 +++ b/configure.ac Wed Nov 29 18:39:44 2023 +0100 @@ -360,11 +360,11 @@ esac], [ENABLE_DEVEL_TOOLS=no]) AC_SUBST(ENABLE_DEVEL_TOOLS) -# FIXME: Adjust this condition when Octave 9 is on the stable branch or released. -if test "$ENABLE_OCTAVE" = "default-"; then +# FIXME: Adjust this condition for the release candidate of Octave 9. +if test "$ENABLE_OCTAVE" = "release-"; then + default_qt=5 +else default_qt=6 -else - default_qt=5 fi AC_ARG_ENABLE([qt],