![]() |
2010-04-21
, 16:07
|
Posts: 1,746 |
Thanked: 2,100 times |
Joined on Sep 2009
|
#12
|
![]() |
2010-04-21
, 16:09
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#13
|
It seems however, that the Calendar application is not happy with it, and stopped working properly.
After I downgraded to the previos version of libc6, it worked again.
It would be much easier in terms of compatibility, if it would be possible to have both versions of that library.
![]() |
2010-04-21
, 19:21
|
|
Posts: 1,296 |
Thanked: 1,773 times |
Joined on Aug 2009
@ Budapest, Hungary
|
#14
|
On Linux, everything is possible, the only question is how hard it isIn your case, I would suggest looking into dpkg --instdir and LD_LIBRARY_PATH, but mixing Debian ARM stuff into Maemo is rough terrain (that's in effect just like copying over things from c:\
windows\system32 between various SPs and editions - sort of works... but more often doesn't)
![]() |
2010-04-21
, 19:28
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#15
|
About the Windows metaphor:
No, it's more like having 2 versions of the same .dll file, and referencing the right version.
So, I'd like to have the original version which comes from Maemo 5, and I'd like to install the other one for the apps I install from the Debian repo.
Is it possible?
The Following User Says Thank You to fatalsaint For This Useful Post: | ||
![]() |
2010-04-21
, 19:38
|
Posts: 1,141 |
Thanked: 781 times |
Joined on Dec 2009
@ Magical Unicorn Land
|
#16
|
![]() |
2010-04-21
, 21:41
|
|
Posts: 1,296 |
Thanked: 1,773 times |
Joined on Aug 2009
@ Budapest, Hungary
|
#17
|
You won't be able to point-clicky install software from debian and software from meego and have both software use different versions of libraries... use easy debian for that.
ETA: As for the windows thing, you can't have the same filename in the same directory at the same time regardless of versions. So you'd have to name the dll two different things and the app would have to be written calling that name of dll.
![]() |
2010-04-21
, 21:49
|
|
Posts: 1,296 |
Thanked: 1,773 times |
Joined on Aug 2009
@ Budapest, Hungary
|
#18
|
I wanted to learn Qt since before I got an N900, and since I got N900 I want to program for it... since it's all been such a moving target so far, I've not even bothered to begin until PR1.2, qt-creator with madde integration, etc. are released and stabilized. Not that I have any need for this particular setup, but it seems to be the "future best way" so I'll just wait for it to be the present.
![]() |
2010-04-21
, 22:02
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#19
|
The part about filenames is correct, the rest is not.
For traditional COM dlls, you can register multiple versions of them.
The will reside in different physical locations, but an application requesting a specific version of a dll can get it easily.
For the managed programming model:
You can have every version of the .NET framework running alongside each other.
This is also true for your own assemblies, you can have multiple versions of the same assembly in the GAC.
And my point is: it is handled directly by the operating system, the developers don't have to do anything about it.
That way, multiple libraries can be on a single system, and the right one is selected for each program. However, if a program breaks on an update to a library that kept the same soname, you can force it to use the older library version by copying the old library back somewhere, renaming the program (say to the old name plus ``.orig''), and then create a small ``wrapper'' script that resets the library to use and calls the real (renamed) program. You could place the old library in its own special area, if you like, though the numbering conventions do permit multiple versions to live in the same directory. The wrapper script could look something like this:
Given this lengthy list, developers of C++ libraries in particular must plan for more than occasional updates that break binary compatibility. Fortunately, on Unix-like systems (including Linux) you can have multiple versions of a library loaded at the same time, so while there is some disk space loss, users can still run ``old'' programs needing old libraries.
![]() |
2010-04-21
, 22:09
|
|
Posts: 2,355 |
Thanked: 5,249 times |
Joined on Jan 2009
@ Barcelona
|
#20
|
The way libraries are in Linux is you'll usually have libraryname.so.1.2 < version.. and then a symlink from that to libraryname.so - That way the program just calls libraryname.so and you get whatever version is on the system. If you *need* an older version, you can re-link the libraryname.so to the older one and not the newer one to launch the app. But this is ugly.
The Following User Says Thank You to javispedro For This Useful Post: | ||
You're simply trying to do an unsupported thing.