diff options
author | aph <a.hewson@gmail.com> | 2014-01-31 18:10:18 +0000 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-01 10:34:04 -0300 |
commit | 2d00ead2e57653b771354a564f9a760c2ce0d18e (patch) | |
tree | c205d7000191c5f7f2f1a439bc5ac67524c4fc00 /src/ex_cmds2.c | |
parent | 72cf89bce8e4230dbc161dc5606f48ef9884ba70 (diff) | |
download | rneovim-2d00ead2e57653b771354a564f9a760c2ce0d18e.tar.gz rneovim-2d00ead2e57653b771354a564f9a760c2ce0d18e.tar.bz2 rneovim-2d00ead2e57653b771354a564f9a760c2ce0d18e.zip |
Fix build on OSX/Archlinux and add README
- remove SELinux dependency for now
- OSX: find libintl.h
- OSX: fix compile errors
- OSX: use hack around gettext nonsense
- fix gettext on ubuntu
- work around Arch's lack of -ltermcap
- add README.md
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 42ccf5a416..0162031b75 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -3349,11 +3349,7 @@ char_u * get_mess_lang() { } /* Complicated #if; matches with where get_mess_env() is used below. */ -#if (defined(FEAT_EVAL) && !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ - && defined(LC_MESSAGES))) \ - || ((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ - && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) \ - && !defined(LC_MESSAGES)) +#ifdef HAVE_WORKING_LIBINTL static char_u *get_mess_env __ARGS((void)); /* @@ -3411,8 +3407,7 @@ void set_lang_var() { set_vim_var_string(VV_LC_TIME, loc, -1); } -#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ - && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) +#ifdef HAVE_WORKING_LIBINTL /* * ":language": Set the language (locale). */ |