Re: [cssed-devel] Building cssed on Cygwin
Brought to you by:
iagorubio
From: Iago R. <iag...@hi...> - 2004-05-17 15:43:38
|
On Mon, 2004-05-17 at 15:40, Verachten Bruno wrote: > Hi, >=20 > has anyone tried to build CSSED on Cygwin + GTK? The current source tree will not build on Windows due the lack of memory mapping support on WIN32. > I installed glib and gtk2, but the configure tells me it's not > enough. > checking for pkg-config... /bin//pkg-config > checking for gtk+-2.0... gnome-config: not found > no It means 'pkg-config --exists gtk+-2.0' returned FALSE, so it should be a problem in your gtk2 installation. Try this bash script: if `pkg-config --exists gtk+-2.0` then echo "Yes" else echo "No" fi Is should tell you "Yes" if gtk2 is installed - from the pkg-config point of view - "No" otherwise. Have you got the file gtk+-2.0.pc in your system ? In the other hand - as I told you - even if you solve this problem, cssed will not build. > configure: error: libgtk2.0-dev not found please install libgtk2.0-dev >=20 > Has anyone any idea? I can provide a test binary build for windows if you want. But it's just that - an unfinished test package - so if you plan to use it on production you're out of luck. I'm - almost - sure with the next version of cssed will be shiped a Win32 native installer (no need for cygwin nor X). regards. --=20 Iago Rubio =20 - Home page * http://www.iagorubio.com=20 - Last project * http://cssed.sourceforge.net =20 - GPG Keyserv * pgp.rediris.es id=3D0x909BD4DD |