mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
[meson] Detect if gettext has _nl_msg_cat_cntr . Refs #325
This commit is contained in:
parent
fa2d778c8d
commit
0f46877572
@ -545,6 +545,9 @@
|
||||
/* Define to 1 if you have the <net/if.h> header file. */
|
||||
#mesondefine HAVE_NET_IF_H
|
||||
|
||||
/* Define to 1 if gettext has _nl_msg_cat_cntr */
|
||||
#mesondefine HAVE_NL_MSG_CAT_CNTR
|
||||
|
||||
/* Define if you have off_t */
|
||||
#mesondefine HAVE_OFF_T
|
||||
|
||||
|
10
meson.build
10
meson.build
@ -1117,6 +1117,16 @@ if compiler.compiles('int a; typeof(a) b;', name: 'typeof')
|
||||
conf_data.set('HAVE_TYPEOF', 1)
|
||||
endif
|
||||
|
||||
if conf_data.get('CONFIG_GETTEXT') and conf_data.get('CONFIG_NLS')
|
||||
code = '''#include <libintl.h>
|
||||
extern int _nl_msg_cat_cntr;
|
||||
void main() { _nl_msg_cat_cntr = 1; }
|
||||
'''
|
||||
if compiler.links(code, name: 'test')
|
||||
conf_data.set('HAVE_NL_MSG_CAT_CNTR', 1)
|
||||
endif
|
||||
endif
|
||||
|
||||
if compiler.compiles('''#include <unistd.h>
|
||||
int func(void) { return sysconf(_SC_PAGE_SIZE); }
|
||||
''', name: '_SC_PAGE_SIZE')
|
||||
|
@ -217,8 +217,12 @@ set_language(int language)
|
||||
}
|
||||
}
|
||||
env_set("LANGUAGE", LANGUAGE, -1);
|
||||
|
||||
_nl_msg_cat_cntr++;
|
||||
{
|
||||
#ifdef HAVE_NL_MSG_CAT_CNTR
|
||||
extern int _nl_msg_cat_cntr;
|
||||
_nl_msg_cat_cntr++;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -13,8 +13,6 @@ extern "C" {
|
||||
extern struct module gettext_module;
|
||||
|
||||
#ifdef CONFIG_GETTEXT
|
||||
extern int _nl_msg_cat_cntr;
|
||||
|
||||
#include <libintl.h>
|
||||
|
||||
extern int current_charset;
|
||||
|
Loading…
Reference in New Issue
Block a user