Disable multiple MessageID checks

Honor WS-Management 1.1.1 standard (line 739):
  A message may be retransmitted for any purpose (including
  communications failure) and may use the same wsa:MessageID value.
diff --git a/ChangeLog b/ChangeLog
index da23809..3dc14d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2.4.2
   - Fix crash in redirect module (typo)
+  - Honor WS-Management 1.1.1 standard (line 739)
+    Disable multiple MessageID checks
 
 2.4.1
 - Build fixes
diff --git a/src/lib/CMakeLists.txt b/src/lib/CMakeLists.txt
index ea54e44..0d46e0b 100644
--- a/src/lib/CMakeLists.txt
+++ b/src/lib/CMakeLists.txt
@@ -10,7 +10,7 @@
 
 ADD_DEFINITIONS( -DPACKAGE_PLUGIN_DIR="\\\"${PACKAGE_PLUGIN_DIR}\\\"" )
 
-SET( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${XML_CFLAGS} -g" )
+SET( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${XML_CFLAGS} -g -DIGNORE_DUPLICATE_ID" )
 
 
 ########### wsman ###############