[Pythonmac-SIG] Loading modules on MacOS

2005-10-30 Thread jurem
Hi all, I'm porting some software from Linux/Python to MacOS/Python. Core modules are written in C++ and are loaded in Python as modules. On Linux those core modules are linked as shared libraries (.so). It looks something like: core_module1.so <-- 'standalone' core module, does not link any othe

[Pythonmac-SIG] pygame window control

2005-10-30 Thread Mathew James Oakes
want to control the position of window on screen from inside a pygame app is there a way? ___ Pythonmac-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/pythonmac-sig

Re: [Pythonmac-SIG] Loading modules on MacOS

2005-10-30 Thread Ronald Oussoren
On 30-okt-2005, at 8:06, [EMAIL PROTECTED] wrote: > Hi all, > I'm porting some software from Linux/Python to MacOS/Python. Core > modules > are written in C++ and are loaded in Python as modules. > > On Linux those core modules are linked as shared libraries (.so). > It looks > something like

Re: [Pythonmac-SIG] Framework build of 2.4.2

2005-10-30 Thread Ronald Oussoren
On Friday, October 28, 2005, at 09:09PM, Bob Ippolito <[EMAIL PROTECTED]> wrote: > >On Oct 28, 2005, at 5:03 AM, Ronald Oussoren wrote: > >> On 27-okt-2005, at 23:37, Bob Ippolito wrote: >> >> >>> On Oct 27, 2005, at 2:29 PM, Samuel M. Smith wrote: >>> >>> >>> Will there be a framework inst

Re: [Pythonmac-SIG] Framework build of 2.4.2

2005-10-30 Thread Bob Ippolito
On Oct 30, 2005, at 8:36 AM, Ronald Oussoren wrote: > > On Friday, October 28, 2005, at 09:09PM, Bob Ippolito > <[EMAIL PROTECTED]> wrote: > > >> >> On Oct 28, 2005, at 5:03 AM, Ronald Oussoren wrote: >> >> >>> On 27-okt-2005, at 23:37, Bob Ippolito wrote: >>> >>> >>> On Oct 27, 2005, at 2

Re: [Pythonmac-SIG] Framework build of 2.4.2

2005-10-30 Thread Ronald Oussoren
On Sunday, October 30, 2005, at 07:20PM, Bob Ippolito <[EMAIL PROTECTED]> wrote: >> >> One other thing: would it be wise to create /Library/Python/2.4 >> with symlinks to relevant parts of the framework? I'm mostly >> thinking of the directories "bin" and "site-packages". The reason >> I'd

[Pythonmac-SIG] compiled dylib

2005-10-30 Thread Zhi Peng
Hi! all   I have some c code which can be compiled under gcc. But how can I compiled c code as a dynamic library as in Linux in .so form? In Mac, "gcc -shared *** " does not work. If I compiled it as dynamic library, can it be used in CodweWarriot compiler as a dynamic library if I use gcc to

Re: [Pythonmac-SIG] Loading modules on MacOS

2005-10-30 Thread Zhi Peng
Jure   Could I ask you. With gcc compiler and linker, if the dylib name is module.dylib, can this dynamic library be used by C code that are developed by other C compiler such as CodeWarrior?     Zhi [EMAIL PROTECTED] wrote: Hi all,I'm porting some software from Linux/Python to MacOS/Python. Core