Software :: ./configure Problem For Libsf Library Due To Apparently Missing Libdb Library ?

Aug 4, 2011

./configure script fails to configure libsf. Please check the following last few lines of configure script error.

But find command shows the following;

It seems the file libdb does exist. man dbopen displays man page for dbopen. I also tried to ln -s /usr/lib/libdb.a and libdb.so /lib dir but all were in vain.

View 6 Replies


ADVERTISEMENT

Ubuntu Installation :: Configure Fails But Library Not Missing

Nov 4, 2010

I'm trying to install gazebo but I would like the general solution. When I type "./configure" I get the error: "could not find gdal_priv.h" or sometimes "could not find gdal library" But I have it on my computer. It is: usr/include/gdal/gdal_priv.h This means configure is not looking in the right place for this library. Where is the path stored, please? I tried reading the configure file but I could not find it. I tried to replace all instances of gdal_priv.h by gdal/gdal_priv.h but this did not work either. I tried adding /usr/include/gdal to all the env PATH_something_or_other I could see. how to tell to ./configure where to look for libraries. What file(s) should I edit? (I tried config.status, because it contains /usr/include stuff). The files I have are:

[code]...

View 2 Replies View Related

OpenSUSE Multimedia :: Limited Internet Connectivity - Errors Due To Library Missing While Running Configure Script

Oct 30, 2010

I am using opensuse 11.3 on a computer with limited internet connectivity.Can anyone provide a list of essential libraries which would be enough for most applications. I get errors due to library missing while running configure script.

View 1 Replies View Related

Programming :: SDL Static Library - Shared Library ?

Apr 7, 2009

I'm reading about shared, static, and dynamic libraries. What is SDL? Is it static, shared, or dynamic?

I always thought a library would be a lot of .h and .cpp files compiled separately into .o files and then if you compiled your own program you could use the -l parameter to link the library and it was all compiled together. Now I'm not so sure.

I don't even see any SDL .cpp files in my system anywhere. All I have are lots of SDL .h files in /usr/include/SDL and I don't really understand the code in them.

I'm making a wild guess here: SDL is a shared library. SDL itself is NOT compiled into my program, therefore SDL must be on any system my program tries to run on. When I compile and link SDL all it needs is the header files to know what SDL function and objects it can use. And then on every system it uses an already compiled SDL shared library thingy somewhere.

So... where is that part of SDL? All I can find are header files.

I'm thinking the advantage of shared libraries is that someone could say update SDL on their own system and take advantage of the new features without having to download new executables with the new version of SDL compiled into them for every program that uses SDL.

So if I'm making an editor and a game engine and they both use a lot of the same .cpp and .h files that I wrote and I'm tired of updating one and then the other and I need to turn them into a library, then a shared library might be kind of a silly solution. I could just make a static library. Right? Because it's not SDL. Nobody else is ever going to use this library.

View 6 Replies View Related

Debian :: Missing Library For Firefox?

Jul 22, 2010

On one of my computers, I installed Lenny with Gnome and installed Firefox without a hitch. Now, on another computer I installed Lenny minimally, no desktop, just the jwm window manager and dual monitors. After installing Firefox, I have a problem.

When I try to run Firefox, it aborts with an error:

"Error while loading shared libraries: libasound.so.2: cannot open shared object file: no such file or directory. " I tried to install libasound.so.2 with apt-get, but no luck.

View 3 Replies View Related

OpenSUSE :: Missing Library To Run SeaMonkey

Apr 22, 2011

I've just updated my system from SuSE 11.2 to 11.4 (I'm using KDE desktop environment) I like to install SeaMonkey myself. I use the installer from the Mozilla site. When I try to run SeaMonkey, this is what happens:

Code:
./seamonkey-bin: error while loading shared libraries: libdbus-glib-1.so.2: cannot open shared object file: No such file or directory
Where do I get the missing library? I've tried searching for it on the rpmpbone site RPM Search and even they couldn't find it.

View 4 Replies View Related

General :: How To Configure Library Path

Jun 1, 2010

i'm using slackware 13.0 with glib2-2.18.4-i486-1 and gtk+2-2.14.7-i486-4 i need to install newer gtk+2, i've installed glib-2.25.7, but in my home directory, so how do i configure the gtk+2, so it points to the glib library path in my home directory. i've tried this command

