aboutsummaryrefslogtreecommitdiffstats
path: root/m4/codeset.m4
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-05 18:09:38 +0100
committerMax Kellermann <max@duempel.org>2009-01-05 18:09:38 +0100
commit2e2bfb4515948f8136b6f819bcaf9122f81fc10f (patch)
tree9054bae48759aef5d0bba436c69e0ad0a3724e85 /m4/codeset.m4
parent493f661fa40cd9e8c1777c44b3dd08b4966028c0 (diff)
downloadmpd-2e2bfb4515948f8136b6f819bcaf9122f81fc10f.tar.gz
mpd-2e2bfb4515948f8136b6f819bcaf9122f81fc10f.tar.xz
mpd-2e2bfb4515948f8136b6f819bcaf9122f81fc10f.zip
m4: deleted acx_pthread.m4 and codeset.m4
Both are unused.
Diffstat (limited to '')
-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
-])