[maemo-developers] Using libosso-abook getting package requirement error

From: Dave Neary dneary at maemo.org
Date: Wed May 19 12:32:07 EEST 2010
Hi Pallavi,

Pallavi Kandhare wrote:
> [sbox-FREMANTLE_X86: ~] > fakeroot apt-get install libosso-abook-dev
> Reading package lists... Done
> Building dependency tree... Done
> libosso-abook-dev is already the newest version.
> 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

A tip for finding the name of the PackageConfig module:
dpkg -L libosso-abook-dev | grep '\.pc$'

For me this gives
"/usr/lib/pkgconfig/libosso-abook-1.0.pc"

> And if i add below line to configure.ac (making no changes to Makefile.am)
>
> PKG_CHECK_MODULES(libosso, osso-addressbook-1.0)
>
> Output is:
> Package requirements (osso-addressbook-1.0) were not met: configure.ac

So here, you should be doing
PKG_CHECK_MODULES(LIBOSSO, libosso-abook-1.0)

(note that the pkgconfig module is the name of the .pc file, and the
first argument is the prefix you would like to use later in the LDADD
command for $(prefix)_LIBS) - if you want to have

> myproj_LDADD = \ 
>          $(LIBOSSO_LIBS) 

then you need to set the first argument to LIBOSSO.

> the output is as follows:
>  
> Description Resource Path Location Type
> 'book' undeclared (first use in this function) main.c ContactList/src line 45 C/C++ Problem
> 'EBook' undeclared (first use in this function) main.c ContactList/src line 45 C/C++ Problem
> 'EBookQuery' undeclared (first use in this function) main.c ContactList/src line 47 C/C++ Problem
> 'osso_context' undeclared (first use in this function) main.c ContactList/src line 111 C/C++ Problem
> 'query' undeclared (first use in this function) main.c ContactList/src line 47 C/C++ Problem
> libebook/e-book.h: No such file or directory main.c ContactList/src line 12 C/C++ Problem
> libosso-abook/osso-abook.h: No such file or directory main.c ContactList/src line 13 C/C++ Problem
> make: *** [all] Error 2 ContactList line 0 C/C++ Problem
> make[1]: *** [all-recursive] Error 1 ContactList line 0 C/C++ Problem
> make[2]: *** [main.o] Error 1 ContactList line 0 C/C++ Problem

... but once again, please make it easier to help you by including
minimum compilable source code (or a link to a pasteboard containing
some, or a reference to where you found the source code you are trying
to compile) - otherwise people have to guess whether there are problems
with your code or your project configuration.

Cheers,
Dave.

-- 
maemo.org docsmaster
Email: dneary at maemo.org
Jabber: bolsh at jabber.org

More information about the maemo-developers mailing list