From 0f699db64c06f9227507c1d289067579bf6cdfce Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Tue, 2 Sep 2014 11:49:36 +0000 Subject: [PATCH] Add --with-qt and --without-qk options. Fix --without-gtk option. --- configure | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 7279906..8da4f07 100755 --- a/configure +++ b/configure @@ -37,6 +37,8 @@ for x; do --icondir) ICONDIR=$var;; --with-gtk|--with-gtk+) WITH_GTK=${var:-yes};; --without-gtk|--without-gtk+) WITH_GTK=no;; + --with-qt) WITH_QT=${var:-yes};; + --without-qt) WITH_QT=no;; --enable-notification) NOTIFY=yes;; --disable-notification) NOTIFY=no;; --help) echo "See the README file for available options"; exit 0;; @@ -329,7 +331,7 @@ elif [ -n "$WITH_GTK" -a "$WITH_GTK" != no ]; then fi fi -if [ -n "$WITH_GTK" ]; then +if [ -n "$WITH_GTK" -a "$WITH_GTK" != no ]; then PKG="$WITH_GTK" if [ "$NOTIFY" = yes ]; then PKG="$PKG${PKG:+ }libnotify" -- 1.7.1