MINOR: WURFL: do not emit warnings when not configured

At the moment the WURFL module emits 3 lines of warnings upon startup
when it is not referenced in the configuration file, which is quite
confusing. Let's make sure to keep it silent when not configured, as
detected by the absence of the wurfl-data-file statement.
diff --git a/src/wurfl.c b/src/wurfl.c
index 5d720af..27e673d 100644
--- a/src/wurfl.c
+++ b/src/wurfl.c
@@ -260,6 +260,11 @@
 	int wurfl_result_code = WURFL_OK;
 	int len;
 
+	// wurfl-data-file not configured, WURFL is not used so don't try to
+	// configure it.
+	if (global_wurfl.data_file == NULL)
+		return 0;
+
 	ha_notice("WURFL: Loading module v.%s\n", HA_WURFL_MODULE_VERSION);
 	// creating WURFL handler
 	global_wurfl.handle = wurfl_create();
@@ -272,11 +277,6 @@
 	ha_notice("WURFL: Engine handler created - API version %s\n", wurfl_get_api_version() );
 
 	// set wurfl data file
-	if (global_wurfl.data_file == NULL) {
-		ha_warning("WURFL: missing wurfl-data-file parameter in global configuration\n");
-		return ERR_WARN;
-	}
-
 	if (wurfl_set_root(global_wurfl.handle, global_wurfl.data_file) != WURFL_OK) {
 		ha_warning("WURFL: Engine setting root file failed - %s\n", wurfl_get_error_message(global_wurfl.handle));
 		return ERR_WARN;