Fix handling of new config option

fixes #256
diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h
index 9c6a0c5..1f9f8be 100644
--- a/include/polarssl/ssl.h
+++ b/include/polarssl/ssl.h
@@ -287,7 +287,9 @@
  * The default is 1024 bits (128 bytes) for compatibility reasons.
  * From a purely security perspective, 2048 bits would be better.
  */
+#if !defined(SSL_MIN_DHM_BYTES)
 #define SSL_MIN_DHM_BYTES             128   /**< Min size of the Diffie-Hellman prime */
+#endif
 /* \} name SECTION: Module settings */
 
 /*