From 3954b532e271c137d1f8c9346ea162dbfac0d78e Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Tue, 22 Mar 2016 23:37:52 +0100 Subject: Added --enable-sse=no to disable sse. Also definitely disabled building plugingui. --- Makefile.am | 6 +++--- configure.ac | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index c90cd0e..3961e5e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,9 +2,9 @@ AUTOMAKE_OPTIONS = gnu SUBDIRS = tools include src plugin drumgizmo man test DISTDIRS = plugingui tools include src plugin drumgizmo man test -if DISABLE_GUI -SUBDIRS += plugingui -endif +# if DISABLE_GUI +#SUBDIRS += plugingui +#endif EXTRA_DIST = \ version.h \ diff --git a/configure.ac b/configure.ac index 52ddc17..d4a0990 100644 --- a/configure.ac +++ b/configure.ac @@ -526,6 +526,9 @@ AS_IF([test "x$enable_sse" = "x3"], [AC_MSG_RESULT([Setting sse level 1]) SSEFLAGS="-DSSE -msse"], + [test "x$enable_sse" = "xno"], + [AC_MSG_RESULT([No SSE])] + [test "x$enable_sse" = "xauto"], [AC_MSG_RESULT([Auto setting sse level]) @@ -577,7 +580,7 @@ AC_CONFIG_FILES( plugingui/Makefile include/Makefile man/Makefile - test/Makefile + test/Makefile drumgizmo/Makefile) AC_OUTPUT() -- cgit v1.2.3