Bug 506612
| Summary: | trace.h is missing #include <stdio.h> | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Nathanael Noblet <nathanael> |
| Component: | barry | Assignee: | Christopher D. Stover <quantumburnz> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 11 | CC: | quantumburnz |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | 0.15-0.6.20090623git.fc11 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2009-06-27 02:40:09 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: | |||
basically to your barry-includes.patch you need to add
diff -ru barry-0.15.orig/opensync-plugin/src/trace.h barry-0.15/opensync-plugin/src/trace.h
--- barry-0.15.orig/opensync-plugin/src/trace.h 2009-06-17 16:54:49.000000000 -0600
+++ barry-0.15/opensync-plugin/src/trace.h.new 2009-06-17 16:54:45.000000000 -0600
@@ -24,6 +24,7 @@
#include <opensync/opensync.h>
#include <stdarg.h>
+#include <stdio.h>
class Trace
{
barry-0.15-0.6.20090623git.fc9 has been submitted as an update for Fedora 9. http://admin.fedoraproject.org/updates/barry-0.15-0.6.20090623git.fc9 barry-0.15-0.6.20090623git.fc10 has been submitted as an update for Fedora 10. http://admin.fedoraproject.org/updates/barry-0.15-0.6.20090623git.fc10 barry-0.15-0.6.20090623git.fc11 has been submitted as an update for Fedora 11. http://admin.fedoraproject.org/updates/barry-0.15-0.6.20090623git.fc11 barry-0.15-0.6.20090623git.fc9 has been pushed to the Fedora 9 stable repository. If problems still persist, please make note of it in this bug report. barry-0.15-0.6.20090623git.fc10 has been pushed to the Fedora 10 stable repository. If problems still persist, please make note of it in this bug report. barry-0.15-0.6.20090623git.fc11 has been pushed to the Fedora 11 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: when enabling the opensync plugin for f11 manually, compilation fails because opensync-plugin/src/trace.h uses the functin vsnprintf, but doesn't #include <stdio.h> Version-Release number of selected component (if applicable): How reproducible: always Steps to Reproduce: 1. change spec file: %if 0%{?fedora} > 8 && 0%{?fedora} < 11 2. rebuild 3. Actual results: failed build Expected results: clean build with opensync-plugin enabled Additional info: