diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-01-25 20:19:03 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-01-25 20:19:03 +0100 |
commit | f881ba55986b6f0fe9eee1f8fd5204c9cc0ac015 (patch) | |
tree | 70b30e835da3d00f38b7413023f3ee3fd52b1979 /configure.ac | |
parent | 57765f0bfb9d456abf5f7251ca18b9c42874347b (diff) |
Add missing 'cygwin' token to os autodetect.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 79d81c1..966b037 100644 --- a/configure.ac +++ b/configure.ac @@ -56,7 +56,7 @@ if test "x$enable_gui" = "xyes"; then fi if test "x$enable_gui" = "xauto"; then - AC_MSG_RESULT([Auto setting gui $host_os]) + AC_MSG_RESULT([Auto setting gui based on host: $host_os]) case $host_os in darwin* ) enable_gui="" @@ -64,7 +64,7 @@ if test "x$enable_gui" = "xauto"; then linux*|*BSD*) enable_gui="x11" ;; - mingw*|windows*|winnt) + mingw*|windows*|winnt|cygwin) enable_gui="win32" ;; *) |