diff options
author | B. Watson <yalhcru@gmail.com> | 2015-11-22 03:11:44 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-28 07:26:17 +0700 |
commit | 3ae00a0dfa58bf37717d8e161f86d3689a95217f (patch) | |
tree | 78d5236a5d0a7c8ec89e08b4316cb9b03a199781 /desktop/wmmon/patches/gcc5.diff | |
parent | 1d54ad386f6c9e160c10e8a252870dca89e25524 (diff) | |
download | slackbuilds-3ae00a0dfa58bf37717d8e161f86d3689a95217f.tar.gz |
desktop/wmmon: Updated for version 1.1+20131205.
Diffstat (limited to 'desktop/wmmon/patches/gcc5.diff')
-rw-r--r-- | desktop/wmmon/patches/gcc5.diff | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/desktop/wmmon/patches/gcc5.diff b/desktop/wmmon/patches/gcc5.diff new file mode 100644 index 0000000000..1d02bddb48 --- /dev/null +++ b/desktop/wmmon/patches/gcc5.diff @@ -0,0 +1,18 @@ +Description: fix build failure with gcc5: + build with "-std=gnu89" +Origin: vendor +Bug-Debian: https://bugs.debian.org/778171 +Author: gregor herrmann <gregoa@debian.org> +Last-Update: 2015-07-19 + +--- a/wmmon/Makefile ++++ b/wmmon/Makefile +@@ -5,7 +5,7 @@ + ../wmgeneral/misc.o \ + ../wmgeneral/list.o + +-CFLAGS = -O2 ++CFLAGS = -O2 -std=gnu89 + CC = cc + + |