From d6438404a762693449d28ebe6986da4d49a194b6 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 5 Mar 2016 13:03:04 -0800 Subject: [PATCH] fixed configure script: GTK default was enabled even with --with-Xaw --- configure.ac | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index de6eadb..c958b5b 100644 --- a/configure.ac +++ b/configure.ac @@ -144,11 +144,15 @@ AC_ARG_WITH([Xaw3d], [AS_HELP_STRING([--with-Xaw3d],[use Xaw3d front-end (not fully supported anymore)])], [with_Xaw3d="$withval"], [with_Xaw3d="no"]) +dnl | overwrite default gtk +AS_IF([test "x$with_Xaw3d" = xyes], [with_GTK="no"]) AC_ARG_WITH([Xaw], [AS_HELP_STRING([--with-Xaw],[use Xaw front-end])], [with_Xaw="$withval"], [with_Xaw="no"]) +dnl | overwrite default gtk +AS_IF([test "x$with_Xaw" = xyes], [with_GTK="no"]) AC_ARG_WITH([iconsdir], [AS_HELP_STRING([--with-iconsdir=DIR], -- 1.7.0.4