Hi,
When build qink in Ubuntu Karmic, we are getting the following error when building qink with libinklevel 0.8: Checking for libinklevel >= 0.7.0 ...libinklevel version too low! no
Error: need libinklevel >= 0.7.0!
make: * [configure-stamp] Error 1
This is because the version string of libinklevel changed to "libinklevel 0.8.0", and the configure script is looking for "libinklevel v0.8.0".
I think you should update qconf/libinklevel070.qcm to take that new format into account, like this: sscanf(get_version_string(), \"libinklevel %i.%i.%i\", &major, &minor, &revision);\n
instead of: sscanf(get_version_string(), \"libinklevel v%i.%i.%i\", &major, &minor, &revision);\n
Thanks, Fabrice
Comment #1
Posted on Sep 6, 2010 by Happy LionIssue 10 has been merged into this issue.
Comment #2
Posted on Sep 6, 2010 by Happy LionIssue 5 has been merged into this issue.
Comment #3
Posted on Sep 6, 2010 by Happy LionSee Launchpad:
Status: Done
Labels:
Type-Defect
Priority-Medium