mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
filter out G_GNUC stuff when doing the compare.
Thu Nov 25 14:02:43 2004 Manish Singh <yosh@gimp.org> * glib/abicheck.sh: filter out G_GNUC stuff when doing the compare. * glib/gmessages.c (g_assert_warning): call abort() at the end, so gcc doesn't warn.
This commit is contained in:
parent
c2404e6cc9
commit
ccc3c1c409
@ -1,3 +1,10 @@
|
||||
Thu Nov 25 14:02:43 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter out G_GNUC stuff when doing the compare.
|
||||
|
||||
* glib/gmessages.c (g_assert_warning): call abort() at the end, so
|
||||
gcc doesn't warn.
|
||||
|
||||
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* configure.in: Add «nb» to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Nov 25 14:02:43 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter out G_GNUC stuff when doing the compare.
|
||||
|
||||
* glib/gmessages.c (g_assert_warning): call abort() at the end, so
|
||||
gcc doesn't warn.
|
||||
|
||||
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* configure.in: Add «nb» to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Nov 25 14:02:43 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter out G_GNUC stuff when doing the compare.
|
||||
|
||||
* glib/gmessages.c (g_assert_warning): call abort() at the end, so
|
||||
gcc doesn't warn.
|
||||
|
||||
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* configure.in: Add «nb» to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Nov 25 14:02:43 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter out G_GNUC stuff when doing the compare.
|
||||
|
||||
* glib/gmessages.c (g_assert_warning): call abort() at the end, so
|
||||
gcc doesn't warn.
|
||||
|
||||
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* configure.in: Add «nb» to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Nov 25 14:02:43 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter out G_GNUC stuff when doing the compare.
|
||||
|
||||
* glib/gmessages.c (g_assert_warning): call abort() at the end, so
|
||||
gcc doesn't warn.
|
||||
|
||||
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* configure.in: Add «nb» to ALL_LINGUAS.
|
||||
|
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
|
||||
cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/glib.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' | sort > expected-abi
|
||||
cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/glib.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' -e 's/ G_GNUC.*$//' | sort > expected-abi
|
||||
nm -D .libs/libglib-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
|
||||
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
||||
|
@ -548,6 +548,7 @@ g_assert_warning (const char *log_domain,
|
||||
line,
|
||||
pretty_function,
|
||||
expression);
|
||||
abort ();
|
||||
}
|
||||
|
||||
#define CHAR_IS_SAFE(wc) (!((wc < 0x20 && wc != '\t' && wc != '\n' && wc != '\r') || \
|
||||
|
Loading…
Reference in New Issue
Block a user