-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See #14606 for the breakage. It is fixed by using default guile 2.0 Also addes support for fribidi, sasl, and gssapi
- Loading branch information
Showing
3 changed files
with
26 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
See https://lists.gnu.org/archive/html/bug-mailutils/2010-10/msg00005.html | ||
|
||
diff -u mailutils-2.2/libmu_scm/mu_message.c mailutils-2.2.new/libmu_scm/mu_message.c | ||
--- mailutils-2.2/libmu_scm/mu_message.c 2010-04-18 10:29:07.000000000 -0700 | ||
+++ mailutils-2.2.new/libmu_scm/mu_message.c 2016-07-03 21:18:53.746185547 -0700 | ||
@@ -510,8 +510,8 @@ | ||
{ | ||
SCM car = SCM_CAR (lst); | ||
if (scm_is_string (car) | ||
&& mu_c_strncasecmp (scm_i_string_chars (car), name, | ||
- scm_i_string_length (car)) == 0) | ||
+ scm_c_string_length (car)) == 0) | ||
return 1; | ||
} | ||
return 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters