[Bug 919810] automake seems to depend on perl-Thread-Queue but perl-Thread-Queue is not required by automake

bugzilla at redhat.com bugzilla at redhat.com
Tue Apr 2 10:31:41 UTC 2013


Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=919810

Paul Howarth <paul at city-fan.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |paul at city-fan.org,
                   |                            |phracek at redhat.com
          Component|perl                        |automake
           Assignee|mmaslano at redhat.com         |praiskup at redhat.com

--- Comment #6 from Paul Howarth <paul at city-fan.org> ---
This issue is unrelated to Bug #924938.

The perl dependency generator does not pick up this requirement because
Thread::Queue is only required conditionally:

  if ($perl_threads)
    {
      require threads;
      import threads;
      require Thread::Queue;
      import Thread::Queue;
    }

However, since Fedora's perl is built with threads, in practice it's always
needed. The correct fix has already been added to the automake package, namely:

Requires: perl(Thread::Queue)

However, the same applies to the "threads" module, which should also be
required:

Requires: perl(threads)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=8qv4imlwIh&a=cc_unsubscribe



More information about the perl-devel mailing list