mailutils/Makefile.am mailutils/sys/pop3.h
Remove offset field and use stream_sequential_readline(). mailutils/sys/Makefile.am New files sys/pop3d.h should be install.
Showing
3 changed files
with
23 additions
and
2 deletions
... | @@ -49,6 +49,7 @@ pkginclude_HEADERS = \ | ... | @@ -49,6 +49,7 @@ pkginclude_HEADERS = \ |
49 | nls.h \ | 49 | nls.h \ |
50 | observer.h \ | 50 | observer.h \ |
51 | parse822.h \ | 51 | parse822.h \ |
52 | pop3.h \ | ||
52 | property.h \ | 53 | property.h \ |
53 | registrar.h \ | 54 | registrar.h \ |
54 | stream.h \ | 55 | stream.h \ |
... | @@ -56,4 +57,4 @@ pkginclude_HEADERS = \ | ... | @@ -56,4 +57,4 @@ pkginclude_HEADERS = \ |
56 | types.h \ | 57 | types.h \ |
57 | url.h | 58 | url.h |
58 | 59 | ||
59 | SUBDIRS = gnu | 60 | SUBDIRS = gnu sys | ... | ... |
include/mailutils/sys/Makefile.am
0 → 100644
1 | ## Process this file with GNU Automake to create Makefile.in | ||
2 | |||
3 | ## Copyright (C) 2002 Free Software Foundation, Inc. | ||
4 | ## | ||
5 | ## GNU Mailutils is free software; you can redistribute it and/or | ||
6 | ## modify it under the terms of the GNU General Public License as | ||
7 | ## published by the Free Software Foundation; either version 2, or (at | ||
8 | ## your option) any later version. | ||
9 | ## | ||
10 | ## This program is distributed in the hope that it will be useful, but | ||
11 | ## WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
13 | ## General Public License for more details. | ||
14 | ## | ||
15 | ## You should have received a copy of the GNU General Public License | ||
16 | ## along with this program; if not, write to the Free Software | ||
17 | ## Foundation, Inc. | ||
18 | ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | |||
20 | pkginclude_HEADERS = \ | ||
21 | pop3.h |
... | @@ -59,7 +59,6 @@ struct mu_pop3_work_buf | ... | @@ -59,7 +59,6 @@ struct mu_pop3_work_buf |
59 | char *ptr; | 59 | char *ptr; |
60 | char *nl; | 60 | char *nl; |
61 | size_t len; | 61 | size_t len; |
62 | off_t offset; /* To synchronize with the stream buffering. */ | ||
63 | }; | 62 | }; |
64 | 63 | ||
65 | /* Structure to hold things general to POP3 mailbox, like its state, etc ... */ | 64 | /* Structure to hold things general to POP3 mailbox, like its state, etc ... */ | ... | ... |
-
Please register or sign in to post a comment