all repos — fluxbox @ 90f4f1ecc1635fd5d144f86d64b1674958d0a59f

custom fork of the fluxbox windowmanager

fix compile issue with gcc 4.3
Mark Tiefenbruck mark@fluxbox.org
commit

90f4f1ecc1635fd5d144f86d64b1674958d0a59f

parent

d90befb43007274c03fb1783b3236072120e78e1

2 files changed, 9 insertions(+), 0 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 1.0.1: +*07/12/14: + * Fix compiling with gcc 4.3 (thanks Dmitry E. Oboukhov) + main.cc *07/12/13: * Fix configure option --with-style (thanks Slava Semushin) configure.in Makefile.am
M src/main.ccsrc/main.cc

@@ -45,6 +45,12 @@ #else

#include <stdlib.h> #endif +#ifdef HAVE_CSTRING + #include <cstring> +#else + #include <string.h> +#endif + #include <iostream> #include <fstream> #include <stdexcept>