Selaa lähdekoodia

Fix warning about unused function when compiling with ancient libevent

svn:r4355
Nick Mathewson 20 vuotta sitten
vanhempi
commit
c45845204a
1 muutettua tiedostoa jossa 4 lisäystä ja 2 poistoa
  1. 4 2
      src/or/config.c

+ 4 - 2
src/or/config.c

@@ -217,8 +217,9 @@ static uint64_t config_parse_memunit(const char *s, int *ok);
 static int config_parse_interval(const char *s, int *ok);
 static void print_cvs_version(void);
 static int init_libevent(void);
+#if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
 static void check_libevent_version(const char *m, const char *v, int server);
-
+#endif
 
 /*
  * Functions to read and write the global options pointer.
@@ -2652,7 +2653,7 @@ init_libevent(void)
   return 0;
 }
 
-
+#if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
 /**
  * Compare the given libevent method and version to a list of versions
  * which are known not to work.  Warn the user as appropriate.
@@ -2697,6 +2698,7 @@ check_libevent_version(const char *m, const char *v, int server)
   }
 
 }
+#endif
 
 static void
 print_cvs_version(void)