1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Add missing Gnulib file (m4/localcharset.m4)

This commit is contained in:
Neil Jerram 2009-01-14 20:50:51 +00:00
parent bf4200ca9f
commit 0a34f3954e
2 changed files with 16 additions and 1 deletions

1
m4/.gitignore vendored
View file

@ -3,7 +3,6 @@
/codeset.m4 /codeset.m4
/glibc21.m4 /glibc21.m4
/gnulib-comp.m4 /gnulib-comp.m4
/localcharset.m4
/locale-fr.m4 /locale-fr.m4
/locale-ja.m4 /locale-ja.m4
/locale-zh.m4 /locale-zh.m4

16
m4/localcharset.m4 Normal file
View file

@ -0,0 +1,16 @@
# localcharset.m4 serial 5
dnl Copyright (C) 2002, 2004, 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.
AC_DEFUN([gl_LOCALCHARSET],
[
dnl Prerequisites of lib/localcharset.c.
AC_REQUIRE([AM_LANGINFO_CODESET])
AC_CHECK_DECLS_ONCE(getc_unlocked)
dnl Prerequisites of the lib/Makefile.am snippet.
AC_REQUIRE([AC_CANONICAL_HOST])
AC_REQUIRE([gl_GLIBC21])
])