mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-15 00:36:19 +01:00
57d9c0926a
Sun Feb 17 11:37:06 2002 Owen Taylor <otaylor@redhat.com> * 1.3.14 * glib/glibintl.h: Error out of config.h wasn't included rather than including it, since config.h must be the first thing included. * glib/gconvert.c glib/gmarkup.c glib/gshell.c glib/gspawn.c glib/gunibreak.c glib/gunidecomp.c glib/guniprop.c: Include config.h as the first thing. (#71704, Morten Welinder)
31 lines
699 B
C
31 lines
699 B
C
#ifndef __GLIBINTL_H__
|
|
#define __GLIBINTL_H__
|
|
|
|
#ifndef SIZEOF_CHAR
|
|
#error "config.h must be included prior to glibintl.h"
|
|
#endif
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
gchar *_glib_gettext (const gchar *str) G_GNUC_FORMAT (1);
|
|
|
|
#include <libintl.h>
|
|
#define _(String) _glib_gettext(String)
|
|
|
|
#ifdef gettext_noop
|
|
#define N_(String) gettext_noop(String)
|
|
#else
|
|
#define N_(String) (String)
|
|
#endif
|
|
#else /* NLS is disabled */
|
|
#define _(String) (String)
|
|
#define N_(String) (String)
|
|
#define textdomain(String) (String)
|
|
#define gettext(String) (String)
|
|
#define dgettext(Domain,String) (String)
|
|
#define dcgettext(Domain,String,Type) (String)
|
|
#define bindtextdomain(Domain,Directory) (Domain)
|
|
#endif
|
|
|
|
#endif /* __GLIBINTL_H__ */
|