configure.ac: Avoid "Your OS is unknown" warning when configuring for Cygwin
Don't emit "Your OS is unknown" warning when configuring with --enable-xorg to build the XOrg DDX for Cygwin. The list of supported OSes is getting a bit unwieldy, so just remove it. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
549b3175af
commit
883927d2e8
|
@ -1993,11 +1993,13 @@ if test "x$XORG" = xyes; then
|
||||||
gnu*)
|
gnu*)
|
||||||
XORG_OS_SUBDIR="hurd"
|
XORG_OS_SUBDIR="hurd"
|
||||||
;;
|
;;
|
||||||
|
cygwin*)
|
||||||
|
XORG_OS_SUBDIR="stub"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
XORG_OS_SUBDIR="stub"
|
XORG_OS_SUBDIR="stub"
|
||||||
AC_MSG_NOTICE([m4_text_wrap(m4_join([ ],
|
AC_MSG_NOTICE([m4_text_wrap(m4_join([ ],
|
||||||
[Your OS is unknown. Xorg currently only supports Linux,],
|
[Your OS is unknown.],
|
||||||
[Free/Open/Net/DragonFlyBSD, Solaris/OpenSolaris, & GNU Hurd.],
|
|
||||||
[If you are interested in porting Xorg to your platform,],
|
[If you are interested in porting Xorg to your platform,],
|
||||||
[please email xorg@lists.freedesktop.org.]))])
|
[please email xorg@lists.freedesktop.org.]))])
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue