This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Some assorted patches



Looking through glibc, I noticed some minor problems which I've fixed
with the appended patch.

Uli, shall I check this in?

Andreas

2000-04-25  Andreas Jaeger  <aj@suse.de>

        * conform/Makefile (distribute): Also distribute contents of
        subdirectories.

        * Makerules (no_deps): Remove abi-versions.h.

        * nis/nis_print_group_entry.c: Include alloca.h for alloca
        prototype.

============================================================
Index: conform/Makefile
--- conform/Makefile	1999/08/24 17:50:32	1.1
+++ conform/Makefile	2000/04/26 06:47:41
@@ -1,4 +1,4 @@
-# Copyright (C) 1999 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2000 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
@@ -21,4 +21,5 @@
 #
 subdir	:= conform
 
-distribute = conformtest.pl $(wildcard data/*.h-data)
+distribute = conformtest.pl $(wildcard data/*.h-data) \
+	   $(wildcard data/*/*.h-data)
============================================================
Index: Makerules
--- Makerules	2000/04/03 03:38:11	1.334
+++ Makerules	2000/04/26 06:47:43
@@ -283,7 +283,7 @@
 -include $(common-objpfx)sysd-versions
 $(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
 common-generated += $(version-maps)
-postclean-generated += sysd-versions Versions.all
+postclean-generated += sysd-versions Versions.all abi-versions.h
 
 ifndef avoid-generated
 ifneq ($(sysd-versions-subdirs),$(all-subdirs) $(config-sysdirs))
============================================================
Index: nis/nis_print_group_entry.c
--- nis/nis_print_group_entry.c	2000/04/22 03:30:39	1.6
+++ nis/nis_print_group_entry.c	2000/04/26 06:47:43
@@ -17,6 +17,7 @@
    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA. */
 
+#include <alloca.h>
 #include <string.h>
 #include <libintl.h>
 #include <rpcsvc/nis.h>

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.rhein-neckar.de

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]