summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-11-26 18:15:56 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2012-11-26 18:15:56 -0600
commit84889ea4c0051c9b4b91e3361f6156e6f1f726dd (patch)
tree09fc755684fb1792d039f8673b8e2340f5b72f43 /kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h
parent2c67f751ab4568d9c1d33d9a4be31e0ca33e8342 (diff)
downloadtdenetwork-84889ea4c0051c9b4b91e3361f6156e6f1f726dd.tar.gz
tdenetwork-84889ea4c0051c9b4b91e3361f6156e6f1f726dd.zip
Fix automake warnings.
Diffstat (limited to 'kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h')
-rw-r--r--kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h b/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h
index 27a8e4be..c75b1a9e 100644
--- a/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h
+++ b/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/stun.h
@@ -196,7 +196,7 @@ class StunAddressAttribute : public StunAttribute {
public:
StunAddressAttribute(uint16 type);
-#if (_MSC_VER < 1300)
+#if defined(_MSC_VER) && _MSC_VER < 1300
enum { SIZE = 8 };
#else
static const uint16 SIZE = 8;
@@ -224,7 +224,7 @@ class StunUInt32Attribute : public StunAttribute {
public:
StunUInt32Attribute(uint16 type);
-#if (_MSC_VER < 1300)
+#if defined(_MSC_VER) && _MSC_VER < 1300
enum { SIZE = 4 };
#else
static const uint16 SIZE = 4;
@@ -273,7 +273,7 @@ public:
StunErrorCodeAttribute(uint16 type, uint16 length);
~StunErrorCodeAttribute();
-#if (_MSC_VER < 1300)
+#if defined(_MSC_VER) && _MSC_VER < 1300
enum { MIN_SIZE = 4 };
#else
static const uint16 MIN_SIZE = 4;
@@ -323,7 +323,7 @@ public:
StunTransportPrefsAttribute(uint16 type, uint16 length);
~StunTransportPrefsAttribute();
-#if (_MSC_VER < 1300)
+#if defined(_MSC_VER) && _MSC_VER < 1300
enum { SIZE1 = 4, SIZE2 = 12 };
#else
static const uint16 SIZE1 = 4;