Konrad Hinsen <[email protected]> skribis: > After initially playing with Guix 0.2, I now want to switch to the bleeding > edge. > I cloned the Git repository, ran "autoreconf -vi", and then "configure". This > ends with an error message: > > ./configure: line 6575: syntax error near unexpected token `GUILE,' > ./configure: line 6575: `PKG_CHECK_MODULES(GUILE, guile-2.0 >= 2.0.5)'
This message means that Autoconf didn’t pick up the definition of the ‘PKG_CHECK_MODULES’ M4 macro. That macro is provided by pkg.m4, from the ‘pkg-config’ package. Thus, if you install ‘pkg-config’, Autoconf should automatically find it. (If you still have Guix 0.2 installed, you can run ‘guix package -i autoconf -i automake -i pkg-config’, and export the environment variables as noted.) Let us know how it goes. Thanks, Ludo’.
