I and i think many other dont know how auto open in libnix work.
Time to find it out then.
Most do the logical Amiga OS way, that is explain in RKM.Its really not much work to open a lib.there can also do a code snippet that open often needed aos libs.you need only paste it
but its really lots more easy to use way from RKM then port a big Linux program to work with a small libnix.
struct Library *AslBase:
AslBase = OpenLibrary("asl.library");
and at end of source or in a atexit func you need do
CloseLibrary(AslBase);
It is not enough for ports :-) I have created lots of shared libraries for MorphOS: powersdl.library, iconv.library, intl.library, hpdf.library, littlecms.library and many more which are used in my ports. When I am porting stuff from other systems (usually from Unix) I dont have to add code to open those libraries. It is done automatically for me.
You still have not written if the programs i post work on your MOS.Your excuse is only that this programs should not use with ixemul.
I dont have Internet at home (yet).
what do you say when a program use opengl functions that MOS tinygl not have.
Do you think this program should port so it work with the fewer functions of tinygl or its a shitty program ?
There is tinygl maintainer. When there is missing opengl call I ask what could be done about it. Sometimes there is workaround, sometimes tinygl maintainer adds missing functionality, sometimes I have to drop project.
enhance libnix is too possible but wy need not 2 big unix API(ixemul and libnix) i think.You yourself tell you want not use this shitty Un++ix Ports, but then i dont understand, wy MOS devs have add more functione to libnix to make porting more easy.
The official word is: do not used ixemul unless you know what you are doing.
more functions help more easy port programs.MOS devs see that too and add this new funcs to libnix as closedsource.
There is also clib2 developed by Olaf Barthel. It is open source. I dont know how well it compares with libnix but I think it is fairly good alternative solution.