Hi, Attila Lendvai <att...@lendvai.name> skribis:
> $ ./configure > [...] > ./configure: line 7268: PKG_PROG_PKG_CONFIG: command not found > configure: error: pkg-config is missing, please install it > $ pkg-config --version > 0.29.2 > > > then i tried to autoconf it: > > > $ autoconf > configure.ac:52: warning: PKG_PROG_PKG_CONFIG is m4_require'd but not > m4_defun'd > aclocal.m4:49: GUILE_PKG is expanded from... > configure.ac:52: the top level > > the referenced line is this: GUILE_PKG([3.0]) You need both ‘pkg.m4’ and ‘guile.m4’ in $ACLOCAL_PATH when running ‘autoconf’ (this is done automatically if you use ‘guix shell’). Commit d69163a37f5cffc08d37c3c8f363400e284c2772 adds a couple of patterns that let ‘autoconf’ diagnose lack of ‘pkg.m4’ upfront instead of what you describe above. HTH, Ludo’.