aboutsummaryrefslogtreecommitdiffstats
path: root/m4/codeset.m4
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-05 18:01:19 +0100
committerMax Kellermann <max@duempel.org>2009-01-05 18:01:19 +0100
commit6568fa53bcd58b5330d7ac1f9f7c38a235975db4 (patch)
tree1ea9062281fdea4013e10d86ccc78cd911e692ff /m4/codeset.m4
parentaf521599d11ac5a33081fa5ab88cb24225b03aa1 (diff)
downloadmpd-6568fa53bcd58b5330d7ac1f9f7c38a235975db4.tar.gz
mpd-6568fa53bcd58b5330d7ac1f9f7c38a235975db4.tar.xz
mpd-6568fa53bcd58b5330d7ac1f9f7c38a235975db4.zip
m4: deleted codeset.m4 and glib-2.0.m4
Both files are unused.
Diffstat (limited to '')
-rw-r--r--m4/codeset.m421
1 files changed, 0 insertions, 21 deletions
diff --git a/m4/codeset.m4 b/m4/codeset.m4
deleted file mode 100644
index 223955b45..000000000
--- a/m4/codeset.m4
+++ /dev/null
@@ -1,21 +0,0 @@
-# codeset.m4 serial 2 (gettext-0.16)
-dnl Copyright (C) 2000-2002, 2006 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
-])