This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


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

[3.0.1] Partly unreviewed patch to generate java man pages


- Patch submitted at http://gcc.gnu.org/ml/gcc-patches/2001-07/msg00141.html

- the gcc/configure.in part isn't approved yet (appended here).

- gcc/java parts reviewed by Tom Tromey and approved by Alexandre Petit-Bianco
  updated patch for
    3.0.1: http://gcc.gnu.org/ml/gcc-patches/2001-07/msg00441.html
    3.1:   http://gcc.gnu.org/ml/gcc-patches/2001-07/msg00442.html

- contrib/texi2pod.pl reviewed by Zack Weinberg (private mail):

Zachary Alexander Weinberg writes: 
 > Matthias Klose <doko@cs.tu-berlin.de> said:  
 >  
 > > Ok, could I ask you to review this part of the patch? 
 > >  
 > > http://gcc.gnu.org/ml/gcc-patches/2001-07/msg00441.html 
 >  
 > I have a couple of concerns with the changes to handling of the 
 > -D command line switch, and @value.  However, I have no real  
 > network connectivity at the moment, so I'm not in a position to 
 > review it properly. 
 >  
 > My understanding is that the texi2pod.pl changes are  
 > already in binutils' version of the contrib directory?  If so, 
 > go ahead and apply the patch to gcc's tree, and we can worry 
 > about the @value changes later.  They would only cause problems 
 > in corner cases, anyway. 
 >  
 > zw 

The changes are in binutils' version.


2001-07-02  Matthias Klose  <doko@debian.org>

	* configure.in: Add $(GENERATED_JAVA_MANPAGES) to GENERATED_MANPAGES.

diff -b -r -u --exclude=Makefile --exclude=configure gcc-3.0/gcc/configure.in gcc-3.0.x/./gcc/configure.in
--- gcc-3.0/gcc/configure.in	Wed Jun 13 23:36:35 2001
+++ gcc-3.0.x/./gcc/configure.in	Sun Jul  8 10:59:32 2001
@@ -479,7 +479,7 @@
 AC_MSG_CHECKING([for recent Pod::Man])
 if perl -e 'use 1.10 Pod::Man' >/dev/null 2>&1; then
   AC_MSG_RESULT(yes)
-  GENERATED_MANPAGES=generated-manpages		AC_SUBST(GENERATED_MANPAGES)
+  GENERATED_MANPAGES='generated-manpages $(GENERATED_JAVA_MANPAGES)'	AC_SUBST(GENERATED_MANPAGES)
 else
   AC_MSG_RESULT(no)
   GENERATED_MANPAGES=



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