summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-01-25 20:19:03 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2014-01-25 20:19:03 +0100
commitf881ba55986b6f0fe9eee1f8fd5204c9cc0ac015 (patch)
tree70b30e835da3d00f38b7413023f3ee3fd52b1979
parent57765f0bfb9d456abf5f7251ca18b9c42874347b (diff)
Add missing 'cygwin' token to os autodetect.
-rw-r--r--configure.ac4
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"
;;
*)