Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install cairo on Windows

For the life of me I can't figure out how to install cairo on Windows!

I need it for Haskell Charts, but when I follow setup instructions and get to running:

cabal install gtk

I get this error:

Linking dist/setup-wrapper\setup.exe ...
Configuring glib-0.12.2...
setup.exe: The program pkg-config version >=0.9.0 is required but it could not
be found.
cabal.exe: Error: some packages failed to install:
cairo-0.12.2 failed during the configure step. The exception was:
ExitFailure 1
gio-0.12.2 depends on glib-0.12.2 which failed to install.
glib-0.12.2 failed during the configure step. The exception was:
ExitFailure 1
gtk-0.12.2 depends on glib-0.12.2 which failed to install.
pango-0.12.2 depends on glib-0.12.2 which failed to install.

If I go to cairo site, they don't have anywhere any kind of setup. Just a bunch of dlls that I don't know what to do with (how to make Haskell see them).

Any help appreciated, as I've been trying to install the damn thing for hours!

like image 402
Andriy Drozdyuk Avatar asked Mar 02 '12 00:03

Andriy Drozdyuk


1 Answers

You need to download the all-in-one bundle available here. You can discover this link yourself by visiting http://www.gtk.org/ and clicking "Download", then "Windows (32-bit)". Extract it to a directory that doesn't include spaces, and add that directory to your PATH. You will also need to cabal install gtk2hs-buildtools before you attempt to cabal install gtk.

These instructions can also be found on the gtk2hs website.

like image 102
Daniel Wagner Avatar answered Sep 19 '22 15:09

Daniel Wagner