public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgomp/30546]  New: [4.3 regression] build fail in libgomp because makeinfo is missing
@ 2007-01-22 17:36 fxcoudert at gcc dot gnu dot org
  2007-01-22 18:20 ` [Bug libgomp/30546] " pinskia at gcc dot gnu dot org
                   ` (16 more replies)
  0 siblings, 17 replies; 19+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-01-22 17:36 UTC (permalink / raw)
  To: gcc-bugs

While it was bootstrapping fine on 2006-10-21, mainline now fails to build on
my mingw setup because libgomp wants to run makeinfo, which I don't have. It
says make can be buggy, but it's not (it's GNU make 3.79.1).

if /home/coudert/trunk/missing makeinfo --split-size=5000000  -I
../../../trunk/libgomp/../gcc/doc/include -I ../../../trunk/libgomp \
 -o libgomp.info `test -f 'libgomp.texi' || echo
'../../../trunk/libgomp/'`libgomp.texi; \
then \
  rc=0; \
else \
  rc=$?; \
  $restore $backupdir/* `echo "./libgomp.info" | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
WARNING: `makeinfo' is missing on your system.  You should only need it if
         you modified a `.texi' or `.texinfo' file, or any other file
         indirectly affecting the aspect of the manual.  The spurious
         call might also be the consequence of using a buggy `make' (AIX,
         DU, IRIX).  You might want to install the `Texinfo' package or
         the `GNU make' package.  Grab either from any GNU archive site.
make[2]: *** [libgomp.info] Error 1
make[2]: Leaving directory `/home/coudert/ibin/i386-pc-mingw32/libgomp'


-- 
           Summary: [4.3 regression] build fail in libgomp because makeinfo
                    is missing
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgomp
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: fxcoudert at gcc dot gnu dot org
 GCC build triplet: i386-pc-mingw32
  GCC host triplet: i386-pc-mingw32
GCC target triplet: i386-pc-mingw32


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
@ 2007-01-22 18:20 ` pinskia at gcc dot gnu dot org
  2007-01-26 12:34 ` jakub at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-01-22 18:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2007-01-22 18:20 -------
>From http://gcc.gnu.org/install/prerequisites.html
Texinfo version 4.4 (or later)
    Necessary to build GCC documentation during development because the
generated output files are not included in the SVN repository. They are
included in releases. 


hmmmm, now building documentation != building gcc, I think


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.3.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
  2007-01-22 18:20 ` [Bug libgomp/30546] " pinskia at gcc dot gnu dot org
@ 2007-01-26 12:34 ` jakub at gcc dot gnu dot org
  2007-01-26 13:07 ` fxcoudert at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-01-26 12:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jakub at gcc dot gnu dot org  2007-01-26 12:34 -------
The only other place that generates info files is gcc subdir and there it uses
BUILD_INFO conditional, if makeinfo is not present or is too old, it simply
doesn't build the documentation.  Perhaps libgomp could do the same.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
  2007-01-22 18:20 ` [Bug libgomp/30546] " pinskia at gcc dot gnu dot org
  2007-01-26 12:34 ` jakub at gcc dot gnu dot org
@ 2007-01-26 13:07 ` fxcoudert at gcc dot gnu dot org
  2007-01-27  0:08 ` dfranke at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-01-26 13:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from fxcoudert at gcc dot gnu dot org  2007-01-26 13:07 -------
(In reply to comment #2)
> The only other place that generates info files is gcc subdir and there it uses
> BUILD_INFO conditional, if makeinfo is not present or is too old, it simply
> doesn't build the documentation.  Perhaps libgomp could do the same.

Sounds a good plan.


-- 

fxcoudert at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-01-26 13:07:27
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2007-01-26 13:07 ` fxcoudert at gcc dot gnu dot org
@ 2007-01-27  0:08 ` dfranke at gcc dot gnu dot org
  2007-01-27  0:34 ` dfranke at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-01-27  0:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from dfranke at gcc dot gnu dot org  2007-01-27 00:08 -------
My doings. I'll look into it.


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |dfranke at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2007-01-26 13:07:27         |2007-01-27 00:08:31
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2007-01-27  0:08 ` dfranke at gcc dot gnu dot org
@ 2007-01-27  0:34 ` dfranke at gcc dot gnu dot org
  2007-01-27  0:37   ` Andrew Pinski
  2007-01-27  0:37 ` pinskia at physics dot uc dot edu
                   ` (11 subsequent siblings)
  16 siblings, 1 reply; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-01-27  0:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from dfranke at gcc dot gnu dot org  2007-01-27 00:34 -------
As far as I can tell, the BUILD_INFO conditional can not easily be employed as
the info, dvi and pdf targets are generated by automake. The `missing` program
that is run instead should step into the breach. It does, but:

gcc/missing, line 300-303:
    # If the file does not exist, the user really needs makeinfo;
    # let's fail without touching anything.
    test -f $file || exit 1
    touch $file

Thus, two options present themself: ditch automake generated targets, do it
manually as everywhere else or tweak the Makefile.am to touch libgomp.info
before invoking `missing makeinfo`. 

Preferences?


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [Bug libgomp/30546] [4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-27  0:34 ` dfranke at gcc dot gnu dot org
@ 2007-01-27  0:37   ` Andrew Pinski
  0 siblings, 0 replies; 19+ messages in thread
From: Andrew Pinski @ 2007-01-27  0:37 UTC (permalink / raw)
  To: gcc-bugzilla; +Cc: gcc-bugs

> Thus, two options present themself: ditch automake generated targets, do it
> manually as everywhere else or tweak the Makefile.am to touch libgomp.info
> before invoking `missing makeinfo`. 
> 
> Preferences?

This only matters when building from SVN.  I say we should just require makeinfo
and forget about the problem.

-- Pinski


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2007-01-27  0:34 ` dfranke at gcc dot gnu dot org
@ 2007-01-27  0:37 ` pinskia at physics dot uc dot edu
  2007-01-27  1:11 ` [Bug libgomp/30546] [4.2/4.3 " dfranke at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: pinskia at physics dot uc dot edu @ 2007-01-27  0:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from pinskia at physics dot uc dot edu  2007-01-27 00:37 -------
Subject: Re:  [4.3 regression] build fail in libgomp because makeinfo is
missing

> Thus, two options present themself: ditch automake generated targets, do it
> manually as everywhere else or tweak the Makefile.am to touch libgomp.info
> before invoking `missing makeinfo`. 
> 
> Preferences?

This only matters when building from SVN.  I say we should just require
makeinfo
and forget about the problem.

-- Pinski


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2007-01-27  0:37 ` pinskia at physics dot uc dot edu
@ 2007-01-27  1:11 ` dfranke at gcc dot gnu dot org
  2007-01-27  3:53 ` [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN " pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-01-27  1:11 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from dfranke at gcc dot gnu dot org  2007-01-27 01:11 -------
Third option: include libgomp.info in SVN, then `missing` will just touch it.

Please note: I backported the docs two days ago, 4.2 is now also affected. Did
not know this report existed =(


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.3 regression] build fail |[4.2/4.3 regression] build
                   |in libgomp because makeinfo |fail in libgomp because
                   |is missing                  |makeinfo is missing
   Target Milestone|4.3.0                       |4.2.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2007-01-27  1:11 ` [Bug libgomp/30546] [4.2/4.3 " dfranke at gcc dot gnu dot org
@ 2007-01-27  3:53 ` pinskia at gcc dot gnu dot org
  2007-01-27  9:00 ` fxcoudert at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-01-27  3:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from pinskia at gcc dot gnu dot org  2007-01-27 03:52 -------
This is a minor issue at best because it only happens when building from SVN or
a snapshot and not a release.  Also we don't want to include the .info in svn
because they will then not get updated correctly when people update the
documents.

So I still say we should just require makeinfo when building from SVN/snapshot.
 There is no reason not really.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |minor
  GCC build triplet|i386-pc-mingw32             |
   GCC host triplet|i386-pc-mingw32             |
 GCC target triplet|i386-pc-mingw32             |
           Keywords|                            |build
            Summary|[4.2/4.3 regression] build  |[4.2/4.3 regression] build
                   |fail in libgomp because     |fail in libgomp when
                   |makeinfo is missing         |building from SVN because
                   |                            |makeinfo is missing


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2007-01-27  3:53 ` [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN " pinskia at gcc dot gnu dot org
@ 2007-01-27  9:00 ` fxcoudert at gcc dot gnu dot org
  2007-01-27 10:06 ` dannysmith at users dot sourceforge dot net
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2007-01-27  9:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from fxcoudert at gcc dot gnu dot org  2007-01-27 08:59 -------
(In reply to comment #8)
> So I still say we should just require makeinfo when building from SVN/snapshot.
>  There is no reason not really.

Yes there are reasons: for example, makeinfo does not easily build on mingw32,
and probably some other non-mainstream archs.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2007-01-27  9:00 ` fxcoudert at gcc dot gnu dot org
@ 2007-01-27 10:06 ` dannysmith at users dot sourceforge dot net
  2007-01-27 13:46 ` dfranke at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: dannysmith at users dot sourceforge dot net @ 2007-01-27 10:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from dannysmith at users dot sourceforge dot net  2007-01-27 10:06 -------
(In reply to comment #9)
> (In reply to comment #8)
> > So I still say we should just require makeinfo when building from SVN/snapshot.
> >  There is no reason not really.
> 
> Yes there are reasons: for example, makeinfo does not easily build on mingw32,
> and probably some other non-mainstream archs.
> 

makeinfo does build easily using cygwin toolchain, and hence is available on
windows for use with mingw.  You can just download makeinfo binaries from
cygwin/redhat/sourceware  unless it against your religion. Or you could get
makeinfo from MS as part of its POSIX emulation toolkit 
Danny  


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2007-01-27 10:06 ` dannysmith at users dot sourceforge dot net
@ 2007-01-27 13:46 ` dfranke at gcc dot gnu dot org
  2007-01-30  9:15 ` patchapp at dberlin dot org
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-01-27 13:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from dfranke at gcc dot gnu dot org  2007-01-27 13:46 -------
When introducing this, I was in good faith that automake is capable to handle
any issues that may arise. Since the *.info files are not kept in SVN, as
`missing` seems to assume, the fail safe backfires. 

I will replace the automake generated targets by custom ones which employ the
well known BUILD_INFO conditional as soon as possible. 


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2007-01-27 13:46 ` dfranke at gcc dot gnu dot org
@ 2007-01-30  9:15 ` patchapp at dberlin dot org
  2007-01-31 21:29 ` dfranke at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: patchapp at dberlin dot org @ 2007-01-30  9:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from patchapp at dberlin dot org  2007-01-30 09:15 -------
Subject: Bug number PR30546

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2007-01/msg02455.html


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2007-01-30  9:15 ` patchapp at dberlin dot org
@ 2007-01-31 21:29 ` dfranke at gcc dot gnu dot org
  2007-01-31 21:30 ` dfranke at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-01-31 21:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from dfranke at gcc dot gnu dot org  2007-01-31 21:29 -------
Subject: Bug 30546

Author: dfranke
Date: Wed Jan 31 21:29:19 2007
New Revision: 121439

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=121439
Log:
2007-01-31  Daniel Franke <franke.daniel@gmail.com>

        PR libgomp/30546
        * acx.m4 (ACX_PROG_CHECK_VER): Locate a program and check that its
        version is acceptable.


Modified:
    trunk/config/ChangeLog
    trunk/config/acx.m4


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2007-01-31 21:29 ` dfranke at gcc dot gnu dot org
@ 2007-01-31 21:30 ` dfranke at gcc dot gnu dot org
  2007-02-06 18:48 ` dfranke at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-01-31 21:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from dfranke at gcc dot gnu dot org  2007-01-31 21:30 -------
Subject: Bug 30546

Author: dfranke
Date: Wed Jan 31 21:30:16 2007
New Revision: 121440

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=121440
Log:
2007-01-31  Daniel Franke <franke.daniel@gmail.com>

        PR libgomp/30546
        * configure.ac: Add check for makeinfo
        * Makefile.am: Redefined target libgomp.info, build libgomp.info only
        if an appropiate version of makeinfo is found.
        * aclocal.m4: Regenerated.
        * configure: Regenerated.
        * Makefile.in: Regenerated.
        * testsuite/Makefile.in: Regenerated.


Modified:
    trunk/libgomp/ChangeLog
    trunk/libgomp/Makefile.am
    trunk/libgomp/Makefile.in
    trunk/libgomp/aclocal.m4
    trunk/libgomp/configure
    trunk/libgomp/configure.ac
    trunk/libgomp/testsuite/Makefile.in


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2007-01-31 21:30 ` dfranke at gcc dot gnu dot org
@ 2007-02-06 18:48 ` dfranke at gcc dot gnu dot org
  2007-02-06 18:50 ` dfranke at gcc dot gnu dot org
  2007-02-06 18:54 ` dfranke at gcc dot gnu dot org
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-02-06 18:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from dfranke at gcc dot gnu dot org  2007-02-06 18:48 -------
Subject: Bug 30546

Author: dfranke
Date: Tue Feb  6 18:48:11 2007
New Revision: 121661

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=121661
Log:
2007-02-07  Daniel Franke  <franke.daniel@gmail.com>

        Backport from mainline:
        2007-01-31  Daniel Franke <franke.daniel@gmail.com>

        PR libgomp/30546
        * acx.m4 (ACX_PROG_CHECK_VER): Locate a program and check that its
        version is acceptable.


Modified:
    branches/gcc-4_2-branch/config/ChangeLog
    branches/gcc-4_2-branch/config/acx.m4


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2007-02-06 18:48 ` dfranke at gcc dot gnu dot org
@ 2007-02-06 18:50 ` dfranke at gcc dot gnu dot org
  2007-02-06 18:54 ` dfranke at gcc dot gnu dot org
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-02-06 18:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from dfranke at gcc dot gnu dot org  2007-02-06 18:50 -------
Subject: Bug 30546

Author: dfranke
Date: Tue Feb  6 18:49:55 2007
New Revision: 121662

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=121662
Log:
2007-02-07  Daniel Franke <franke.daniel@gmail.com>

        Backport from mainline:
        2007-01-31  Daniel Franke <franke.daniel@gmail.com>

        PR libgomp/30546
        * configure.ac: Add check for makeinfo
        * Makefile.am: Redefined target libgomp.info, build libgomp.info only
        if an appropiate version of makeinfo is found.
        * aclocal.m4: Regenerated.
        * configure: Regenerated.
        * Makefile.in: Regenerated.
        * testsuite/Makefile.in: Regenerated.


Modified:
    branches/gcc-4_2-branch/libgomp/ChangeLog
    branches/gcc-4_2-branch/libgomp/Makefile.am
    branches/gcc-4_2-branch/libgomp/Makefile.in
    branches/gcc-4_2-branch/libgomp/aclocal.m4
    branches/gcc-4_2-branch/libgomp/configure
    branches/gcc-4_2-branch/libgomp/configure.ac
    branches/gcc-4_2-branch/libgomp/testsuite/Makefile.in


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

* [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN because makeinfo is missing
  2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
                   ` (15 preceding siblings ...)
  2007-02-06 18:50 ` dfranke at gcc dot gnu dot org
@ 2007-02-06 18:54 ` dfranke at gcc dot gnu dot org
  16 siblings, 0 replies; 19+ messages in thread
From: dfranke at gcc dot gnu dot org @ 2007-02-06 18:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from dfranke at gcc dot gnu dot org  2007-02-06 18:54 -------
Fixed in mainline and 4.2. Closing.


-- 

dfranke at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30546


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2007-02-06 18:54 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-22 17:36 [Bug libgomp/30546] New: [4.3 regression] build fail in libgomp because makeinfo is missing fxcoudert at gcc dot gnu dot org
2007-01-22 18:20 ` [Bug libgomp/30546] " pinskia at gcc dot gnu dot org
2007-01-26 12:34 ` jakub at gcc dot gnu dot org
2007-01-26 13:07 ` fxcoudert at gcc dot gnu dot org
2007-01-27  0:08 ` dfranke at gcc dot gnu dot org
2007-01-27  0:34 ` dfranke at gcc dot gnu dot org
2007-01-27  0:37   ` Andrew Pinski
2007-01-27  0:37 ` pinskia at physics dot uc dot edu
2007-01-27  1:11 ` [Bug libgomp/30546] [4.2/4.3 " dfranke at gcc dot gnu dot org
2007-01-27  3:53 ` [Bug libgomp/30546] [4.2/4.3 regression] build fail in libgomp when building from SVN " pinskia at gcc dot gnu dot org
2007-01-27  9:00 ` fxcoudert at gcc dot gnu dot org
2007-01-27 10:06 ` dannysmith at users dot sourceforge dot net
2007-01-27 13:46 ` dfranke at gcc dot gnu dot org
2007-01-30  9:15 ` patchapp at dberlin dot org
2007-01-31 21:29 ` dfranke at gcc dot gnu dot org
2007-01-31 21:30 ` dfranke at gcc dot gnu dot org
2007-02-06 18:48 ` dfranke at gcc dot gnu dot org
2007-02-06 18:50 ` dfranke at gcc dot gnu dot org
2007-02-06 18:54 ` dfranke at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).