diff options
author | Kalle Wallin <kaw@linux.se> | 2004-06-07 21:29:10 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-06-07 21:29:10 +0000 |
commit | a71d278498ffef2051c8430dd67795a157b8290e (patch) | |
tree | 62759842fd8e8444b423436c3cce76d7c833901d /src | |
parent | 77c69999a63e6b999814cb39c35bb4d30646c145 (diff) | |
download | mpd-a71d278498ffef2051c8430dd67795a157b8290e.tar.gz mpd-a71d278498ffef2051c8430dd67795a157b8290e.tar.xz mpd-a71d278498ffef2051c8430dd67795a157b8290e.zip |
Disable nls support if glib is pre 2.4 (OSX)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1379 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/ncmpc.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 79822f029..0554098b9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -11,7 +11,7 @@ AM_CPPFLAGS = $(GLIB_CFLAGS) -DLOCALE_DIR=\""$(datadir)/locale"\" -DSYSCONFDIR=\ ncmpc_headers = libmpdclient.h mpc.h options.h conf.h command.h screen.h \ screen_utils.h screen_play.h screen_file.h screen_search.h \ - screen_clock.h screen_help.h list_window.h colors.h support.h \ + screen_help.h list_window.h colors.h support.h \ wreadln.h ncmpc.h ncmpc_SOURCES = libmpdclient.c main.c mpc.c options.c conf.c command.c \ diff --git a/src/ncmpc.h b/src/ncmpc.h index bc6c9136a..2708aac50 100644 --- a/src/ncmpc.h +++ b/src/ncmpc.h @@ -12,8 +12,10 @@ #endif /* i18n */ -#ifdef ENABLE_NLS +#ifdef HAVE_LOCALE_H #include <locale.h> +#endif +#ifdef ENABLE_NLS #include <libintl.h> #include <glib/gi18n.h> #else |