I try to build PyGTK 2.15.2 against GTKMM2.16.0-4devel redist for Win32 and PyGObject 2.18
building system:
MinGW32 with GCC4.4.0tdm
MSYS
Python 2.5.4 with Numpy 1.3
At ATK module it complaining:
undefined reference to atk_hyperlink_impl_get_type & atk_streamable_content_get_uri
I check from GTKMM classes docs and there's no such above thing... o_O
I search inside gtkmm's lib folder, and found out that symbol is inside libatk-1.0.dll.a which not included in LDFLAGS??
So what should I do?
Try to include -llibatk-1.0.dll, compiler still refuse to create dll instead only produce .a file.
even when skip atk, I still get undeclared error for PyArray Object (numpy) in gdkpixbuf.override which not a problem in previous PyGTK
here's what I do (cause I'm noob in MinGW stuff):
1. configure LDFLAGS="-L/c/Programs/python/libs -lpython25" (I don't get it, why this LD can't be done in makefile?)
>> result seems fine
2. make
>> stopped at ATK, next would be _GTK
Do I miss something? is anyone ever tried this before?
I really need PyGTK binaries that USE numpy NOT numeric... or does anyone ever did it with 2.12.1?
Thanks..