Code:

./configure BASE_DEPENDENCIES_LIBS=/home/sadlie/.testapp/usr/lib

but it still comes with the same error message

Code:

Requested 'glib-2.0 >= 2.23.6' but version of GLib is 2.18.4
Requested 'atk >= 1.29.2' but version of Atk is 1.26.0

View 3 Replies View Related

Fedora :: F13 - MPlayer Complains About Missing Library

Aug 18, 2010

When I load a video into mplayer I get this message:
Code:
Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
I checked that this lib was installed with yum:
Code:
Package libvdpau-0.4-1.fc13.i686 already installed and latest version

View 3 Replies View Related

Ubuntu :: Missing Library Files While Compiling

Aug 18, 2010

I have tried to compile several programs from source code and have into a similar error in each case. I try make the program and I get an error like: fail program confsdefs.h. Reading further into the log file, I see there is a long list of missing library files when I compile something like Samba 3.5.x:

[Code]...

I have searched for dependency information and used apt-get to add anything I can find. How can I identify and find the dependencies for source? I have checked the source documentation though typically does not list required packages. My other question is how to check the path used to locate the libraries? Given the length of the missing library list, I think the problem may be configuring make.

View 2 Replies View Related

Software :: Library Cannot Be Loaded As Symbol Is Missing?

Aug 2, 2010

This is the error I receive when I try to install a library. I really do not know If I could do something to skip this error message.

As you might see below. I receive the following error message
Error in dyn.load(file, DLLpath = DLLpath, ...) :
unable to load shared library '/home/apa/R/x86_64-unknown-linux-gnu-library/2.11/RandomFields/libs/RandomFields.so':
/usr/lib64/R/lib/libRlapack.so: undefined symbol: _gfortran_concat_string

[Code].....

View 14 Replies View Related

Fedora :: Configure Latex To Access To The Library In Home?

Nov 9, 2010

I have downloaded PGF for latex in my home directory.[URL]..How can I configure latex to access to the library in my home?

View 3 Replies View Related

Ubuntu :: Configure: Error: The QtCore Library >= 4.3.0 Could Not Be Found?

Feb 18, 2011

How to fix this error :

Code:
checking for Qt4... no
configure: error: The QtCore library >= 4.3.0 could not be found.

View 3 Replies View Related

Programming :: Specify A Library Search Path To Configure's AC_CHECK_LIB?

Aug 31, 2010

I'm writing an application and want to make possible to compile it with or without an optional module. This module requires perl library to be compiled, so I want to check presence of it in 'autoconf'.

The problem exists because perl library is placed in 'non-standart' location itself (like a /usr/lib64/perl5/CORE/libperl.so). So when I try to run configure (with AC_CHECK_LIB or AC_SEARCH_LIBS), it cannot find and link libperl.so in its test.

Trying to pass ./configure CFLAGS=-L/usr/lib64/perl5/CORE/ or ./configure LDFLAGS=-L/usr/lib64/perl5/CORE/

How can I define a location to search for configure's tests?

View 1 Replies View Related

Software :: Configure Error: Readline Library Not Found

May 8, 2010

configure: error: readline library not found If you have readline already installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. Use --without-readline to disable readline support. Now I tried to yum install readline-devel and the result was failure as below:

Quote:

[root@localhost ~]# yum install readline-devel-6.0-3.fc12.i686.rpm
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile

[code]....

So I am thinking that maybe I have to tell configure where my readline libraries are. From the above, it looks like readline-6.0 is not on my computer, even though I went through the configure/build/install process for it.

View 3 Replies View Related

Programming :: Convert A Dynamic Library (filename.so) To A Static Library (filename.a)?

Nov 18, 2009

How can we convert a dynamic library (filename.so) to a static library (filename.a) using gnu gcc . Can we get a static library form a dynamic library . I saw a few post in which the conversion form a static library to a dynamic library is mentioned but, unfortunately, not the other way.

View 4 Replies View Related

Fedora :: F12 DMRAID Jmicron Missing Library And Extra Spaces?

Dec 2, 2009

things "seem" to work, first time I've really ever used dmraid (usually mdraid), but I'm worried about this error

dmraid -ay
RAID set "jmicron_STORAGE2 " was activated

The dynamic shared library "libdmraid-events-jmicron.so" could not be loaded:

