summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2014-04-27 22:18:52 +0100
committerJon TURNEY <jon.turney@dronecode.org.uk>2014-05-05 12:30:51 +0100
commit83aff839300564e754b363f88ceea8d9b3c8f15f (patch)
treedf0801b1509e9fa15b05b200a7600f64b771d800
parent711d87aa472603a83f693dcfc41d08232db9ee8a (diff)
Avoid "Your OS is unknown" warning when configuring Xorg for cygwin
-rw-r--r--configure.ac7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ed650defa..8e4b543a7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,3 +1,4 @@
+
dnl Copyright © 2003-2007 Keith Packard, Daniel Stone
dnl
dnl Permission is hereby granted, free of charge, to any person obtaining a
@@ -1970,11 +1971,13 @@ if test "x$XORG" = xyes; then
gnu*)
XORG_OS_SUBDIR="hurd"
;;
+ cygwin*)
+ XORG_OS_SUBDIR="stub"
+ ;;
*)
XORG_OS_SUBDIR="stub"
AC_MSG_NOTICE([m4_text_wrap(m4_join([ ],
- [Your OS is unknown. Xorg currently only supports Linux,],
- [Free/Open/Net/DragonFlyBSD, Solaris/OpenSolaris, & GNU Hurd.],
+ [Your OS is unknown.],
[If you are interested in porting Xorg to your platform,],
[please email xorg@lists.freedesktop.org.]))])
;;