diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-30 00:27:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-30 00:27:32 +0000 |
commit | 95143e01a33efc18f709db243a42bedd166be957 (patch) | |
tree | d970f0e5ae4ada8e60e315b403fec169c93297b4 /configure.in | |
parent | a3fecf07d573b6aa959400991e2a04e1989a406e (diff) |
2002-08-26 Roland McGrath <roland@frob.com>
* configure.in: Check for uselocale function.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 91b178aa..73f253ee 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION([$Id: configure.in,v 1.33 2002/08/22 21:25:03 marcus Exp $]) +AC_REVISION([$Id: configure.in,v 1.34 2002/08/30 00:27:32 roland Exp $]) AC_PREREQ(2.12) dnl Minimum Autoconf version required. AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir. @@ -147,8 +147,8 @@ else fi AC_SUBST(VERSIONING) -# Check if libc contains getgrouplist(). -AC_CHECK_FUNCS(getgrouplist) +# Check if libc contains getgrouplist and/or uselocale. +AC_CHECK_FUNCS(getgrouplist uselocale) AC_ARG_WITH(parted, dnl [ --without-parted don't try to use GNU Parted libraries], |