libdmraid-events-jmicron.so: cannot open shared object file: No such file or directory

Two things, why no matter what I name the RAID in the jmicron bios is puts a bagillion spaces after it, and second, I cannot find the missing lib anywhere I've installed all the dmraid* packages.

View 3 Replies View Related

Fedora :: Install The Mysqltcl Library - Failing Due To Missing Dependencies

Oct 14, 2010

I'm running FC11 on an Intel 686 server and would like to solicit some help. I'm writing an Expect script to discover our lab network and would like to insert the results into a mySQL database. I've installed Apache/PHP/mySQL via the LAMPP distribution. I've hit a brick wall, however, in trying to install the mysqltcl library. how to install the library. I have downloaded an RPM, but installatiojn is failing due to missing dependencies: libmysqlclient.so.10 and libmysqlclient_r.so.10. And I have no luck in locating and installing those.

View 1 Replies View Related

Ubuntu Multimedia :: Missing Library For Boxee Beta On Mythbuntu 9.04

Jan 13, 2010

I can install Boxee beta on my mythbuntu 9.04 installation, but when I try to run it, I get the following errors:

/opt/boxee$ ./run-boxee-desktop
/opt/boxee/Boxee: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required by /opt/boxee/Boxee)
./run-boxee-desktop: 38: /opt/boxee/give_me_my_mouse_back: not found

