mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-19 11:10:25 +02:00
* m4/gnulib-cache.m4: Remove `strcase' and `version-etc-fsf'. * configure.ac (POTENTIAL_GCC_CFLAGS): Remove `-Wundef'. * libguile/script.c: Don't include <version-etc.h>.
20 lines
705 B
Text
20 lines
705 B
Text
# read.m4 serial 1
|
|
dnl Copyright (C) 2011 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_FUNC_READ],
|
|
[
|
|
AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
|
|
dnl This ifdef is just an optimization, to avoid performing a configure
|
|
dnl check whose result is not used. It does not make the test of
|
|
dnl GNULIB_UNISTD_H_NONBLOCKING or GNULIB_NONBLOCKING redundant.
|
|
m4_ifdef([gl_NONBLOCKING_IO], [
|
|
gl_NONBLOCKING_IO
|
|
if test $gl_cv_have_nonblocking != yes; then
|
|
REPLACE_READ=1
|
|
AC_LIBOBJ([read])
|
|
fi
|
|
])
|
|
])
|