summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Suhr Christensen <jsc@umbraculum.org>2016-03-22 23:37:52 +0100
committerJonas Suhr Christensen <jsc@umbraculum.org>2016-03-22 23:37:52 +0100
commit3954b532e271c137d1f8c9346ea162dbfac0d78e (patch)
tree52f496c367ef82ad26d17e9c39439c8199e85040
parente7f0056c78a32756d3b64f55b7e351b4ebfc93b0 (diff)
Added --enable-sse=no to disable sse. Also definitely disabled building plugingui.
-rw-r--r--Makefile.am6
-rw-r--r--configure.ac5
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()