Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
some functions in unbound with respect to its libevent support cannot be used because unbound-event.h is not installed. This will be required for libreswan-3.21 that uses this functionality.
The fix is to call:
%{__make} DESTDIR=%{buildroot} unbound-event-install
after the make install line, and add new file to the file list.
I have done this for the fedora package
note I actually updated that commit to only run install once, eg:
-%{__make} DESTDIR=%{buildroot} install
-%{__make} DESTDIR=%{buildroot} unbound-event-install
+%{__make} DESTDIR=%{buildroot} unbound-event-install install
(In reply to Paul Wouters from comment #5)
> note I actually updated that commit to only run install once, eg:
>
> -%{__make} DESTDIR=%{buildroot} install
> -%{__make} DESTDIR=%{buildroot} unbound-event-install
> +%{__make} DESTDIR=%{buildroot} unbound-event-install install
Yes, I know, but this is more a cosmetic modification and has no impact on the result.
I looked at the code and it is not as simple as just installing the header, as the event API is not preset in the 1.4.20 version at all.
This could be ideally solved by some future rebase of Unbound or backported.
Moving to 7.5 as this is not material for 7.4 at this point.
note that unbound-1.6.0 still fails to install the include file but does contain the libevent code in the shared library. The event code was introduced in unbound-1.4.22 upstream
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2018:0743
Description of problem: some functions in unbound with respect to its libevent support cannot be used because unbound-event.h is not installed. This will be required for libreswan-3.21 that uses this functionality. The fix is to call: %{__make} DESTDIR=%{buildroot} unbound-event-install after the make install line, and add new file to the file list. I have done this for the fedora package