On Fri, 21 Sep 2018, Catonano wrote:

How can I build guile-commonmark against guile 2.2.2 ?

Is this a task for the package author ?

Or can I instruct the build system somehow about which guile to use ?

This depends on how the configure script is searching for guile. If it is using pkg-config, then you may need to set the PKG_CONFIG_PATH environment variable to find the pkg-config file for this package. If it is using PATH, then you should make sure that /usr/bin/guile2.2 is in your path prior to the default system version.

For example:

  export PATH=/usr/bin/guile2.2:$PATH
  ./configure

Bob
--
Bob Friesenhahn
[email protected], http://www.simplesystems.org/users/bfriesen/
GraphicsMagick Maintainer,    http://www.GraphicsMagick.org/

_______________________________________________
Autoconf mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to