Re: How do I replace a system library with a newer version (compiled from source)?
Jef Driesen wrote:
Is it possible to replace a shared library (libexif) with my own
version, compiled from source? When I go through the normal "./configure
&& make && make install" procedure, everything gets installed to
/usr/lib/local. But the old version (in /usr/lib) remains on my system
and all applications (like eog and gthumb) are still using the old
version. In synaptic, I can't remove libexif, without removing those
applications also. Is there a way to change that?
Presumably /usr/local/lib really?
You know the names of the files newly in /usr/local/lib?
Do they have exactly the same names in /usr/lib?
#for i in file1 file2 file3
#do
#mv -f $i /usr/lib
#done
or better, in install directory,
#make uninstall
#./configure --prefix=/usr
#make
#make install
HIH
C
.
Relevant Pages
- Re: Browers wont run
... You may need to get the applications on another machine and install them ... May also want to try and install/use Firefox Internet Browser. ... Microsoft has these suggestions for Protecting your computer from the ... (microsoft.public.windowsxp.help_and_support) - Re: FileSpy
... Microsoft has these suggestions for Protecting your computer from the ... applications you can use to protect yourself. ... using Windows XP "prettifications". ... install a third-party application and configure/maintain it. ... (microsoft.public.security) - Re: Errors with Windows XP
... Microsoft has these suggestions for Protecting your computer from the ... More full function applications for CD/DVD burning would be: ... using Windows XP "prettifications". ... install a third-party application and configure/maintain it. ... (microsoft.public.windowsxp.basics) - Re: When I am installing software on my system it takes forever.
... Microsoft has these suggestions for Protecting your computer from the ... More full function applications for CD/DVD burning would be: ... using Windows XP "prettifications". ... install a third-party application and configure/maintain it. ... (microsoft.public.windowsxp.perform_maintain) - Re: WINDOWS LIVE ESSENTIALS SOFTWARE DOWNLOAD CONFLICT
... If Windows Live Mail is installed, ... Uninstall anything named "Windows Live" listed in Add/Remove Programs. ... Install the last version of the Windows Live applications you want. ... APPLICATIONS WHICH ARE CREATING MUCH CONFLICT ON MY "XP M.C. Edition" PC. ... (microsoft.public.windowsxp.general) |
|