ofproto: Fix potential leak during flow mods.
[sliver-openvswitch.git] / tests / atlocal.in
index 5c0db2a..60f3dbf 100644 (file)
@@ -68,3 +68,23 @@ FreeBSD)
     esac
     export MALLOC_CONF
 esac
+
+# The name of loopback interface 
+case `uname` in
+Linux)
+    LOOPBACK_INTERFACE=lo
+    ;;
+FreeBSD|NetBSD)
+    LOOPBACK_INTERFACE=lo0
+    ;;
+esac
+
+# Check for MINGW platform.
+case `uname` in
+MINGW*)
+    IS_WIN32="yes"
+    ;;
+*)
+    IS_WIN32="no"
+    ;;
+esac