From: Samuel Holland Date: Tue, 13 Dec 2016 18:32:57 +0000 (-0600) Subject: Fix i3status to compile with -fno-common (#185) X-Git-Tag: 2.11~7 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7a7974d76dc9afd66d588148dce1610ec1fab439;p=i3%2Fi3status Fix i3status to compile with -fno-common (#185) This avoids multiple declarations of the same global variable in different source files. --- diff --git a/i3status.c b/i3status.c index 1968a97..3b9ab72 100644 --- a/i3status.c +++ b/i3status.c @@ -71,6 +71,11 @@ void **cur_instance; pthread_t main_thread; +markup_format_t markup_format; +output_format_t output_format; + +char *pct_mark; + /* * Set the exit_upon_signal flag, because one cannot do anything in a safe * manner in a signal handler (e.g. fprintf, which we really want to do for diff --git a/include/i3status.h b/include/i3status.h index e1b11f9..a0e1e31 100644 --- a/include/i3status.h +++ b/include/i3status.h @@ -1,17 +1,23 @@ #ifndef _I3STATUS_H #define _I3STATUS_H -enum { O_DZEN2, - O_XMOBAR, - O_I3BAR, - O_LEMONBAR, - O_TERM, - O_NONE } output_format; +typedef enum { + O_DZEN2, + O_XMOBAR, + O_I3BAR, + O_LEMONBAR, + O_TERM, + O_NONE +} output_format_t; +extern output_format_t output_format; -enum { M_PANGO, - M_NONE } markup_format; +typedef enum { + M_PANGO, + M_NONE +} markup_format_t; +extern markup_format_t markup_format; -char *pct_mark; +extern char *pct_mark; #include #include