[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-tar] tar 1.14.90 build failure on MacOX X
From: |
Paul Eggert |
Subject: |
Re: [Bug-tar] tar 1.14.90 build failure on MacOX X |
Date: |
Mon, 13 Sep 2004 04:12:37 -0700 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) |
Sergey Poznyakoff <address@hidden> writes:
> This sounds reasonable. Paul, shouldn't it be fixed in gnulib?
OK, I installed the following into gnulib.
Sergey, I think you're the only user of the argp module now. Would
you like to take over as maintainer? gnulib/modules/argp currently
says the maintainer is "Simon Josefsson, glibc", but I think Simon
stopped using it. I've been installing patches into it but since I
don't use it I'm not really a good person to do this.
The main thing on the to-do list is to migrate the gnulib changes back
into libc, by filing bug reports into glibc bugzilla etc.
2004-09-13 Paul Eggert <address@hidden>
* config/srclist.txt: Comment out argp-pvh.c.
* lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
Problem reported by Bruno Haible in:
http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
Index: config/srclist.txt
===================================================================
RCS file: /cvsroot/gnulib/gnulib/config/srclist.txt,v
retrieving revision 1.41
diff -p -u -r1.41 srclist.txt
--- config/srclist.txt 12 Aug 2004 08:09:17 -0000 1.41
+++ config/srclist.txt 13 Sep 2004 11:04:40 -0000
@@ -86,7 +86,7 @@ $LIBCSRC/argp/argp-namefrob.h lib gpl
# Currently not quite the same.
#$LIBCSRC/argp/argp-parse.c lib gpl
$LIBCSRC/argp/argp-pv.c lib gpl
-$LIBCSRC/argp/argp-pvh.c lib gpl
+#$LIBCSRC/argp/argp-pvh.c lib gpl
$LIBCSRC/argp/argp-xinl.c lib gpl
$LIBCSRC/argp/argp.h lib gpl
#$LIBCSRC/posix/getopt.c lib gpl
Index: lib/argp-pvh.c
===================================================================
RCS file: /cvsroot/gnulib/gnulib/lib/argp-pvh.c,v
retrieving revision 1.2
diff -p -u -r1.2 argp-pvh.c
--- lib/argp-pvh.c 8 Jul 2003 23:25:14 -0000 1.2
+++ lib/argp-pvh.c 13 Sep 2004 11:04:40 -0000
@@ -1,5 +1,5 @@
/* Default definition for ARGP_PROGRAM_VERSION_HOOK.
- Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Written by Miles Bader <address@hidden>.
@@ -28,4 +28,4 @@
this function with a stream to print the version to and a pointer to the
current parsing state, and then exits (unless the ARGP_NO_EXIT flag is
used). This variable takes precedent over ARGP_PROGRAM_VERSION. */
-void (*argp_program_version_hook) (FILE *stream, struct argp_state *state);
+void (*argp_program_version_hook) (FILE *stream, struct argp_state *state) =
NULL;