diff options
author | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2013-01-21 02:30:14 +0100 |
---|---|---|
committer | Jérémie Courrèges-Anglas <jca@wxcvbn.org> | 2013-01-21 03:47:40 +0100 |
commit | 332b260f17547d822567473f6b92ff710cf738a3 (patch) | |
tree | 1c53088a0fb8d13c8040abb71ae4d50c905b8516 | |
parent | 25827ea4a0f99d5327781892d6cbea84ef78a07c (diff) | |
download | ratpoison-332b260f17547d822567473f6b92ff710cf738a3.zip |
autotools: introduce AM_LANGINFO_CODESET
* (m4/codeset.m4) new file (from the gettext package)
* (configure.in) use AM_LANGINFO_CODESET
* (.gitignore) don't ignore m4/codeset.m4
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | m4/codeset.m4 | 21 |
3 files changed, 24 insertions, 0 deletions
@@ -1,5 +1,6 @@ *~ /build-aux/ +!/m4/codeset.m4 /m4/ configure Makefile diff --git a/configure.in b/configure.in index 3c186da..aa4299f 100644 --- a/configure.in +++ b/configure.in @@ -152,5 +152,7 @@ dnl Checks for library functions. AC_CHECK_FUNCS(getline getopt getopt_long setenv setpgid setpgrp setsid) AC_CHECK_FUNCS(unsetenv usleep vsnprintf) +AM_LANGINFO_CODESET + AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile contrib/Makefile]) AC_OUTPUT diff --git a/m4/codeset.m4 b/m4/codeset.m4 new file mode 100644 index 0000000..a53c042 --- /dev/null +++ b/m4/codeset.m4 @@ -0,0 +1,21 @@ +# codeset.m4 serial 4 (gettext-0.18) +dnl Copyright (C) 2000-2002, 2006, 2008-2010 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Bruno Haible. + +AC_DEFUN([AM_LANGINFO_CODESET], +[ + AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset], + [AC_TRY_LINK([#include <langinfo.h>], + [char* cs = nl_langinfo(CODESET); return !cs;], + [am_cv_langinfo_codeset=yes], + [am_cv_langinfo_codeset=no]) + ]) + if test $am_cv_langinfo_codeset = yes; then + AC_DEFINE([HAVE_LANGINFO_CODESET], [1], + [Define if you have <langinfo.h> and nl_langinfo(CODESET).]) + fi +]) |