swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swftools-common] Compiling pyswf on OS X


From: Matthias Kramm
Subject: Re: [Swftools-common] Compiling pyswf on OS X
Date: Wed, 13 Oct 2004 19:14:27 +0200
User-agent: Mutt/1.5.6i

On Tue, Oct 12, 2004 at 02:30:38PM +0200, Ksenia Marasanova wrote:
> >Try running ./configure as
> >
> >     
> >PYTHON_LIB="/System/Library/Frameworks/Python.framework/Versions/2.3/ 
> >include/python2.3" \
> >    PYTHON_INCLUDES="/Library/Python/2.3/" \
> >    ./configure
> >
> 
> I did... there are still problems:

Thanks for testing this.

Could you, in the configure script, replace

int main(int argn, char*argv[])
{
    int ret;
    ret = Py_Main(argn, argv);
    int x; // check also for gcc 2.95.x incompatibilities
    return ret;
}

by 

int main()
{
    int ret;
    ret = Py_Main(0,0);
    int x; // check also for gcc 2.95.x incompatibilities
    return ret;
}

and try to run it again? Thanks!

Greetings

Matthias






reply via email to

[Prev in Thread] Current Thread [Next in Thread]