remove libev build tag
authorAndy Green <andy.green@linaro.org>
Wed, 2 Apr 2014 23:17:10 +0000 (07:17 +0800)
committerAndy Green <andy.green@linaro.org>
Wed, 2 Apr 2014 23:17:10 +0000 (07:17 +0800)
It's told during context init if it uses libev or not in the logs

Signed-off-by: Andy Green <andy.green@linaro.org>
lib/libwebsockets.c

index a6649ef..c773cf9 100644 (file)
@@ -33,13 +33,7 @@ static int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE;
 static void lwsl_emit_stderr(int level, const char *line);
 static void (*lwsl_emit)(int level, const char *line) = lwsl_emit_stderr;
 
-#ifdef LWS_USE_LIBEV
-#define _LWS_EV_TAG " libev"
-#else
-#define _LWS_EV_TAG
-#endif /* LWS_USE_LIBEV */
-static const char *library_version =
-                       LWS_LIBRARY_VERSION " " LWS_BUILD_HASH _LWS_EV_TAG;
+static const char *library_version = LWS_LIBRARY_VERSION " " LWS_BUILD_HASH;
 
 static const char * const log_level_names[] = {
        "ERR",