2009-02-16 12:25:19

by Kartikey Parmar

[permalink] [raw]
Subject: openobex-1.4 installation related

hi

I have installed bluez-4.30 on Fedora 9.

I have downloaded openobex-1.4 from http://www.bluez.org

When I extract it & configuring it as suggested in README it
successfully completes its task.

Make && Make Install also runs successfully...

After that when I attempt to install obexftp-0.22 - in its
configuration it shows an error like "openobex-config" not found,
probably openobex is not installed...

I have to design an application which exchanges files between two
bluetooth enabled device...

Can somebody suggest me how to begin with? One of our friend suggested
to use /obexftp/app...

--
Kartikey Parmar


2009-02-17 01:14:02

by Yao Ye

[permalink] [raw]
Subject: RE: openobex-1.4 installation related


> After that when I attempt to install obexftp-0.22 - in its
configuration it shows an error
> like "openobex-config" not found, probably openobex is not
installed...

you should use export PKG_CONFIG_PATH as below:

obexftp-0.22:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig;
export PKG_CONFIG_LIBDIR=/usr/local/lib/pkgconfig;
cd obexftp-0.22;
./configure --disable-perl --disable-python --disable-ruby
--disable-tcl
make;
make install;

openobex-1.5:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig;
export PKG_CONFIG_LIBDIR=/usr/local/lib/pkgconfig;
cd openobex-1.5;
./configure --disable-usb --enable-apps
make;
make install;