On Mon, 2013-08-05 at 11:52 +0530, Sahil ModGill wrote: > For example: Let's assume, Software A needs Python 3 and Software B needs > Python 2.7 for it's execution and in our system we have both versions of > Python. When user executes any software (A or B) system automatically > allocates required Python libraries and keeps tracks of it.
Let say, Software A needs Python3, then it is the task for that programmer who wrote Software A to specify which version of python he needs to use. either by using '#!/usr/bin/env python3' or by checking the interpreter version through 'sys.version'. In the same way, if Application B needs libglib-2.0.so.0.3000.3 instead of latest libglib-2.0.so, then the programmer who is writing Application B needs to explicitly import the library into his application through dlpoen(). I still don't understand what you are trying to do with Version Control when the problem you are trying to fix can be easily fixed by the programmer who is writing the application. Thanks, Mohan R _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc ILUGC Mailing List Guidelines: http://ilugc.in/mailinglist-guidelines
