Andreas Enge <[email protected]> skribis: > But setting GUILE_CFLAGS and GUILE_LIBS does not change anything, and > looking at the configure file, I do not have the impression that the > presence of these environment variables is checked. I suppose that all this > code is expanded from > PKG_CHECK_MODULES([GUILE], [guile-2.0]) > in configure.ac. Could this be considered a bug in this macro? How about > working around this issue by first checking for the variables inside > configure.ac, and only calling PKG_CHECK_MODULES if they are undefined? > > Does anyone see another easy solution?
The following should work: $ ./configure PKG_CONFIG=true GUILE_CFLAGS="" GUILE_LIBS="" HTH, Ludo’.
