From ddc3343bf9e87a1a52116b86832c18f66b6db7bc Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 27 Aug 2003 09:04:55 +0000 Subject: . --- aclocal.m4 | 10 ++++++---- src/Makefile.in | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/aclocal.m4 b/aclocal.m4 index 0a30ea214..ad3f61d11 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -2009,12 +2009,14 @@ AC_DEFUN([gl_PREREQ_MKDIR], AC_CHECK_DECLS_ONCE(free) ]) -#serial 3 +#serial 4 # On some hosts (e.g., HP-UX 10.20, SunOS 4.1.4, Solaris 2.5.1), mkstemp has a # silly limit that it can create no more than 26 files from a given template. -# Other systems lack mkstemp altogether. On either type of system, arrange -# to use the replacement function. +# Other systems lack mkstemp altogether. +# On OSF1/Tru64 V4.0F, the system-provided mkstemp function can create +# only 32 files per process. +# On systems like the above, arrange to use the replacement function. AC_DEFUN([UTILS_FUNC_MKSTEMP], [dnl AC_REPLACE_FUNCS(mkstemp) @@ -2029,7 +2031,7 @@ AC_DEFUN([UTILS_FUNC_MKSTEMP], int main () { int i; - for (i = 0; i < 30; i++) + for (i = 0; i < 70; i++) { char template[] = "conftestXXXXXX"; int fd = mkstemp (template); diff --git a/src/Makefile.in b/src/Makefile.in index 3db6e2076..72979b9db 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -873,7 +873,7 @@ uninstall-binPROGRAMS: done clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ -- cgit v1.2.3-54-g00ecf