From: Yannick Brosseau Date: Tue, 13 Mar 2012 18:09:57 +0000 (-0400) Subject: Force the disabling of the gui building X-Git-Tag: v1.5-beta1~80 X-Git-Url: http://git.liburcu.org/?p=lttv.git;a=commitdiff_plain;h=33cc940080732f7d403b90c7cbfa8514fe1fd83f Force the disabling of the gui building Since the GUI is not yet ported to babeltrace, don't allow users to build it Signed-off-by: Yannick Brosseau --- diff --git a/configure.ac b/configure.ac index df558459..e93c13cc 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,9 @@ AC_ARG_WITH(lttv-gui, [build LTTV gui, as opposed to only build textmode LTTV [[default=yes]]]), [with_lttv_gui="$withval"], [with_lttv_gui="yes"]) +#TODO ybrosseau 2012-03-13: Remove this when babeltrace port is complete +#Force GUI disabling while we port babeltrace +with_lttv_gui="no" AM_CONDITIONAL([BUILD_LTTV_GUI], [ test "x$with_lttv_gui" = "xyes" ])