.
authorJim Meyering <jim@meyering.net>
Wed, 27 Aug 2003 09:04:55 +0000 (09:04 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 27 Aug 2003 09:04:55 +0000 (09:04 +0000)
aclocal.m4
src/Makefile.in

index 0a30ea2..ad3f61d 100644 (file)
@@ -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);
index 3db6e20..72979b9 100644 (file)
@@ -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 \