texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo update (Sun Jun 18 19:52:01 EDT 2006)


From: Karl Berry
Subject: texinfo update (Sun Jun 18 19:52:01 EDT 2006)
Date: Sun, 18 Jun 2006 19:52:03 -0400

Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.607
retrieving revision 1.608
diff -u -r1.607 -r1.608
--- ChangeLog   8 Jun 2006 22:42:22 -0000       1.607
+++ ChangeLog   18 Jun 2006 23:39:43 -0000      1.608
@@ -1,3 +1,16 @@
+2006-06-18  Karl Berry  <address@hidden>
+
+       * gnulib: new subdirectory, managed by gnulib-tool.
+       * m4: delete entire subdirectory, now replaced by gnulib/m4.
+       * build-aux: new subdirectory.
+       * README.dev: doc.
+       * autogen.sh: aclocal needs -I gnulib/m4 now.
+       * Makefile.am, util/Makefile.am, lib/Makefile.am, info/Makefile.am,
+         makeinfo/Makefile.am (AM_CPPFLAGS, LDADD): use new gnulib dirs.
+       * lib/alloca.c, lib/getopt*, lib/gettext.h, lib/mem*, lib/str*,
+         etc.: delete, now using gnulib modules (as recorded in
+         gnulib/m4/gnulib-cache.m4)
+
 2006-06-08  Karl Berry  <address@hidden>
 
        * po/Makevars (XGETTEXT_OPTIONS): add --keyword=__, so that the
Index: Makefile.am
===================================================================
RCS file: /sources/texinfo/texinfo/Makefile.am,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- Makefile.am 25 Apr 2005 00:28:31 -0000      1.15
+++ Makefile.am 18 Jun 2006 23:39:43 -0000      1.16
@@ -1,5 +1,5 @@
 # Makefile.am for texinfo.
-# $Id: Makefile.am,v 1.15 2005/04/25 00:28:31 karl Exp $
+# $Id: Makefile.am,v 1.16 2006/06/18 23:39:43 karl Exp $
 # Process this file with automake to produce Makefile.in in all directories.
 #
 # This file is free software; as a special exception the author gives
@@ -13,6 +13,9 @@
 # Be sure we're using the right version of Automake.
 AUTOMAKE_OPTIONS = 1.8 readme-alpha
 
+# Find our headers and gnulib headers.
+ACLOCAL_AMFLAGS = -I gnulib/m4
+
 # Additional files to distribute.
 EXTRA_DIST = ChangeLog.46 INSTALL.generic INTRODUCTION README.dev \
   config.rpath \
@@ -27,14 +30,12 @@
   SUBDIRS = lib info makeinfo util
 else
   # All subdirectories.
-  # Do lib first since the C programs depend on it.
+  # Do libs first since the C programs depend on it.
   # Do doc last so makeinfo will be built when we get there.
   # Others are alphabetical.
-  SUBDIRS = $(native_tools) lib info makeinfo po util doc
+  SUBDIRS = $(native_tools) gnulib/lib lib info makeinfo po util doc
 endif
 
-ACLOCAL_AMFLAGS = -I m4
-
 # One special target for installers to use by hand if desired.
 install-tex:
        cd doc && $(MAKE) TEXMF=$(TEXMF) install-tex
Index: NEWS
===================================================================
RCS file: /sources/texinfo/texinfo/NEWS,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- NEWS        2 Jun 2006 22:03:55 -0000       1.126
+++ NEWS        18 Jun 2006 23:39:43 -0000      1.127
@@ -1,4 +1,4 @@
-$Id: NEWS,v 1.126 2006/06/02 22:03:55 karl Exp $
+$Id: NEWS,v 1.127 2006/06/18 23:39:43 karl Exp $
 This NEWS file records noteworthy changes, very tersely.
 See the manual for detailed information.
 
@@ -62,6 +62,7 @@
   . automake 1.9.6, gettext 0.14.5.
   . gettext support now [external].
   . new translations: hu (Hungarian), rw (Kinyarwandan), vi (Vietnamese).
+  . most common functionality imported from gnulib.
 
 
 4.8 (31 December 2004)
