summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-02-08 18:46:15 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2016-02-08 18:46:15 +0100
commit474b275e8388166acee7d90f7518de3557e73409 (patch)
tree2be196609a44dac1e373219d68f7220c4a69f03c
parent9aa7d527ae99c38992b0d8289e46d233bab87f64 (diff)
Patch from viccuad: Fix for X11 detection on BSD.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 823f93d..840f4ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -89,7 +89,7 @@ AS_IF([test "x$enable_gui" = "xauto"],
[AC_MSG_RESULT([Auto setting gui based on host: $host_os])
AS_CASE([$host_os],
[darwin*], [enable_gui=""],
- [linux*|*BSD*], [enable_gui="x11"],
+ [linux*|*bsd*], [enable_gui="x11"],
[mingw*|windows*|winnt|cygwin], [enable_gui="win32"],
AC_MSG_ERROR([Your platform is not currently supported])