mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
gstdio.h and g_mkdir are in glib-2.6 -- use old APIs with glib-2.4.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13543 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
9bcdddbe43
commit
9d84d59f97
@ -1,3 +1,8 @@
|
||||
2006-03-08 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* src/engine/gnc-filepath-utils.c:
|
||||
gstdio.h and g_mkdir are in glib-2.6 -- use old APIs with glib-2.4.
|
||||
|
||||
2006-03-08 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* src/gnc-module/gnc-module.c, src/backend/file/sixtp-utils.c:
|
||||
|
@ -35,7 +35,11 @@
|
||||
#include <glib.h>
|
||||
#include <glib/gi18n.h>
|
||||
#include <glib/gprintf.h>
|
||||
#ifdef HAVE_GLIB26
|
||||
#include <glib/gstdio.h>
|
||||
#else
|
||||
#define g_mkdir(a,b) mkdir(a,b)
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
Loading…
Reference in New Issue
Block a user