tuibuilder_pel7x64builder0
6 years ago
4 changed files with 134 additions and 12 deletions
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
diff -ur mutt-1.8.0.orig/doc/Muttrc.head mutt-1.8.0/doc/Muttrc.head |
||||
--- mutt-1.8.0.orig/doc/Muttrc.head 2017-02-25 15:28:22.120997474 +0000 |
||||
+++ mutt-1.8.0/doc/Muttrc.head 2017-02-25 15:30:10.643079681 +0000 |
||||
@@ -24,12 +24,16 @@ |
||||
|
||||
# Show documentation when pressing F1 |
||||
macro generic,pager <F1> "<shell-escape> less @docdir@/manual.txt<Enter>" "show Mutt documentation" |
||||
+# and also F2, as some terminals use F1 |
||||
+macro generic,pager <F2> "<shell-escape> less @docdir@/manual.txt<Enter>" "show Mutt documentation" |
||||
|
||||
# show the incoming mailboxes list (just like "mutt -y") and back when pressing "y" |
||||
macro index y "<change-folder>?<toggle-mailboxes>" "show incoming mailboxes list" |
||||
macro pager y "<exit><change-folder>?<toggle-mailboxes>" "show incoming mailboxes list" |
||||
bind browser y exit |
||||
|
||||
+bind editor <delete> delete-char |
||||
+ |
||||
# Handler for gzip compressed mailboxes |
||||
# open-hook '\.gz$' "gzip -cd '%f' > '%t'" |
||||
# close-hook '\.gz$' "gzip -c '%t' > '%f'" |
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
diff -up mutt-1.9.1/doc/Makefile.am.lynx_no_backscapes mutt-1.9.1/doc/Makefile.am |
||||
--- mutt-1.9.1/doc/Makefile.am.lynx_no_backscapes 2018-04-12 15:30:14.881812698 +0200 |
||||
+++ mutt-1.9.1/doc/Makefile.am 2018-04-12 15:30:25.632968018 +0200 |
||||
@@ -109,7 +109,7 @@ uninstall-local: |
||||
|
||||
check: |
||||
manual.txt: manual.html |
||||
- -LC_ALL=C lynx -dump -nolist -with_backspaces -display_charset=us-ascii manual.html > $@ || \ |
||||
+ -LC_ALL=C lynx -dump -nolist -display_charset=us-ascii manual.html > $@ || \ |
||||
LC_ALL=C w3m -dump manual.html > $@ || \ |
||||
LC_ALL=C elinks -dump -no-numbering -no-references manual.html | sed -e 's,\\001, ,g' > $@ |
||||
|
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
diff -up mutt-1.10.0/configure.ac.nodotlock mutt-1.10.0/configure.ac |
||||
--- mutt-1.10.0/configure.ac.nodotlock 2018-05-14 23:51:53.000000000 +0200 |
||||
+++ mutt-1.10.0/configure.ac 2018-05-23 15:09:21.186613968 +0200 |
||||
@@ -528,9 +528,7 @@ int main (int argc, char **argv) |
||||
}]])],[mutt_cv_worldwrite=yes],[mutt_cv_worldwrite=no],[mutt_cv_worldwrite=no])]) |
||||
|
||||
mutt_cv_setgid=no |
||||
- if test $mutt_cv_worldwrite = yes; then |
||||
- AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ]) |
||||
- else |
||||
+ if test $mutt_cv_worldwrite != yes; then |
||||
|
||||
AC_CACHE_CHECK(if $mutt_cv_mailpath is group writable, mutt_cv_groupwrite, [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <sys/types.h> |
||||
#include <sys/stat.h> |
||||
@@ -546,7 +544,6 @@ int main (int argc, char **argv) |
||||
}]])],[mutt_cv_groupwrite=yes],[mutt_cv_groupwrite=no],[mutt_cv_groupwrite=no])]) |
||||
|
||||
if test $mutt_cv_groupwrite = yes; then |
||||
- AC_DEFINE(USE_DOTLOCK,1,[ Define to use dotlocking for mailboxes. ]) |
||||
AC_DEFINE(USE_SETGID,1,[ Define if mutt should run setgid "mail". ]) |
||||
mutt_cv_setgid=yes |
||||
fi |
||||
diff -up mutt-1.10.0/Makefile.am.nodotlock mutt-1.10.0/Makefile.am |
||||
--- mutt-1.10.0/Makefile.am.nodotlock 2018-05-23 15:11:05.477977659 +0200 |
||||
+++ mutt-1.10.0/Makefile.am 2018-05-23 15:11:20.252170843 +0200 |
||||
@@ -154,17 +154,6 @@ hcversion.h: $(srcdir)/mutt.h $(srcdir)/ |
||||
patchlist.c: $(srcdir)/PATCHES $(srcdir)/patchlist.sh |
||||
$(srcdir)/patchlist.sh < $(srcdir)/PATCHES > patchlist.c |
||||
|
||||
-install-exec-hook: |
||||
- if test -f $(DESTDIR)$(bindir)/mutt.dotlock && test -f $(DESTDIR)$(bindir)/mutt_dotlock ; then \ |
||||
- rm -f $(DESTDIR)$(bindir)/mutt.dotlock ; \ |
||||
- ln -sf $(DESTDIR)$(bindir)/mutt_dotlock $(DESTDIR)$(bindir)/mutt.dotlock ; \ |
||||
- fi |
||||
- if test -f $(DESTDIR)$(bindir)/mutt_dotlock && test x$(DOTLOCK_GROUP) != x ; then \ |
||||
- chgrp $(DOTLOCK_GROUP) $(DESTDIR)$(bindir)/mutt_dotlock && \ |
||||
- chmod $(DOTLOCK_PERMISSION) $(DESTDIR)$(bindir)/mutt_dotlock || \ |
||||
- { echo "Can't fix mutt_dotlock's permissions! This is required to lock mailboxes in the mail spool directory." >&2 ; exit 1 ; } \ |
||||
- fi |
||||
- |
||||
install-data-local: |
||||
$(MKDIR_P) $(DESTDIR)$(sysconfdir) |
||||
$(INSTALL) -m 644 $(srcdir)/mime.types $(DESTDIR)$(sysconfdir)/mime.types.dist |
Loading…
Reference in new issue