On Mon, 27 Jan 2003 21:56:42 +0000
jordan muscott <jordan(a)no-future.com> wrote:
myself know how I solved this problem. Basically,
the pkg-config that
came with my distro was installed in /usr , and when I updated it myself
from source I installed it in /usr/local. A bit of googling revealed
that the PKG_CHECK_MODULES error was probably due to pkg-config not
being able to find pkg.m4, so I copied this file from
/usr/local/share/aclocal/ to /usr/share/aclocal/ and then all was well
again :=)
You also do (in bash):
$ PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig/
$ export PKG_CONFIG_PATH
and then do configure again.
janne