Skip to content

Commit

Permalink
configure.ac: disable gtk2 and qt4 by default
Browse files Browse the repository at this point in the history
Both GTK2 and Qt4 are end-of-life so don't enable them by default.
  • Loading branch information
lathiat committed Feb 18, 2020
1 parent 494836c commit f060abe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ AC_ARG_ENABLE(qt4,
no) HAVE_QT4=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-qt4) ;;
esac],
[HAVE_QT4=yes])
[HAVE_QT4=no])

if test "x$HAVE_QT4" = "xyes" ; then
PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
Expand Down Expand Up @@ -582,7 +582,7 @@ AC_ARG_ENABLE(gtk,
no) HAVE_GTK=no ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk) ;;
esac],
[HAVE_GTK=yes])
[HAVE_GTK=no])

if test "x$HAVE_GTK" = "xyes" ; then
# Check for GTK 2.0
Expand Down

0 comments on commit f060abe

Please sign in to comment.