From: Gurucharan Shetty Date: Thu, 3 Apr 2014 22:52:45 +0000 (-0700) Subject: tests: Define a variable "IS_WIN32" for tests. X-Git-Tag: sliver-openvswitch-2.2.90-1~3^2~100 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c7c1bdf355d8885a61363f39a759baa96621f0f2;p=sliver-openvswitch.git tests: Define a variable "IS_WIN32" for tests. Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff --- diff --git a/tests/atlocal.in b/tests/atlocal.in index 06e738434..60f3dbf35 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -78,3 +78,13 @@ FreeBSD|NetBSD) LOOPBACK_INTERFACE=lo0 ;; esac + +# Check for MINGW platform. +case `uname` in +MINGW*) + IS_WIN32="yes" + ;; +*) + IS_WIN32="no" + ;; +esac