diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-07-11 22:47:35 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-07-11 22:47:35 +0000 |
commit | 37f9675258e66ee3db37cbb45f3e525591714aad (patch) | |
tree | 2e7862dee3a7aec57dbac299156910b52109d532 /x11-misc/bbmail/files | |
parent | Added latest version. (diff) | |
download | gentoo-2-37f9675258e66ee3db37cbb45f3e525591714aad.tar.gz gentoo-2-37f9675258e66ee3db37cbb45f3e525591714aad.tar.bz2 gentoo-2-37f9675258e66ee3db37cbb45f3e525591714aad.zip |
QA: Removed default src_compile
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'x11-misc/bbmail/files')
-rw-r--r-- | x11-misc/bbmail/files/bbmail-qmail.patch | 35 | ||||
-rw-r--r-- | x11-misc/bbmail/files/digest-bbmail-0.6.11-r2 | 1 |
2 files changed, 0 insertions, 36 deletions
diff --git a/x11-misc/bbmail/files/bbmail-qmail.patch b/x11-misc/bbmail/files/bbmail-qmail.patch deleted file mode 100644 index 8e23afd63991..000000000000 --- a/x11-misc/bbmail/files/bbmail-qmail.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- bbmail-0.6.10.orig/bbmail.cc -+++ bbmail-0.6.10/bbmail.cc -@@ -55,7 +55,7 @@ - } - - bool Checkmail::CheckMHBox(int spoolno,bool force) { -- struct stat file_status; -+ struct stat file_status, maildir_status; - FILE *fp; - int num[2]={-1,-1}; - int number_of_values; -@@ -67,6 +67,23 @@ - bbtool->getResource()->spoolfile[spoolno].filename); - return(false); - } -+ -+ // check maildir new/ and cur/ directories -+ char *maildir = new -+ char[strlen (bbtool->getResource()->spoolfile[spoolno].filename) + 5]; -+ sprintf (maildir, "%s/new", bbtool->getResource()->spoolfile[spoolno].filename); -+ if (stat (maildir, &maildir_status) == 0 && -+ maildir_status.st_mtime > file_status.st_mtime) { -+ file_status.st_mtime = maildir_status.st_mtime; -+ } -+ -+ sprintf (maildir, "%s/cur", bbtool->getResource()->spoolfile[spoolno].filename); -+ if (stat (maildir, &maildir_status) == 0 && -+ maildir_status.st_mtime > file_status.st_mtime) { -+ file_status.st_mtime = maildir_status.st_mtime; -+ } -+ -+ delete [] maildir; - } - - if ((file_status.st_mtime != spoolfile[spoolno].last_mtime)&& diff --git a/x11-misc/bbmail/files/digest-bbmail-0.6.11-r2 b/x11-misc/bbmail/files/digest-bbmail-0.6.11-r2 deleted file mode 100644 index 407641d034b8..000000000000 --- a/x11-misc/bbmail/files/digest-bbmail-0.6.11-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 26e442a09ceab67a39b73ad80ceafff9 bbmail-0.6.11.tar.gz 96464 |