Summary: | from CVS libgig installed ; configure of linuxsampler: "Required libgig version not found..." | ||
---|---|---|---|
Product: | LinuxSampler | Reporter: | M Herres <matt> |
Component: | other | Assignee: | Christian Schoenebeck <cuse> |
Status: | CLOSED FIXED | ||
Severity: | normal | ||
Priority: | P2 | ||
Version: | unspecified | ||
Hardware: | PC | ||
OS: | Linux | ||
Attachments: | Config log as requested. |
Description
M Herres
2006-01-21 02:52:57 CET
Please send your config.log. The given libgig.so version is absolutely ok. The .so version has nothing to do with the release version of the library. Even though they seem to be similar at the moment. Unfortunately I don't have x86_64 box to test if this might be a x86_64 specific problem. Created attachment 14 [details]
Config log as requested.
config.log as requested.
Thanks for looking at it.
PS Any code tweaks you request I can do rapidly and test...
Check where the gig.pc file was installed. That's actually the file which pkg-config checks for the version of the libgig library: find / -name gig.pc Usually it should be in /usr/lib/pkgconfig/, but I guess in your case it's somewhere under /usr/local/. Then add that directory to the pkg-config search path: PKG_CONFIG_PATH=/you/name/it ./configure Also make sure you don't have two different version of libgig installed. It often happens that people have an old version of libgig in /usr/lib installed (from their distribution) and a younger version under /usr/local which they compiled and installed manually. PKG_CONFIG_PATH=/you/name/it ./configure did the trick... Thanks. |