summaryrefslogtreecommitdiff
path: root/m4/codeset.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-03-04 12:22:14 +0000
committerJim Meyering <jim@meyering.net>2000-03-04 12:22:14 +0000
commitbb72a5875309cffb0aee689be76feb3ab8f61f4c (patch)
treeead9957a86ec2c490c3446eabc1791b749e19bee /m4/codeset.m4
parentbe7c99efe2daad2d897c1a3011c6edbb00357c10 (diff)
downloadcoreutils-bb72a5875309cffb0aee689be76feb3ab8f61f4c.tar.xz
*** empty log message ***
Diffstat (limited to 'm4/codeset.m4')
-rw-r--r--m4/codeset.m417
1 files changed, 17 insertions, 0 deletions
diff --git a/m4/codeset.m4 b/m4/codeset.m4
new file mode 100644
index 000000000..6f0b58e09
--- /dev/null
+++ b/m4/codeset.m4
@@ -0,0 +1,17 @@
+#serial 1
+
+dnl From Bruno Haible.
+
+AC_DEFUN(jm_LANGINFO_CODESET,
+[
+ AC_CACHE_CHECK([for nl_langinfo and CODESET], jm_cv_langinfo_codeset,
+ [AC_TRY_LINK([#include <langinfo.h>],
+ [char* cs = nl_langinfo(CODESET);],
+ jm_cv_langinfo_codeset=yes,
+ jm_cv_langinfo_codeset=no)
+ ])
+ if test $jm_cv_langinfo_codeset = yes; then
+ AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
+ [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
+ fi
+])