Avoid non-portable <glob.h> API

And thus we can build gschema-compile on all platforms, and run it in
tests.
This commit is contained in:
Tor Lillqvist 2010-04-19 15:48:30 +03:00
parent c279b5b999
commit a96360ad68
3 changed files with 19 additions and 27 deletions

View File

@ -495,11 +495,7 @@ gioenumtypes.c: $(gio_headers) gioenumtypes.c.template
gio-2.0.lib: libgio-2.0.la gio.def
lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgio-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gio.def -out:$@
bin_PROGRAMS = gio-querymodules
if OS_UNIX
bin_PROGRAMS += gschema-compile
endif
bin_PROGRAMS = gio-querymodules gschema-compile
gio_querymodules_SOURCES = gio-querymodules.c
gio_querymodules_LDADD = \

View File

@ -22,7 +22,6 @@
#include <string.h>
#include <unistd.h>
#include <stdio.h>
#include <glob.h>
#include "gvdb/gvdb-builder.h"
@ -471,8 +470,9 @@ main (int argc, char **argv)
gboolean byteswap = G_BYTE_ORDER != G_LITTLE_ENDIAN;
GError *error = NULL;
GHashTable *table;
glob_t matched;
gint status;
GDir *dir;
const gchar *file;
GPtrArray *files;
gchar *srcdir;
gchar *targetdir = NULL;
gchar *target;
@ -509,31 +509,31 @@ main (int argc, char **argv)
else
target = "gschemas.compiled";
if (chdir (srcdir))
dir = g_dir_open (srcdir, 0, &error);
if (dir == NULL)
{
perror ("chdir");
fprintf (stderr, "%s\n", error->message);
return 1;
}
status = glob ("*.gschema.xml", 0, NULL, &matched);
if (status == GLOB_ABORTED)
files = g_ptr_array_new ();
while ((file = g_dir_read_name (dir)) != NULL)
{
perror ("glob");
return 1;
if (g_str_has_suffix (file, ".gschema.xml"))
{
g_ptr_array_add (files, g_strdup (file));
}
}
else if (status == GLOB_NOMATCH)
if (files->len == 0)
{
fprintf (stderr, "no schema files found\n");
return 1;
}
else if (status != 0)
{
fprintf (stderr, "unknown glob error\n");
return 1;
}
if (!(table = parse_gschema_files (matched.gl_pathv, byteswap, &error)) ||
g_ptr_array_add (files, NULL);
if (!(table = parse_gschema_files ((gchar **) files->pdata, byteswap, &error)) ||
!gvdb_table_write_contents (table, target, byteswap, &error))
{
fprintf (stderr, "%s\n", error->message);

View File

@ -148,11 +148,7 @@ gsettings_LDADD = $(progs_ldadd)
EXTRA_DIST += org.gtk.test.gschema org.gtk.test.gschema.xml de.po
MISC_STUFF = test.mo
if OS_UNIX
MISC_STUFF += gschemas.compiled
endif
MISC_STUFF = gschemas.compiled test.mo
test.mo: de.po
$(MSGFMT) -o test.mo $(srcdir)/de.po; \