libgphoto2 configuration error, wine 1.5.30 build for 32bit

Questions about Wine on Linux
Locked
TeeCker
Newbie
Newbie
Posts: 2
Joined: Sat May 11, 2013 12:17 pm

libgphoto2 configuration error, wine 1.5.30 build for 32bit

Post by TeeCker »

something wrong with libgphoto2 and libgphoto2_port configuration in wine 1.5.30 32bit

I would like to suggest you to check configure file for the new wine 1.5.30, because something must be wrong with libgphoto2 and libgphoto2_port check and configuration. I have properly installed 32bit development libraries for gphoto2, but when i start ./configure script i get this error:

checking for gp_camera_new in -lgphoto2... no
configure: error: libgphoto2 32-bit development files not found, digital cameras won't be supported.

It is very strange, because in version 1.5.29 it was working perfect.

Please suggest me what can be wrong here, or when it's a bug, please fix it.


INFORMATION: I'm using 64bit openSUSE 12.3 and trying to compile 32bit wine, everything works fine except gstreamer (in version 1.5.29) and gstreamer, libgphoto2 (in version 1.5.29)

Thank you for your advice.
TeeCker
Newbie
Newbie
Posts: 2
Joined: Sat May 11, 2013 12:17 pm

Re: libgphoto2 configuration error, wine 1.5.30 build for 32

Post by TeeCker »

To avoid this error you have to install libexif-devel 32bit.
If you have libexif-devel X86_64, that's incompatible, you have to install 32bit version.
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: libgphoto2 configuration error, wine 1.5.30 build for 32

Post by dimesio »

I had to make the following symlinks in /usr/lib to for ./configure to find gphoto2 on openSUSE 12.3:

Code: Select all

ln -s libgphoto2.so.6 libgphoto2.so
ln -s libgphoto2_port.so.10 libgphoto2_port.so
ln -s libexif.so.12 libexif.so
Locked