From f90839b48b31fd3931a4b0ea7561055ac4975df7 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 24 Jul 2025 19:53:47 +0300 Subject: [PATCH] mu-cmd: load mu-scm.hh only with BUILD_SCM We don't want/need it otherwise, and in fact it triggers build failures when guile (but not scm) is enabled. Fixes #2861. --- mu/mu-cmd.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu/mu-cmd.cc b/mu/mu-cmd.cc index 586ed914..ce7d41da 100644 --- a/mu/mu-cmd.cc +++ b/mu/mu-cmd.cc @@ -35,9 +35,9 @@ #include "message/mu-message.hh" #include "message/mu-mime-object.hh" -#if BUILD_GUILE || BUILD_SCM +#if BUILD_SCM #include "scm/mu-scm.hh" -#endif/*BUILD_GUILE || BUILD_SCM*/ +#endif/*BUILD_SCM*/ #include "utils/mu-error.hh" #include "utils/mu-utils-file.hh"