1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

(gl_SAME): Do not check for stdlib.h or string.h or free.

Check for pathconf.
This commit is contained in:
Jim Meyering
2003-08-19 10:01:52 +00:00
parent a7c82c47a0
commit 2d8da32339
+4 -4
View File
@@ -1,5 +1,5 @@
# same.m4 serial 1
dnl Copyright (C) 2002 Free Software Foundation, Inc.
# same.m4 serial 2
dnl Copyright (C) 2002, 2003 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
@@ -9,6 +9,6 @@ dnl the same distribution terms as the rest of that program.
AC_DEFUN([gl_SAME],
[
dnl Prerequisites of lib/same.c.
AC_CHECK_HEADERS_ONCE(stdlib.h string.h unistd.h)
AC_CHECK_DECLS_ONCE(free)
AC_CHECK_HEADERS_ONCE(unistd.h)
AC_CHECK_FUNCS(pathconf)
])