Index: README.dev
===================================================================
RCS file: /sources/texinfo/texinfo/README.dev,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- README.dev  8 May 2006 23:16:32 -0000       1.9
+++ README.dev  18 Jun 2006 23:39:43 -0000      1.10
@@ -1,4 +1,4 @@
-$Id: README.dev,v 1.9 2006/05/08 23:16:32 karl Exp $
+$Id: README.dev,v 1.10 2006/06/18 23:39:43 karl Exp $
 This README.dev file describes the development environment.
 
   Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
@@ -17,6 +17,20 @@
 to have these tools installed to (re)build.  You'll also need help2man.
 All of these programs are available from ftp://ftp.gnu.org/gnu.
 
+This distribution also uses Gnulib (http://www.gnu.org/software/gnulib)
+to share common files, with the files being checked in to CVS.  If you
+want to update from the current gnulib, do a cvs checkout of gnulib, and
+then run
+  gnulib-tool --update
+in the top-level directory.
+
+For the record, the first time invocation was
+  gnulib-tool --import --m4-base=gnulib/m4 --source-base=gnulib/lib getopt
+The currently-used gnulib modules and other gnulib information are
+recorded in gnulib/m4/gnulib-cache.m4.  Given a source checkout of
+gnulib, you can update the files with gnulib-tool --import.  (The goal
+is to always have the latest versions of gnulib files in Texinfo CVS.)
+
 After getting the CVS sources, and installing the tools above, you can run
   ./autogen.sh
 to do a fresh build.  After that first time, running make should suffice.
Index: autogen.sh
===================================================================
RCS file: /sources/texinfo/texinfo/autogen.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- autogen.sh  8 May 2006 23:16:24 -0000       1.1
+++ autogen.sh  18 Jun 2006 23:39:43 -0000      1.2
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: autogen.sh,v 1.1 2006/05/08 23:16:24 karl Exp $
+# $Id: autogen.sh,v 1.2 2006/06/18 23:39:43 karl Exp $
 # Created 2003-08-29, Karl Berry.  Public domain.
 
 if test "x$1" = x-n; then
@@ -23,7 +23,7 @@
 : ${AUTOCONF=autoconf}
 
 # So instead:
-cmd="$ACLOCAL -I m4 && $AUTOHEADER && $AUTOMAKE && $AUTOCONF"
+cmd="$ACLOCAL -I gnulib/m4 && $AUTOHEADER && $AUTOMAKE && $AUTOCONF"
 echo "  $cmd"
 $chicken eval $cmd || exit 1
 
cvs diff: Tag HEAD refers to a dead (removed) revision in file `config.guess'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `config.rpath'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `config.sub'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
Index: configure.ac
===================================================================
RCS file: /sources/texinfo/texinfo/configure.ac,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- configure.ac        30 May 2006 20:52:36 -0000      1.63
+++ configure.ac        18 Jun 2006 23:39:43 -0000      1.64
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-# $Id: configure.ac,v 1.63 2006/05/30 20:52:36 karl Exp $
+# $Id: configure.ac,v 1.64 2006/06/18 23:39:43 karl Exp $
 #
 # This file is free software; as a special exception the author gives
 # unlimited permission to copy and/or distribute it, with or without
@@ -9,14 +9,19 @@
 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
-AC_INIT([GNU Texinfo], [4.8], address@hidden)
-AC_PREREQ(2.59)# Minimum Autoconf version required.
-#
-AC_CONFIG_HEADERS(config.h:config.in)# Keep filename to 8.3 for MS-DOS.
-AC_CONFIG_SRCDIR([makeinfo/makeinfo.c])
-#
+AC_INIT([GNU Texinfo], [4.8.90], address@hidden)
+
+dnl Must come before AM_INIT_AUTOMAKE.
+AC_CONFIG_AUX_DIR([build-aux])
 AM_INIT_AUTOMAKE([dist-bzip2 readme-alpha])
 
+# Minimum Autoconf version required.
+AC_PREREQ(2.59)
+
+# Where to generate output; srcdir location.
+AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS.
+AC_CONFIG_SRCDIR([makeinfo/makeinfo.c])
+
 # When the Texinfo source is imported into other repositories
 # (NetBSD and TeX Live), timestamps are generally not preserved.  This
 # causes lots of annoyance, so --enable-maintainer-mode.  Sorry.
@@ -24,14 +29,25 @@
 
 # Checks for programs.
 AC_PROG_CC
-AC_PROG_GCC_TRADITIONAL
-AC_PROG_INSTALL
-AC_PROG_MAKE_SET
+
+# Since we use gnulib: gl_EARLY must be called as soon as possible after
+# the C compiler is checked.  The others could be later, but we just
+# keep everything together.
+gl_EARLY
+
+dnl Must be after gl_EARLY but before gl_INIT.
+AC_MINIX
+
+dnl Rest of Gnulib.
+gl_INIT
+
+
+# Since we make a helper library.
 AC_PROG_RANLIB
 AM_MISSING_PROG(HELP2MAN, help2man)
 
-AC_ISC_POSIX
-AC_MINIX
+AC_PROG_INSTALL
+AC_PROG_MAKE_SET
 
 # Needed on sysV68 for sigblock, sigsetmask.  But check for it in libc first.
 AC_CHECK_FUNC(sigblock, , [AC_CHECK_LIB(bsd, sigblock)])
@@ -63,7 +79,6 @@
 AC_CHECK_DECLS([memchr, strcoll, strerror])
 
 # Checks for library functions.
-AC_FUNC_ALLOCA
 AC_FUNC_STRCOLL
 AC_FUNC_VPRINTF
 # in theory only pre-sysvr3 systems needed this and it's not likely
@@ -73,9 +88,6 @@
                sigsetmask strchr)
 AC_REPLACE_FUNCS(memcpy memmove strdup strerror)
 
