Description: gcc10 passes the -fno-common flag by default hence use extern for one of the declarations with same variable names
Author: Nilesh Patra <npatra974@gmail.com>
Last-Update: 2021-02-14
--- a/src/date_module.c
+++ b/src/date_module.c
@@ -32,7 +32,7 @@
  * Definitions 
  ***********************************************************************/
 const char * date_module = "date_module";
-apr_time_t start_time;
+extern apr_time_t start_time;
 
 typedef struct date_wconf_s {
   apr_time_t start_time;