I get the same error if I run as root. For now, I don't care so much about the second error, but if anybody has some advice about how to resolve the first error (GLIBCXX...), I've used Linux for years (usually gentoo. I would be surprised if the version of Boxee compiled for Ubuntu 9.04 depended on an installed library without the proper compiler version.

Note that I am using *mythbuntu*, not ubuntu itself, so this may be part of the problem, but it would also surprise me... I'm happy to just install the correct library, but where is it?? I assume I should get it from Ubuntu, or I will break something.

I've also posted to the boxee support forum, but not heard back yet (they are probably busy!)...

Also, I've got Boxee alpha running in a 32 bit chroot environment (on my 64 bit machine), so at least *some* version of Boxee runs, but I wonder if there is some conflict between the two versions.

View 5 Replies View Related

Software :: Installing Missing Library In / Home Folder Without Root

May 29, 2011

I would like to run Blender (3D modelling software) on RedHat Enterprise. I have a problem with missing libraries (libavutil50.so). Second problem is that I have no root access so I cannot install rpm package with libavutil50.so. Does anybody knows how can I manage this? Is it possible to install somehow libavutil50.so in my /home folder, that Blender will have an access to this library ?

View 1 Replies View Related

General :: Configure Environment After Installing A Development Library In System?

Feb 17, 2011

I installed a library to the /usr/local/ prefix in Linux using ./configure && make && make install. What environment variables do I need to set in order for the linker and compiler to search these new library and header paths?

View 1 Replies View Related

General :: ./configure - Step Doesn't Work With GTK+ Library Upgrade

Dec 4, 2010

First time trying this. After trying to upgrade Mozilla, I received a warning that my GTK+ library needed to be upgraded from 2.8 to 2.10 or newer.

In trying to upgrade my GTK+ library following these instructions, I got to the ./configure step but then received the warning bash: ./configure: No such file or directory.

I've got an EEE PC, running Linux (i686, I believe). I'm not sure what additional information to provide.

View 5 Replies View Related

General :: The X11 Library '-lX11' Could Not Be Found Use Configure Options '--x-include?

Feb 14, 2011

In the process of installing DDD, I get the following error:The X11 library could not be found. Please use the configure options '--x-includes=DIR' and '--x-libraries=DIR' to specificy the X location.I did a "yum install libx11-devel". I was told that the right package was installed

View 1 Replies View Related

Software :: Configure Script For Vmime Library - Exiting With Error

Jul 19, 2010

I am not all that experienced with Linux configure scripts for building source. I downloaded a vmime library source package. One of the dependencies it has is on another open source lib - gsasl. I had no trouble building the gsasl lib.

But I cannot figure out how to let the vmime configure script know that I have built the gsasl package. Here is the end of the output of the vmime configure script:

checking for char... yes
checking size of char... 1
checking for short... yes
checking size of short... 2
checking for int... yes
checking size of int... 4

[Code]...

View 1 Replies View Related

Slackware :: Failure Building Multiple Apps Due To Missing Library Jscore?

Jan 26, 2011

I'm having a problem building some applications (e.g. Qsynth and FreeCAD) with sbopkg relating to an unfound library named "jscore". I've been keeping my system up to date with slackware64-current.Google searches have turned up very little about this library. There is a sourceforge page that has no files and seems to be related to a google hosted script jsCore.js... but I don't think that's what's missing here. I've come across some vague references to this jscore library being part of webkit. Can anyone verify this? I updated my webkit library itself and found no apparent results. Perhaps jscore was removed in an update to Qt (both of the example applications mentioned above link to Qt) as it seems to have it's own webkit library, libQtWebKit.

View 5 Replies View Related

CentOS 5 Hardware :: Configuring Logitech MX Revolution But Missing A Library And/or Evdev

Jul 31, 2009

On a new install of CentOS 5.3 I am trying to make the Logitech MX Revolution mouse work (I did actually succeed in configuring it by BTNX on my previous machine, but can't make btnx work now...). I am following the instructions from [url] works. However, when installing the xmacro package it complains about a missing library: libstdc++.so.6(GLIBCXX_3.4.9)(64bit). The library is available in Fedora but not in CentOS. I guess installing the Fedora library is unwise...?

Does anyone know how to make xmacro work?

Also, in xorg.conf it seems (from other posts etc) using the evdev driver for the mouse would be advisable.

However, when I change from [driver "mouse"] to [driver "evdev"] X cannot start. In the xorg.conf logfile (/var/log/Xorg.0.log) it seems like the evdev driver is not compiled:

I don't really understand the error, but it seems to me, that the evdev driver is not compiled... The evdev driver should, though, be installed (through the package xorg-x11-drv-evdev-1.0.0.5-3.el5.x86_64)

If this is right, how, then do I compile the evdev driver?

View 2 Replies View Related

Fedora :: Configure: Error: Working Zlib Library And Headers Not Found

Aug 2, 2010

m using fedora 13 gnome while installing glib m getting error

configure: error: *** Working zlib library and headers not found ***

View 3 Replies View Related

General :: Link Shared Library Against Other Shared Library?

May 27, 2010

I think that the solution is very simple, but I cannot reach this solution. I'm trying to build an B.so that uses A.so.

A.so is compiled using C;
B.so is compiled using C++;

Inside "Aso.h" file I'had declared:

Code:

#ifdef __cplusplus
extern "C" {
#endif

[code]....

There's no error to compile that, this library seems to be compiled correctly, but using the "nm" command the Aso.so functions appear with "U" of undefined. Trying to build an executable using the Bso.so library, I got this error: /lib/../lib/libBso.so: undefined reference to `foo(int, int, int)' I think that to solve this problem it's only link the Aso.so with the .o files generated at the compilation phase of my Bso. Using the "ldd" command I'm able to see that Bso.so depends on Aso.so, so what am I missing?

View 2 Replies View Related

Ubuntu Installation :: Warning: Missing REQUIRED Dependency: Libtool (libtool - Library Building Support Services)

Sep 17, 2010

I am working with Ubuntu 10.04 I can't print documents on HP Laserjet 1020 While printing, the jobs shows up in the print queue and disappears without any error, but no printout I tried to install HPLIP 3.10.6 from [URL]I followed the instructions but it ends with the error

Code:

INSTALL MISSING REQUIRED DEPENDENCIES
-------------------------------------
warning: There are 5 missing REQUIRED dependencies.
note: Installation of dependencies requires an active internet connection.

[code]....

View 9 Replies View Related

Programming :: Add A Static Library To Own Static Library?

Mar 31, 2010

To create a static library, or to add additional objectiles to an existing static library, I can use a command like this:ar rcs my_library.a file1.o file2.oBut how to add an existing static library to my own static library. I have created my own static library using the command above and want to link against the library libuuid.a (placed in /usr/lib/).

View 6 Replies View Related

Debian :: How Can I Tell Which Library Is Failing

Feb 11, 2011

I am trying to install a printer driver on an amd64 that was designed for 32bit only (of course)Squeeze automaticallty installed the ia32_libs package, but it may not be enough.How can I tell which library is failing?I do get an error on libcupsimage.so.2 but it does exist in /usr/lib/libcupsimage.so.2

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved