Bug 478297

Summary: problem with blitz-devel (with fix)
Product: [Fedora] Fedora Reporter: Mark van Rossum <mvanross>
Component: blitzAssignee: Sergio Pascual <sergio.pasra>
Status: CLOSED DUPLICATE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: low    
Version: 8CC: sergio.pasra
Target Milestone: ---   
Target Release: ---   
Hardware: i686   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2008-12-27 15:58:06 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:

Description Mark van Rossum 2008-12-27 15:14:49 UTC
Description of problem:

I found that the the FC9 package of blitz-devel does not work
on FC10.

Version-Release number of selected component (if applicable):
blitz-devel-0.9-7.fc9.i386 on fc10

How reproducible:
Always on my box.

Steps to Reproduce:
1. install blitz-devel
2. try to compile program that 
  
Actual results:
/usr/include/blitz/bzconfig.h:39:32: error: blitz/gnu/bzconfig.h: No such file or directory


Expected results:


FIX:

Edit /usr/include/blitz/bzconfig.h  to be:

#elif defined(__GNUC__)
/* GNU gcc compiler */
// #include <blitz/gnu/bzconfig.h>
#include "/usr/lib/blitz/include/blitz/gnu/bzconfig.h"



Note, I never tried it in FC9, maybe it was broken there as well...

Comment 1 Sergio Pascual 2008-12-27 15:58:06 UTC
If you compile your program with  
$  g++ myprogram.cc `pkg-config blitz --libs --cflags`
it should work

See bug #450999 for references

*** This bug has been marked as a duplicate of bug 450999 ***