mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 02:06:18 +01:00
rm autom4te.cache, since it might interfere with differing autoconf
Mon Oct 25 15:05:18 2004 Manish Singh <yosh@gimp.org> * autogen.sh: rm autom4te.cache, since it might interfere with differing autoconf versions. * tests/child-test.c: use GINT_TO_POINTER for g_child_watch_add user data. * glib/gfileutils.c: G_IS_DIR_SEPARATOR is defined in gutils.h now, don't redefine it here.
This commit is contained in:
parent
5883072cb2
commit
5c38cfa58d
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
Mon Oct 25 15:05:18 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* autogen.sh: rm autom4te.cache, since it might interfere with
|
||||
differing autoconf versions.
|
||||
|
||||
* tests/child-test.c: use GINT_TO_POINTER for g_child_watch_add
|
||||
user data.
|
||||
|
||||
* glib/gfileutils.c: G_IS_DIR_SEPARATOR is defined in gutils.h now,
|
||||
don't redefine it here.
|
||||
|
||||
2004-10-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c (g_key_file_remove_group_node): Don't
|
||||
|
@ -1,3 +1,14 @@
|
||||
Mon Oct 25 15:05:18 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* autogen.sh: rm autom4te.cache, since it might interfere with
|
||||
differing autoconf versions.
|
||||
|
||||
* tests/child-test.c: use GINT_TO_POINTER for g_child_watch_add
|
||||
user data.
|
||||
|
||||
* glib/gfileutils.c: G_IS_DIR_SEPARATOR is defined in gutils.h now,
|
||||
don't redefine it here.
|
||||
|
||||
2004-10-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c (g_key_file_remove_group_node): Don't
|
||||
|
@ -1,3 +1,14 @@
|
||||
Mon Oct 25 15:05:18 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* autogen.sh: rm autom4te.cache, since it might interfere with
|
||||
differing autoconf versions.
|
||||
|
||||
* tests/child-test.c: use GINT_TO_POINTER for g_child_watch_add
|
||||
user data.
|
||||
|
||||
* glib/gfileutils.c: G_IS_DIR_SEPARATOR is defined in gutils.h now,
|
||||
don't redefine it here.
|
||||
|
||||
2004-10-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c (g_key_file_remove_group_node): Don't
|
||||
|
@ -1,3 +1,14 @@
|
||||
Mon Oct 25 15:05:18 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* autogen.sh: rm autom4te.cache, since it might interfere with
|
||||
differing autoconf versions.
|
||||
|
||||
* tests/child-test.c: use GINT_TO_POINTER for g_child_watch_add
|
||||
user data.
|
||||
|
||||
* glib/gfileutils.c: G_IS_DIR_SEPARATOR is defined in gutils.h now,
|
||||
don't redefine it here.
|
||||
|
||||
2004-10-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c (g_key_file_remove_group_node): Don't
|
||||
|
@ -1,3 +1,14 @@
|
||||
Mon Oct 25 15:05:18 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* autogen.sh: rm autom4te.cache, since it might interfere with
|
||||
differing autoconf versions.
|
||||
|
||||
* tests/child-test.c: use GINT_TO_POINTER for g_child_watch_add
|
||||
user data.
|
||||
|
||||
* glib/gfileutils.c: G_IS_DIR_SEPARATOR is defined in gutils.h now,
|
||||
don't redefine it here.
|
||||
|
||||
2004-10-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gkeyfile.c (g_key_file_remove_group_node): Don't
|
||||
|
@ -72,6 +72,8 @@ if test -z "$AUTOGEN_SUBDIR_MODE"; then
|
||||
fi
|
||||
fi
|
||||
|
||||
rm -rf autom4te.cache
|
||||
|
||||
$ACLOCAL $ACLOCAL_FLAGS || exit $?
|
||||
|
||||
libtoolize --force || exit $?
|
||||
|
@ -65,12 +65,6 @@
|
||||
|
||||
#include "glibintl.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#define G_IS_DIR_SEPARATOR(c) (c == G_DIR_SEPARATOR || c == '/')
|
||||
#else
|
||||
#define G_IS_DIR_SEPARATOR(c) (c == G_DIR_SEPARATOR)
|
||||
#endif
|
||||
|
||||
/**
|
||||
* g_file_test:
|
||||
* @filename: a filename to test
|
||||
|
@ -169,9 +169,11 @@ main (int argc, char *argv[])
|
||||
g_thread_create (test_thread, GINT_TO_POINTER (20), FALSE, NULL);
|
||||
#else
|
||||
pid = get_a_child (10);
|
||||
g_child_watch_add (pid, child_watch_callback, GINT_TO_POINTER (10));
|
||||
g_child_watch_add (pid, (GChildWatchFunc) child_watch_callback,
|
||||
GINT_TO_POINTER (10));
|
||||
pid = get_a_child (20);
|
||||
g_child_watch_add (pid, child_watch_callback, GINT_TO_POINTER (20));
|
||||
g_child_watch_add (pid, (GChildWatchFunc) child_watch_callback,
|
||||
GINT_TO_POINTER (20));
|
||||
#endif
|
||||
|
||||
g_main_loop_run (main_loop);
|
||||
|
Loading…
Reference in New Issue
Block a user