This repository has been archived on 2026-01-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
coot/coot-guile.patch
Tim Fenn ce1bb5ebd6 * Fri Aug 09 2013 Tim Fenn <tim.fenn@gmail.com> - 0.7-4.20120929svn4458
- use xz instead of gz (BZ 982385)
- update for soname bump in deps (BZ 989141)
- use guile1.8-compat, add guile requires
2013-08-09 18:09:17 -07:00

27 lines
839 B
Diff

--- macros/guile_orig.m4 2013-07-31 00:25:19.715073145 -0700
+++ macros/guile.m4 2013-07-31 00:27:01.763927099 -0700
@@ -72,21 +72,21 @@
# The variables are marked for substitution, as by @code{AC_SUBST}.
#
AC_DEFUN([GUILE_PROGS],
- [AC_PATH_PROG(GUILE,guile)
+ [AC_PATH_PROG(GUILE,guile1.8)
if test x$with_guile = xyes ; then
if test "$GUILE" = "" ; then
AC_MSG_ERROR([guile required but not found])
fi
fi
AC_SUBST(GUILE)
- AC_PATH_PROG(GUILE_CONFIG,guile-config)
+ AC_PATH_PROG(GUILE_CONFIG,guile1.8-config)
if test x$with_guile = xyes ; then
if test "$GUILE_CONFIG" = "" ; then
AC_MSG_ERROR([guile-config required but not found])
fi
fi
AC_SUBST(GUILE_CONFIG)
- AC_PATH_PROG(GUILE_TOOLS,guile-tools)
+ AC_PATH_PROG(GUILE_TOOLS,guile1.8-tools)
AC_SUBST(GUILE_TOOLS)
])