Fix to the gtk port so versions of gtk without g_file_set_contents can

be used.
This commit is contained in:
yabause 2006-12-25 22:06:15 +00:00
parent 2713e143ef
commit f1f3c38c42
3 changed files with 63 additions and 1 deletions

View File

@ -1,4 +1,4 @@
bin_PROGRAMS = desmume
desmume_SOURCES = main.c desmume.c dToolsList.c tools/ioregsView.c ../sndsdl.c
desmume_SOURCES = gtk-compat.c gtk-compat.h main.c desmume.c dToolsList.c tools/ioregsView.c ../sndsdl.c
desmume_LDADD = ../libdesmume.a $(SDL_LIBS) $(GTK_LIBS)
desmume_CFLAGS = $(SDL_CFLAGS) $(GTK_CFLAGS)

View File

@ -0,0 +1,33 @@
/* Copyright 2006 Guillaume Duhamel
This file is part of DeSmuME.
DeSmuME is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DeSmuME is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DeSmuME; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "gtk-compat.h"
#if !GLIB_CHECK_VERSION(2, 8, 0)
gboolean g_file_set_contents(const gchar * filename, const gchar * contents, gssize len, GError ** error) {
FILE * file = fopen(filename, "w");
if (len == -1)
fprintf(file, "%s", contents);
else
fwrite(contents, 1, len, file);
fclose(file);
}
#endif

View File

@ -0,0 +1,29 @@
/* Copyright 2006 Guillaume Duhamel
This file is part of DeSmuME.
DeSmuME is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DeSmuME is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DeSmuME; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef YUI_GTK_COMPAT_H
#define YUI_GTK_COMPAT_H
#include <gtk/gtk.h>
#if ((GLIB_MAJOR_VERSION < 2) || ((GLIB_MAJOR_VERSION == 2) && (GLIB_MINOR_VERSION < 8)))
gboolean g_file_set_contents(const gchar *, const gchar *, gssize, GError **);
#endif
#endif