all repos — fluxbox @ 2f0c8b1c271899d2faa6a475c1872a384c8cf4d3

custom fork of the fluxbox windowmanager

use gnu extensions for snprintf
fluxgen fluxgen
commit

2f0c8b1c271899d2faa6a475c1872a384c8cf4d3

parent

ef9da86c2786c6720096135d95c3241c4d881221

1 files changed, 6 insertions(+), 1 deletions(-)

jump to
M src/XmbFontImp.ccsrc/XmbFontImp.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: XmbFontImp.cc,v 1.2 2002/10/16 23:31:10 fluxgen Exp $ +// $Id: XmbFontImp.cc,v 1.3 2002/10/24 11:40:36 fluxgen Exp $ #include "XmbFontImp.hh"

@@ -34,6 +34,11 @@ #ifdef HAVE_SETLOCALE

#include <locale.h> #endif // HAVE_SETLOCALE +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif // _GNU_SOURCE + +#include <cstdio> #include <cstdarg> #include <iostream> using namespace std;