Re: [gtkmm] Re: Building libsigc++ under Win32 for use with Intel C++ Compiler 6.0



On Wed, 06 Nov 2002 18:39:59 +0100
Dirk Gerrits <dirk gerrits homeip net> wrote:

> $ `pkg-config gtkmm-2.0 --cflags --libs`
> bash: -IC:/cygwin/include/gtkmm-2.0: No such file or directory
> 
> Ehh, not good. Why?

pkg-config output is alright; What you do is using the backtick-operator the wrong way.
Bash expands your

$ `pkg-config gtkmm-2.0 --cflags --libs`

to

$ -IC:/cygwin/include/gtkmm-2.0 [...additional -I and -L go here...]

and aborts since it cannot find an executable named "-IC:/cygwin/include/gtkmm-2.0".

Sorry that I couldn't help you with your main problem, but you should know that it is not pkg-config's fault.

Leslie



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]