Bug 399761
| Summary: | stl import files not included | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | K H <kjh> |
| Component: | gsoap | Assignee: | Matthew Farrellee <matt> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 8 | Keywords: | Reopened |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | gsoap-2.7.10-1 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2008-02-08 21:36:23 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
I have updated the spec to place the soapcpp2/import/*.h header files into /usr/include/gsoap. You'll have to use -I/usr/include/gsoap when you run soapcpp2. This change will be available in 2.7.9-0.2.l. gsoap-2.7.9-0.2.l has been pushed to the Fedora 8 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update gsoap' There is a better solution to this bug, which is to put soapcpp2/import/*.h into /usr/share, because they really are not C/++ header files. They are headers only soapcpp2 can read and process. This means using -I/usr/share/gsoap/import, which is what I'll make 2.7.9-0.3.l do, and hopefully -0.2.l will be skipped. gsoap-2.7.9-0.3.l has been pushed to the Fedora 8 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update gsoap' |
Description of problem: stl.h, stldeque.h, stllist.h, stlset.h, stlvector.h from soapcpp2/import are not included in rpm file Version-Release number of selected component (if applicable): gsoap-2.7.9-0.1.l How reproducible: 100% Steps to Reproduce: pass a file to soapcpp2 that contains #import "stlvector.h" Actual results: Can't file file stlvector.h Expected results: Should be able to find the file but its not installed in the rpm Additional info: Please include stl.h stldeque.h stllist.h stlset.h stlvector.h from soapcpp2/import in the gsoap sources in the rpm. When I was building my own gsoap rpm's, I installed them in /usr/include/gsoap by adding a line: cp soapcpp2/import/*stl*.h $RPM_BUILD_ROOT%{prefix}/include/gsoap/ after make install in the %install section