diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-07-24 19:53:47 +0300 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-07-24 19:55:27 +0300 |
| commit | f90839b48b31fd3931a4b0ea7561055ac4975df7 (patch) | |
| tree | 264d70fdb2c656425ef38cb8d72dcbeb54f30b06 /mu/mu-cmd.cc | |
| parent | f95ae6cffe56dfdbb2decbe465fec9b179d0bff7 (diff) | |
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.
Diffstat (limited to 'mu/mu-cmd.cc')
| -rw-r--r-- | mu/mu-cmd.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mu/mu-cmd.cc b/mu/mu-cmd.cc index 586ed91..ce7d41d 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" |
