Guide to compile GtkScintilla2 e PyScintilla2 packages
Some people reported me problems in compiling GtkScintilla2 package, so I've written this kind of "survival" guide
First of all you need a copy of GtkScintilla2 source tarball and I suggest you to take GtkScintilla2-0.0.5, instead of the latest version GtkScintilla2-0.0.6, because I had problems in making to work this version, too. Moreover, download the latest version of Scintilla from Scintilla official site.
Then follow this instructions:
tar xfz GtkScintilla2-0.0.5.tar.gz
cd GtkScintilla2-0.0.5
cp ../scintillaXYZ.tgz .
tar xfz scintillaXYZ.tgz
where "scintillaXYZ.tgz" is the latest version of Scintilla editor.
Now, if you compiled GTK+ with threading support simply type:
make su make install
otherwise type:
make NOTHREADS=1 su make install
Then, download the latest version of PyScintilla2 and type
./configure
make
su
make install
...and that's all folks!
If you still have trouble after this procedure, please write to me an E-Mail and we'll try to find a solution.
|