diff options
author | Jim Meyering <jim@meyering.net> | 2003-10-15 21:22:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-10-15 21:22:02 +0000 |
commit | 6f5cbd29253b85da9cfdc613ea8c2fd15d25ddd4 (patch) | |
tree | 530e5c2b66d2b66f384d7a8a4bd65b46fe52af1e | |
parent | 21ed960c0fe5618e837f11c7db3bf32ce4bd5663 (diff) | |
download | coreutils-6f5cbd29253b85da9cfdc613ea8c2fd15d25ddd4.tar.xz |
.
-rw-r--r-- | aclocal.m4 | 4 | ||||
-rw-r--r-- | lib/Makefile.in | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index 2c9104348..1b1433fbb 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -5595,7 +5595,7 @@ main () fi ]) -# xalloc.m4 serial 3 +# xalloc.m4 serial 4 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 @@ -5611,8 +5611,10 @@ AC_DEFUN([gl_XALLOC], # Prerequisites of lib/xmalloc.c. AC_DEFUN([gl_PREREQ_XMALLOC], [ + AC_REQUIRE([AC_C_INLINE]) AC_REQUIRE([jm_FUNC_MALLOC]) AC_REQUIRE([jm_FUNC_REALLOC]) + : ]) # Prerequisites of lib/xstrdup.c. diff --git a/lib/Makefile.in b/lib/Makefile.in index 73e244c64..ceea2e79b 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -243,7 +243,7 @@ libfetish_a_SOURCES = \ unicodeio.c unicodeio.h \ unistd-safer.h \ unlocked-io.h \ - userspec.c \ + userspec.c userspec.h \ utimens.c utimens.h \ version-etc.c version-etc.h \ xalloc.h \ @@ -773,9 +773,9 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." - -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -rm -f getdate.c + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am |