Page 1 of 1
blueman-sendto (obex-data-server not available)
Posted: 22. Aug 2010, 18:50
by zAchAry
In regard to this post:
http://www.salixos.org/forum/viewtopic.php?p=7818#p7818
zAchAry wrote:d. so far, I CAN'T SEND files. (I'll confirm this issue later, because ,maybe, I did something wrong.
When launching the
blueman-sendto OR
blueman-applet and pressing on the
Send File button, I get a dialog with the title "Select files to send" to choose a file to send, after I select & press on the Enter key OR click on the
OK button, I get the following message:
obex-data-server not available
obex-data-server is probably not installed
But I still can download content from other devices.
Re: blueman-sendto (obex-data-server not available)
Posted: 22. Aug 2010, 19:58
by gapan
So, do you have obex-data-server installed?
Re: blueman-sendto (obex-data-server not available)
Posted: 22. Aug 2010, 20:02
by zAchAry
Yes, I do have obex-data-server installed.
How else could I "download content from other devices", eh?
edit: it happens in both, whether I am connected to a device and whether I'm not. (or I'm doing something wrong)
Re: blueman-sendto (obex-data-server not available)
Posted: 18. Nov 2010, 15:23
by zAchAry
Ok, I needed the imagemagick package (all together ~40 MB) in order to be able to transfer files
Code: Select all
obex-data-server: error while loading shared libraries: libMagickWand.so.3: cannot open shared object file: No such file or directory
I've uninstalled imagemagick and the file transfer still worked.
Edit: (image added)
I tried to find the SlackBuild of the obex-data-server package without success, I want it to rebuild it without imagemagick support, since I do not need imagemagick.
Any solutions?
Re: blueman-sendto (obex-data-server not available)
Posted: 18. Nov 2010, 16:27
by gapan
zAchAry wrote:I tried to find the SlackBuild of the obex-data-server package without success
Have you tried the source directory of a slackware mirror?
Re: blueman-sendto (obex-data-server not available)
Posted: 18. Nov 2010, 19:19
by zAchAry
Thank you for the hint
Code: Select all
http://ftp.gwdg.de/pub/linux/slackware/slackware-13.1/source/n/obex-data-server/
This is the
obex-data-server.SlackBuild
Where can I investigate which line to insert in order to omit imagemagick support (if it is possible)
Edit: lines 73 -79Code: Select all
73 ./configure \
74 --prefix=/usr \
75 --libdir=/usr/lib${LIBDIRSUFFIX} \
76 --sysconfdir=/etc \
77 --localstatedir=/var \
78 --mandir=/usr/man \
79 --build=$ARCH-slackware-linux
Re: blueman-sendto (obex-data-server not available)
Posted: 18. Nov 2010, 19:23
by gapan
If there is a configure option for it, use it.
Re: blueman-sendto (obex-data-server not available)
Posted: 18. Nov 2010, 20:17
by zAchAry
that was strange!
In order to
USE imagemagick you need to
ENABLE bip, and it was not 'enabled', this means that I only needed to build a package from
obex-data-server.SlackBuild without any modifications.
from the file
/obex-data-server-0.4.5/configure (lines 1279 - 1281)
Code: Select all
1279 --enable-bip=gdk-pixbuf|magick|auto|no
1280 Enable BIP support (disabling it will break some BIP
1281 functions)
Code: Select all
etf[~]$ obex-data-server --no-daemon
obex-data-server 0.4.5
Using Session bus
server socket created
Server created by: :1.1
server socket created
Server created by: :1.1
**Warning: Server path: /home/etf/Public
**Warning: Server path: /home/etf/Public
Question: Why there's no coordination between the binary package and the SlackBuild script?
Is that an exceptional case?