Bug 1307202
| Summary: | package config file (/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig/libzip.pc) missing paths | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Gene Hightower <gene> |
| Component: | mingw-libzip | Assignee: | Sandro Mani <manisandro> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 23 | CC: | erik-fedora, manisandro |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | mingw-libzip-1.1.1-1.fc22 mingw-libzip-1.1.1-1.fc23 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-02-22 20:49:39 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
mingw-libzip-1.1.1-1.fc22 has been submitted as an update to Fedora 22. https://bodhi.fedoraproject.org/updates/FEDORA-2016-85c9988d16 mingw-libzip-1.1.1-1.fc23 has been submitted as an update to Fedora 23. https://bodhi.fedoraproject.org/updates/FEDORA-2016-2f61a528ae mingw-libzip-1.1.1-1.fc22 has been pushed to the Fedora 22 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-85c9988d16 mingw-libzip-1.1.1-1.fc23 has been pushed to the Fedora 23 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2016-2f61a528ae I tested the package and it look great to me. Thanks! Thanks for the feedback and for reporting the bug! mingw-libzip-1.1.1-1.fc22 has been pushed to the Fedora 22 stable repository. If problems still persist, please make note of it in this bug report. mingw-libzip-1.1.1-1.fc23 has been pushed to the Fedora 23 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: The package config file install is missing important path information. ---------------------------------------------------------------------------------------- $ more /usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig/libzip.pc prefix= exec_prefix= libdir= includedir= libincludedir=/libzip/include zipcmp=/bin/zipcmp Name: libzip Description: library for handling zip archives Version: 1.1 Libs: -L${libdir} -lzip -lz Cflags: -I${includedir} -I${libincludedir} ---------------------------------------------------------------------------------------- Clearly prefix etc. are not set correctly. Should read more like: prefix=/usr/i686-w64-mingw32/sys-root/mingw exec_prefix=/usr/i686-w64-mingw32/sys-root/mingw libdir=/usr/i686-w64-mingw32/sys-root/mingw/lib includedir=/usr/i686-w64-mingw32/sys-root/mingw/include libincludedir=/usr/i686-w64-mingw32/sys-root/mingw/lib/libzip/include The issues seems to be use of cmake for this build without running the configure script as is done for "native" builds. The configure script properly makes the .pc file from the .pc.in file with the proper substitutions. Version-Release number of selected component (if applicable): Seems broken in rawhide, too. Used to be right in Fedora 22. How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Result is, build systems that use pkg-config end up horked. Expected results: Additional info: