diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-02-08 18:46:15 +0100 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-02-08 18:46:15 +0100 | 
| commit | 474b275e8388166acee7d90f7518de3557e73409 (patch) | |
| tree | 2be196609a44dac1e373219d68f7220c4a69f03c | |
| parent | 9aa7d527ae99c38992b0d8289e46d233bab87f64 (diff) | |
Patch from viccuad: Fix for X11 detection on BSD.
| -rw-r--r-- | configure.ac | 2 | 
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])  | 
