mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
Simple fixes to help building GLib on embedded systems without NLS.
2008-03-30 Matthias Clasen <mclasen@redhat.com> * glib/glibintl.h: * glib/gstrfuncs.c: * glib/gutils.c: Simple fixes to help building GLib on embedded systems without NLS. (#524350, Peter Kjellerstedt) svn path=/trunk/; revision=6779
This commit is contained in:
parent
7250e1dafd
commit
f0c679e3bf
@ -1,3 +1,10 @@
|
||||
2008-03-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/glibintl.h:
|
||||
* glib/gstrfuncs.c:
|
||||
* glib/gutils.c: Simple fixes to help building GLib on
|
||||
embedded systems without NLS. (#524350, Peter Kjellerstedt)
|
||||
|
||||
2008-03-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/ghash.c: Fix the build with -DG_DISABLE_ASSERT.
|
||||
@ -6,7 +13,7 @@
|
||||
2008-03-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gthread.h: Replace occurrances of G_GNUC_PRETTY_FUNCTION
|
||||
by G_STRFUNC. (#524344, Peter, Kjellerstedt)
|
||||
by G_STRFUNC. (#524344, Peter Kjellerstedt)
|
||||
|
||||
2008-03-30 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
|
@ -27,6 +27,7 @@ G_CONST_RETURN gchar *glib_gettext (const gchar *str);
|
||||
#define gettext(String) (String)
|
||||
#define dgettext(Domain,String) (String)
|
||||
#define dcgettext(Domain,String,Type) (String)
|
||||
#define dngettext(Domain,String1,String2,N) ((N) == 1 ? (String1) : (String2))
|
||||
#define bindtextdomain(Domain,Directory) (Domain)
|
||||
#endif
|
||||
|
||||
|
@ -42,11 +42,11 @@
|
||||
#if !defined (HAVE_STRSIGNAL) || !defined(NO_SYS_SIGLIST_DECL)
|
||||
#include <signal.h>
|
||||
#endif
|
||||
#include <libintl.h>
|
||||
|
||||
#include "glib.h"
|
||||
#include "gprintf.h"
|
||||
#include "gprintfint.h"
|
||||
#include "glibintl.h"
|
||||
|
||||
#include "galias.h"
|
||||
|
||||
|
@ -36,7 +36,6 @@
|
||||
#include <stdarg.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <libintl.h>
|
||||
#include <locale.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h> /* For tolower() */
|
||||
|
Loading…
Reference in New Issue
Block a user