Hi,
Download the rpm source for SuSE
The sourceforge tarball would have been easier. Are you thinking of building an rpm too?
I know I need the wxWidgets, but I don't have root access to start with...
That's a problem. The most elegant solution would have been to install the binary rpm to somewhere under ~, using the --prefix option. Unfortunately it doesn't work, as apparently the rpm isn't relocatable.
In any case, you will need the wxGTK devel files if you plan to use CodeLite to create apps that use wxWidgets.
The following should work, but it assumes that your system has installed the requirements to build wxGTK; that's mostly the gtk2-devel package. If that's not installed and you can't get someone to install it, I don't think you have any sensible workaround.
You will need to download and build wxGTK, but you can't install it to /usr/ or /usr/local as normal, so do the following:
Code: Select all
tar -xzf ./wxGTK-2.8.12.tar.gz
cd wxGTK-2.8.12
mkdir build_gtk
cd build_gtk
../configure --enable-unicode --prefix=$(pwd)
make
(Optionally add --enable-debug to the configure line.)
This will build a 'local' wxGTK, designed to be used in-place, not 'make install'ed. This will work fine except that /full/path/to/build_gtk/wx-config isn't in your $PATH; so to use it, you somehow have arrange for it to be found. If building in a terminal, you can either use the full filepath or, easier, first do:
PATH=/full/path/to/build_gtk:$PATH
(When building a project using CodeLite, you will need to do one of those things in the project's compiler and linker options.)
You should then be able to build CodeLite without problems, assuming there aren't any other missing dependencies.
Regards,
David