-# strcasecmp and strncasecmp, gnulib-style.
-gl_STRCASE
-
 # We want to recognize djgpp to avoid the useless warning about no
 # term library.
 AC_CANONICAL_BUILD
@@ -179,9 +191,6 @@
   AC_CHECK_HEADERS(ncurses/termcap.h)
 fi
 
-# gnulib.
-gl_FUNC_MKSTEMP
-
 # For teTeX and TeX Live.
 AC_CANONICAL_HOST
 AC_ARG_ENABLE(multiplatform,
@@ -217,6 +226,7 @@
 AC_CONFIG_FILES([
   Makefile
   doc/Makefile
+  gnulib/lib/Makefile
   info/Makefile
   lib/Makefile
   makeinfo/Makefile
cvs diff: Tag HEAD refers to a dead (removed) revision in file `depcomp'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `install-sh'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `missing'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `mkinstalldirs'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
Index: doc/info.1
===================================================================
RCS file: /sources/texinfo/texinfo/doc/info.1,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- doc/info.1  1 Jun 2006 23:48:33 -0000       1.40
+++ doc/info.1  18 Jun 2006 23:39:43 -0000      1.41
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.35.
-.TH INFO "1" "June 2006" "info 4.8" "User Commands"
+.TH INFO "1" "June 2006" "info 4.8.90" "User Commands"
 .SH NAME
 info \- read Info documents
 .SH SYNOPSIS
Index: doc/infokey.1
===================================================================
RCS file: /sources/texinfo/texinfo/doc/infokey.1,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- doc/infokey.1       1 Jun 2006 23:48:33 -0000       1.18
+++ doc/infokey.1       18 Jun 2006 23:39:43 -0000      1.19
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.35.
-.TH INFOKEY "1" "June 2006" "infokey 4.8" "User Commands"
+.TH INFOKEY "1" "June 2006" "infokey 4.8.90" "User Commands"
 .SH NAME
 infokey \- compile customizations for Info
 .SH SYNOPSIS
Index: doc/install-info.1
===================================================================
RCS file: /sources/texinfo/texinfo/doc/install-info.1,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- doc/install-info.1  1 Jun 2006 23:48:33 -0000       1.40
+++ doc/install-info.1  18 Jun 2006 23:39:43 -0000      1.41
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.35.
-.TH INSTALL-INFO "1" "June 2006" "install-info 4.8" "User Commands"
+.TH INSTALL-INFO "1" "June 2006" "install-info 4.8.90" "User Commands"
 .SH NAME
 install-info \- update info/dir entries
 .SH SYNOPSIS
Index: doc/makeinfo.1
===================================================================
RCS file: /sources/texinfo/texinfo/doc/makeinfo.1,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- doc/makeinfo.1      1 Jun 2006 23:48:33 -0000       1.51
+++ doc/makeinfo.1      18 Jun 2006 23:39:43 -0000      1.52
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.35.
-.TH MAKEINFO "1" "June 2006" "makeinfo 4.8" "User Commands"
+.TH MAKEINFO "1" "June 2006" "makeinfo 4.8.90" "User Commands"
 .SH NAME
 makeinfo \- translate Texinfo documents
 .SH SYNOPSIS
cvs diff: Tag HEAD refers to a dead (removed) revision in file `doc/mdate-sh'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
Index: doc/texi2dvi.1
===================================================================
RCS file: /sources/texinfo/texinfo/doc/texi2dvi.1,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- doc/texi2dvi.1      1 Jun 2006 23:48:33 -0000       1.52
+++ doc/texi2dvi.1      18 Jun 2006 23:39:43 -0000      1.53
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.35.
-.TH TEXI2DVI "1" "June 2006" "texi2dvi 1.81" "User Commands"
+.TH TEXI2DVI "1" "June 2006" "texi2dvi 1.83" "User Commands"
 .SH NAME
 texi2dvi \- convert Texinfo documents to DVI
 .SH SYNOPSIS
@@ -78,6 +78,9 @@
 \fB\-\-recode\-from\fR=\fIENC\fR
 recode from ENC to the @documentencoding
 .TP
+\fB\-\-src\-specials\fR
+pass \fB\-\-src\-specials\fR to TeX
+.TP
 \fB\-t\fR, \fB\-\-command\fR=\fICMD\fR
 insert CMD in copy of input file
 .TP
Index: doc/texindex.1
===================================================================
RCS file: /sources/texinfo/texinfo/doc/texindex.1,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- doc/texindex.1      1 Jun 2006 23:48:33 -0000       1.39
+++ doc/texindex.1      18 Jun 2006 23:39:43 -0000      1.40
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.35.
-.TH TEXINDEX "1" "June 2006" "texindex 4.8" "User Commands"
+.TH TEXINDEX "1" "June 2006" "texindex 4.8.90" "User Commands"
 .SH NAME
 texindex \- sort Texinfo index files
 .SH SYNOPSIS
Index: doc/version-stnd.texi
===================================================================
RCS file: /sources/texinfo/texinfo/doc/version-stnd.texi,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- doc/version-stnd.texi       16 Nov 2005 17:46:33 -0000      1.15
+++ doc/version-stnd.texi       18 Jun 2006 23:39:43 -0000      1.16
@@ -1,4 +1,4 @@
 @set UPDATED 19 September 2005
 @set UPDATED-MONTH September 2005
address@hidden EDITION 4.8
address@hidden VERSION 4.8
address@hidden EDITION 4.8.90
address@hidden VERSION 4.8.90
Index: doc/version.texi
===================================================================
RCS file: /sources/texinfo/texinfo/doc/version.texi,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- doc/version.texi    1 Jun 2006 23:48:33 -0000       1.40
+++ doc/version.texi    18 Jun 2006 23:39:43 -0000      1.41
@@ -1,4 +1,4 @@
 @set UPDATED 1 June 2006
 @set UPDATED-MONTH June 2006
address@hidden EDITION 4.8
address@hidden VERSION 4.8
address@hidden EDITION 4.8.90
address@hidden VERSION 4.8.90
Index: info/Makefile.am
===================================================================
RCS file: /sources/texinfo/texinfo/info/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- info/Makefile.am    14 Mar 2006 14:47:09 -0000      1.10
+++ info/Makefile.am    18 Jun 2006 23:39:43 -0000      1.11
@@ -1,4 +1,4 @@
-# $Id: Makefile.am,v 1.10 2006/03/14 14:47:09 karl Exp $
+# $Id: Makefile.am,v 1.11 2006/06/18 23:39:43 karl Exp $
 # Makefile.am for texinfo/info.
 # Run automake in .. to produce Makefile.in from this.
 #
@@ -19,14 +19,13 @@
 localedir = $(datadir)/locale
 infodir2 = $(datadir)/info
 
-# -I. for funs.h.
-# Automake puts -I.. and -I$(srcdir) into DEFS by default, but
-# we need to override it, so include them ourselves.
-AM_CPPFLAGS = -I. -I$(top_srcdir)/lib -I.. -I$(srcdir)
-DEFS += -DLOCALEDIR=\"$(localedir)\" -DINFODIR=\"$(infodir)\" \
-       -DINFODIR2=\"$(infodir2)\"
-LDADD = ../lib/libtxi.a $(TERMLIBS) $(LIBINTL)
-infokey_LDADD = ../lib/libtxi.a $(LIBINTL)
+AM_CPPFLAGS = -I$(top_srcdir)/lib \
+              -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib
+DEFS =  -DLOCALEDIR=\"$(localedir)\" -DINFODIR=\"$(infodir)\" \
+        -DINFODIR2=\"$(infodir2)\"
+LDADD = ../lib/libtxi.a $(top_builddir)/gnulib/lib/libgnu.a \
+        $(TERMLIBS) $(LIBINTL)
+infokey_LDADD = ../lib/libtxi.a $(top_builddir)/gnulib/lib/libgnu.a $(LIBINTL)
 
 EXTRA_DIST = README pcterm.c
 
Index: info/tilde.c
===================================================================
RCS file: /sources/texinfo/texinfo/info/tilde.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- info/tilde.c        15 May 2005 00:00:07 -0000      1.4
+++ info/tilde.c        18 Jun 2006 23:39:43 -0000      1.5
@@ -1,8 +1,8 @@
 /* tilde.c -- tilde expansion code (~/foo := $HOME/foo).
-   $Id: tilde.c,v 1.4 2005/05/15 00:00:07 karl Exp $
+   $Id: tilde.c,v 1.5 2006/06/18 23:39:43 karl Exp $
 
    Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1996, 1998, 1999,
-   2002, 2004 Free Software Foundation, Inc.
+   2002, 2004, 2006 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -20,7 +20,6 @@
 
    Written by Brian Fox (address@hidden). */
 
-/* Include config.h before doing alloca.  */
 #include "info.h"
 #include "tilde.h"
 
Index: lib/Makefile.am
===================================================================
RCS file: /sources/texinfo/texinfo/lib/Makefile.am,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- lib/Makefile.am     5 Aug 2005 09:25:44 -0000       1.8
+++ lib/Makefile.am     18 Jun 2006 23:39:43 -0000      1.9
@@ -1,4 +1,4 @@
-# $Id: Makefile.am,v 1.8 2005/08/05 09:25:44 kasal Exp $
+# $Id: Makefile.am,v 1.9 2006/06/18 23:39:43 karl Exp $
 # Makefile.am for texinfo/lib.
 # Run automake in .. to produce Makefile.in from this.
 #
@@ -12,14 +12,9 @@
 
 noinst_LIBRARIES = libtxi.a
 
-# Don't need to list alloca.c, etc., Automake includes them.
-libtxi_a_SOURCES = getopt.c getopt.h getopt1.c getopt_.h getopt_int.h \
-                   gettext.h \
-                   strcase.h strdup.h substring.c system.h \
-                  xalloc.h xexit.c xmalloc.c xstrdup.c
-libtxi_a_LIBADD = $(LIBOBJS) $(ALLOCA)
-libtxi_a_DEPENDENCIES = $(libtxi_a_LIBADD)
+AM_CPPFLAGS = -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib
+DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
 
-## xx configure for bzero?, clib, other common stuff
+libtxi_a_SOURCES = substring.c system.h xexit.c
 
 EXTRA_DIST = README
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/alloca.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/getopt.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/getopt.h'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/getopt1.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/getopt_.h'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`lib/getopt_int.h'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/gettext.h'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/memcpy.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/memmove.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/mkstemp.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/strcase.h'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`lib/strcasecmp.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/strdup.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/strdup.h'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/strerror.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`lib/strncasecmp.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/tempname.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/xalloc.h'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/xmalloc.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `lib/xstrdup.c'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/check-decl.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/codeset.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/gettext.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/glibc2.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/glibc21.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/iconv.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/intdiv0.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/intmax.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/inttypes-pri.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/inttypes.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/inttypes_h.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/isc-posix.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/lcmessage.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/lib-ld.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/lib-link.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/lib-prefix.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/longdouble.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/longlong.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/mkstemp.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/nls.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/onceonly.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/onceonly_2_57.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/po.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/prereq.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/printf-posix.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/progtest.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/signed.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/size_max.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/stdint_h.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/strcase.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/uintmax_t.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file 
`m4/ulonglong.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/wchar_t.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/wint_t.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
cvs diff: Tag HEAD refers to a dead (removed) revision in file `m4/xsize.m4'.
cvs diff: No comparison available.  Pass `-N' to `cvs diff'?
Index: makeinfo/Makefile.am
===================================================================
RCS file: /sources/texinfo/texinfo/makeinfo/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- makeinfo/Makefile.am        5 Aug 2005 09:25:44 -0000       1.6
+++ makeinfo/Makefile.am        18 Jun 2006 23:39:43 -0000      1.7
@@ -1,4 +1,4 @@
-# $Id: Makefile.am,v 1.6 2005/08/05 09:25:44 kasal Exp $
+# $Id: Makefile.am,v 1.7 2006/06/18 23:39:43 karl Exp $
 # Makefile.am for texinfo/makeinfo.
 # Run automake in .. to produce Makefile.in from this.
 #
@@ -13,8 +13,10 @@
 bin_PROGRAMS = makeinfo
 
 localedir = $(datadir)/locale
-AM_CPPFLAGS = -I$(top_srcdir)/lib -DLOCALEDIR=\"$(localedir)\"
-LDADD = ../lib/libtxi.a $(LIBINTL)
+AM_CPPFLAGS = -I$(top_srcdir)/lib \
+              -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib
+DEFS = -DLOCALEDIR=\"$(localedir)\"
+LDADD = ../lib/libtxi.a $(top_builddir)/gnulib/lib/libgnu.a $(LIBINTL)
 
 makeinfo_SOURCES = \
   cmds.c cmds.h defun.c defun.h \
Index: util/Makefile.am
===================================================================
RCS file: /sources/texinfo/texinfo/util/Makefile.am,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- util/Makefile.am    30 May 2006 15:02:33 -0000      1.21
+++ util/Makefile.am    18 Jun 2006 23:39:43 -0000      1.22
@@ -1,4 +1,4 @@
-# $Id: Makefile.am,v 1.21 2006/05/30 15:02:33 akim Exp $
+# $Id: Makefile.am,v 1.22 2006/06/18 23:39:43 karl Exp $
 # Makefile.am for texinfo/util.
 # Run automake in .. to produce Makefile.in from this.
 #
@@ -27,8 +27,10 @@
 transform = s/ginstall-info/install-info/; $(program_transform_name)
 
 localedir = $(datadir)/locale
-AM_CPPFLAGS = -I$(top_srcdir)/lib -DLOCALEDIR=\"$(localedir)\"
-LDADD = ../lib/libtxi.a $(LIBINTL)
+AM_CPPFLAGS = -I$(top_srcdir)/lib \
+              -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib
+DEFS = -DLOCALEDIR=\"$(localedir)\"
+LDADD = ../lib/libtxi.a $(top_builddir)/gnulib/lib/libgnu.a $(LIBINTL)
 
 dist_pkgdata_DATA = texinfo.dtd texinfo.xsl
 pkgdata_DATA = texinfo.cat
P ChangeLog
P Makefile.am
P NEWS
P README.dev
P autogen.sh
cvs update: `config.guess' is no longer in the repository
cvs update: `config.rpath' is no longer in the repository
cvs update: `config.sub' is no longer in the repository
P configure.ac
cvs update: `depcomp' is no longer in the repository
cvs update: `install-sh' is no longer in the repository
cvs update: `missing' is no longer in the repository
cvs update: `mkinstalldirs' is no longer in the repository
U build-aux/config.guess
U build-aux/config.rpath
U build-aux/config.sub
U build-aux/depcomp
U build-aux/install-sh
U build-aux/mdate-sh
U build-aux/missing
U build-aux/texinfo.tex
P doc/info.1
P doc/infokey.1
P doc/install-info.1
P doc/makeinfo.1
cvs update: `doc/mdate-sh' is no longer in the repository
P doc/texi2dvi.1
P doc/texindex.1
P doc/version-stnd.texi
P doc/version.texi
U gnulib/lib/.cvsignore
U gnulib/lib/Makefile.am
U gnulib/lib/error.c
U gnulib/lib/error.h
U gnulib/lib/exit.h
U gnulib/lib/exitfail.c
U gnulib/lib/exitfail.h
U gnulib/lib/getopt.c
U gnulib/lib/getopt1.c
U gnulib/lib/getopt_.h
U gnulib/lib/getopt_int.h
U gnulib/lib/gettext.h
U gnulib/lib/mbchar.c
U gnulib/lib/mbchar.h
U gnulib/lib/mbuiter.h
U gnulib/lib/memchr.c
U gnulib/lib/memcpy.c
U gnulib/lib/memmove.c
U gnulib/lib/mkstemp.c
U gnulib/lib/stat-macros.h
U gnulib/lib/stdbool_.h
U gnulib/lib/strcase.h
U gnulib/lib/strcasecmp.c
U gnulib/lib/strdup.c
U gnulib/lib/strdup.h
U gnulib/lib/strerror.c
U gnulib/lib/strncasecmp.c
U gnulib/lib/strnlen1.c
U gnulib/lib/strnlen1.h
U gnulib/lib/tempname.c
U gnulib/lib/xalloc-die.c
U gnulib/lib/xalloc.h
U gnulib/lib/xmalloc.c
U gnulib/m4/codeset.m4
U gnulib/m4/error.m4
U gnulib/m4/exitfail.m4
U gnulib/m4/getopt.m4
U gnulib/m4/gettext.m4
U gnulib/m4/glibc2.m4
U gnulib/m4/glibc21.m4
U gnulib/m4/gnulib-cache.m4
U gnulib/m4/gnulib-comp.m4
U gnulib/m4/gnulib-tool.m4
U gnulib/m4/iconv.m4
U gnulib/m4/intdiv0.m4
U gnulib/m4/intmax.m4
U gnulib/m4/inttypes-pri.m4
U gnulib/m4/inttypes.m4
U gnulib/m4/inttypes_h.m4
U gnulib/m4/isc-posix.m4
U gnulib/m4/lcmessage.m4
U gnulib/m4/lib-ld.m4
U gnulib/m4/lib-link.m4
U gnulib/m4/lib-prefix.m4
U gnulib/m4/longdouble.m4
U gnulib/m4/longlong.m4
U gnulib/m4/mbchar.m4
U gnulib/m4/mbiter.m4
U gnulib/m4/mbrtowc.m4
U gnulib/m4/memchr.m4
U gnulib/m4/memcpy.m4
U gnulib/m4/memmove.m4
U gnulib/m4/mkstemp.m4
U gnulib/m4/nls.m4
U gnulib/m4/onceonly_2_57.m4
U gnulib/m4/po.m4
U gnulib/m4/printf-posix.m4
U gnulib/m4/progtest.m4
U gnulib/m4/signed.m4
U gnulib/m4/size_max.m4
U gnulib/m4/stat-macros.m4
U gnulib/m4/stdbool.m4
U gnulib/m4/stdint_h.m4
U gnulib/m4/strcase.m4
U gnulib/m4/strdup.m4
U gnulib/m4/strerror.m4
U gnulib/m4/strerror_r.m4
U gnulib/m4/uintmax_t.m4
U gnulib/m4/ulonglong.m4
U gnulib/m4/unistd_h.m4
U gnulib/m4/wchar_t.m4
U gnulib/m4/wint_t.m4
U gnulib/m4/xalloc.m4
U gnulib/m4/xsize.m4
P info/Makefile.am
P info/tilde.c
P lib/Makefile.am
cvs update: `lib/alloca.c' is no longer in the repository
cvs update: `lib/getopt.c' is no longer in the repository
cvs update: `lib/getopt.h' is no longer in the repository
cvs update: `lib/getopt1.c' is no longer in the repository
cvs update: `lib/getopt_.h' is no longer in the repository
cvs update: `lib/getopt_int.h' is no longer in the repository
cvs update: `lib/gettext.h' is no longer in the repository
cvs update: `lib/memcpy.c' is no longer in the repository
cvs update: `lib/memmove.c' is no longer in the repository
cvs update: `lib/mkstemp.c' is no longer in the repository
cvs update: `lib/strcase.h' is no longer in the repository
cvs update: `lib/strcasecmp.c' is no longer in the repository
cvs update: `lib/strdup.c' is no longer in the repository
cvs update: `lib/strdup.h' is no longer in the repository
cvs update: `lib/strerror.c' is no longer in the repository
cvs update: `lib/strncasecmp.c' is no longer in the repository
cvs update: `lib/tempname.c' is no longer in the repository
cvs update: `lib/xalloc.h' is no longer in the repository
cvs update: `lib/xmalloc.c' is no longer in the repository
cvs update: `lib/xstrdup.c' is no longer in the repository
cvs update: `m4/check-decl.m4' is no longer in the repository
cvs update: `m4/codeset.m4' is no longer in the repository
cvs update: `m4/gettext.m4' is no longer in the repository
cvs update: `m4/glibc2.m4' is no longer in the repository
cvs update: `m4/glibc21.m4' is no longer in the repository
cvs update: `m4/iconv.m4' is no longer in the repository
cvs update: `m4/intdiv0.m4' is no longer in the repository
cvs update: `m4/intmax.m4' is no longer in the repository
cvs update: `m4/inttypes-pri.m4' is no longer in the repository
cvs update: `m4/inttypes.m4' is no longer in the repository
cvs update: `m4/inttypes_h.m4' is no longer in the repository
cvs update: `m4/isc-posix.m4' is no longer in the repository
cvs update: `m4/lcmessage.m4' is no longer in the repository
cvs update: `m4/lib-ld.m4' is no longer in the repository
cvs update: `m4/lib-link.m4' is no longer in the repository
cvs update: `m4/lib-prefix.m4' is no longer in the repository
cvs update: `m4/longdouble.m4' is no longer in the repository
cvs update: `m4/longlong.m4' is no longer in the repository
cvs update: `m4/mkstemp.m4' is no longer in the repository
cvs update: `m4/nls.m4' is no longer in the repository
cvs update: `m4/onceonly.m4' is no longer in the repository
cvs update: `m4/onceonly_2_57.m4' is no longer in the repository
cvs update: `m4/po.m4' is no longer in the repository
cvs update: `m4/prereq.m4' is no longer in the repository
cvs update: `m4/printf-posix.m4' is no longer in the repository
cvs update: `m4/progtest.m4' is no longer in the repository
cvs update: `m4/signed.m4' is no longer in the repository
cvs update: `m4/size_max.m4' is no longer in the repository
cvs update: `m4/stdint_h.m4' is no longer in the repository
cvs update: `m4/strcase.m4' is no longer in the repository
cvs update: `m4/uintmax_t.m4' is no longer in the repository
cvs update: `m4/ulonglong.m4' is no longer in the repository
cvs update: `m4/wchar_t.m4' is no longer in the repository
cvs update: `m4/wint_t.m4' is no longer in the repository
cvs update: `m4/xsize.m4' is no longer in the repository
P makeinfo/Makefile.am
P util/Makefile.am


reply via email to

[Prev in Thread] Current Thread [Next in Thread]