codeset.m4
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:1k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. # codeset.m4 serial AM1 (gettext-0.10.40)
  2. dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
  3. dnl This file is free software, distributed under the terms of the GNU
  4. dnl General Public License.  As a special exception to the GNU General
  5. dnl Public License, this file may be distributed as part of a program
  6. dnl that contains a configuration script generated by Autoconf, under
  7. dnl the same distribution terms as the rest of that program.
  8. dnl From Bruno Haible.
  9. AC_DEFUN([AM_LANGINFO_CODESET],
  10. [
  11.   AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
  12.     [AC_TRY_LINK([#include <langinfo.h>],
  13.       [char* cs = nl_langinfo(CODESET);],
  14.       am_cv_langinfo_codeset=yes,
  15.       am_cv_langinfo_codeset=no)
  16.     ])
  17.   if test $am_cv_langinfo_codeset = yes; then
  18.     AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
  19.       [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
  20.   fi
  21. ])