summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@gmail.com>2014-07-18 13:00:30 +0200
committerDavid Herrmann <dh.herrmann@gmail.com>2014-07-18 13:00:30 +0200
commita72e03749f445a85010e4518ff94aa0d109043a0 (patch)
tree4e4724ef9615bbec4ee95aac5b24bce810ed29d4 /autogen.sh
parent037ee337f0f64bd35ced765f2e2d97f496d4e7c7 (diff)
autogen: add "t" switch with --enable-terminal
Just temporarily add a "t" switch to "./autogen t" runs with --enable-terminal. Once it's compile-tested enough, we can add it to the default flags.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index 4823fe715..744d13b47 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -62,6 +62,9 @@ cd $oldpwd
if [ "x$1" = "xc" ]; then
$topdir/configure CFLAGS='-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args
make clean
+elif [ "x$1" = "xt" ]; then
+ $topdir/configure CFLAGS='-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus --enable-terminal $args
+ make clean
elif [ "x$1" = "xg" ]; then
$topdir/configure CFLAGS='-g -Og -ftrapv' --enable-compat-libs --enable-kdbus $args
make clean