We cannot include rfb/util.h here, since that causes an error when building under Windows
('INT32' : redefinition; different basic types).


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@101 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/rfb/Rect.h b/rfb/Rect.h
index 0ddf36c..1f88daf 100644
--- a/rfb/Rect.h
+++ b/rfb/Rect.h
@@ -21,7 +21,12 @@
 #ifndef __RFB_RECT_INCLUDED__
 #define __RFB_RECT_INCLUDED__
 
-#include <rfb/util.h>
+#ifndef vncmin
+#define vncmin(a,b)            (((a) < (b)) ? (a) : (b))
+#endif
+#ifndef vncmax
+#define vncmax(a,b)            (((a) > (b)) ? (a) : (b))
+#endif
 
 namespace rfb {