Updated
Showing
3 changed files
with
28 additions
and
0 deletions
1 | 2003-03-22 Sergey Poznyakoff | ||
2 | |||
3 | * configure.ac: Raised version number to 0.3.1 | ||
4 | Define macro ATTRIBUTE_UNUSED. | ||
5 | * mailbox/parsedate.y: New file | ||
6 | * mailbox/.cvsignore: Updated | ||
7 | * mailbox/Makefile.am: Updated | ||
8 | * mh/Makefile.am: Minor formatting change. | ||
9 | * mh/README: Updated. | ||
10 | * mh/TODO: Updated. | ||
11 | * mh/pick.c: Implemented --after and --before. | ||
12 | * mh/pick.h: Likewise. | ||
13 | * mh/pick.y: Likewise. | ||
14 | * mail/from.c (mail_from0): Bugfix. | ||
15 | * include/mailutils/mutil.h (mu_parse_date): New function. | ||
16 | |||
1 | 2003-03-20 Sergey Poznyakoff | 17 | 2003-03-20 Sergey Poznyakoff |
2 | 18 | ||
3 | * mh/README: Updated. | 19 | * mh/README: Updated. | ... | ... |
... | @@ -19,6 +19,8 @@ | ... | @@ -19,6 +19,8 @@ |
19 | 19 | ||
20 | INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/mailbox -I${top_srcdir}/mailbox/include -I${top_srcdir}/include/mailutils/gnu @INTLINCS@ | 20 | INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/mailbox -I${top_srcdir}/mailbox/include -I${top_srcdir}/include/mailutils/gnu @INTLINCS@ |
21 | AM_CFLAGS = -DSITE_VIRTUAL_PWDDIR=\"@SITE_VIRTUAL_PWDDIR@\" | 21 | AM_CFLAGS = -DSITE_VIRTUAL_PWDDIR=\"@SITE_VIRTUAL_PWDDIR@\" |
22 | YLWRAP = $(SHELL) $(top_srcdir)/scripts/ylwrap | ||
23 | AM_YFLAGS=-vt | ||
22 | 24 | ||
23 | SUBDIRS = include mbox pop imap mh maildir testsuite | 25 | SUBDIRS = include mbox pop imap mh maildir testsuite |
24 | 26 | ||
... | @@ -73,6 +75,7 @@ muerrno.c \ | ... | @@ -73,6 +75,7 @@ muerrno.c \ |
73 | nls.c \ | 75 | nls.c \ |
74 | observer.c \ | 76 | observer.c \ |
75 | parse822.c \ | 77 | parse822.c \ |
78 | parsedate.c \ | ||
76 | property.c \ | 79 | property.c \ |
77 | registrar.c \ | 80 | registrar.c \ |
78 | rfc2047.c \ | 81 | rfc2047.c \ |
... | @@ -89,6 +92,13 @@ url_sendmail.c \ | ... | @@ -89,6 +92,13 @@ url_sendmail.c \ |
89 | url_smtp.c \ | 92 | url_smtp.c \ |
90 | wicket.c | 93 | wicket.c |
91 | 94 | ||
95 | BUILT_SOURCES = parsedate.c | ||
96 | |||
97 | parsedate.c: $(srcdir)/parsedate.y | ||
98 | $(YLWRAP) "$(YACC) $(AM_YFLAGS)" $< \ | ||
99 | y.tab.c parsedate.c y.output parsedate.y.output \ | ||
100 | -- -yy pd_yy | ||
101 | |||
92 | libmailbox_la_DEPENDENCIES = \ | 102 | libmailbox_la_DEPENDENCIES = \ |
93 | mbox/libmbox.la\ | 103 | mbox/libmbox.la\ |
94 | pop/libpop.la\ | 104 | pop/libpop.la\ | ... | ... |
-
Please register or sign in to post a comment