aboutsummaryrefslogtreecommitdiffstats
path: root/m4/codeset.m4
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-03-28 20:45:29 +0000
committerKalle Wallin <kaw@linux.se>2004-03-28 20:45:29 +0000
commita01b91b2c10797ad2bf6d9d7901bf59ea7d2e193 (patch)
treeba8232ab6c2737633c3f9de2964d560c365e7d75 /m4/codeset.m4
parent03af1645293ee6d1e0d083f1a9392e8606afb8bd (diff)
downloadmpd-a01b91b2c10797ad2bf6d9d7901bf59ea7d2e193.tar.gz
mpd-a01b91b2c10797ad2bf6d9d7901bf59ea7d2e193.tar.xz
mpd-a01b91b2c10797ad2bf6d9d7901bf59ea7d2e193.zip
Started to use glib (not iconv) for character set conversions.
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@524 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'm4/codeset.m4')
-rw-r--r--m4/codeset.m423
1 files changed, 0 insertions, 23 deletions
diff --git a/m4/codeset.m4 b/m4/codeset.m4
deleted file mode 100644
index 59535ebcf..000000000
--- a/m4/codeset.m4
+++ /dev/null
@@ -1,23 +0,0 @@
-# codeset.m4 serial AM1 (gettext-0.10.40)
-dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
-dnl This file is free software, distributed under the terms of the GNU
-dnl General Public License. As a special exception to the GNU General
-dnl Public License, this file may be distributed as part of a program
-dnl that contains a configuration script generated by Autoconf, under
-dnl the same distribution terms as the rest of that program.
-
-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);],
- 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
-])