Commit 24f8ed0d 24f8ed0d305f64c88352348c88557a9abcde9161 by Sergey Poznyakoff

Updated

1 parent 607e60d3
2003-03-22 Sergey Poznyakoff
* configure.ac: Raised version number to 0.3.1
Define macro ATTRIBUTE_UNUSED.
* mailbox/parsedate.y: New file
* mailbox/.cvsignore: Updated
* mailbox/Makefile.am: Updated
* mh/Makefile.am: Minor formatting change.
* mh/README: Updated.
* mh/TODO: Updated.
* mh/pick.c: Implemented --after and --before.
* mh/pick.h: Likewise.
* mh/pick.y: Likewise.
* mail/from.c (mail_from0): Bugfix.
* include/mailutils/mutil.h (mu_parse_date): New function.
2003-03-20 Sergey Poznyakoff
* mh/README: Updated.
......
......@@ -7,4 +7,6 @@ Makefile.in
T
_*
.gdbinit
mailutils-config
\ No newline at end of file
mailutils-config
parsedate.c
*y.output
\ No newline at end of file
......
......@@ -19,6 +19,8 @@
INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/mailbox -I${top_srcdir}/mailbox/include -I${top_srcdir}/include/mailutils/gnu @INTLINCS@
AM_CFLAGS = -DSITE_VIRTUAL_PWDDIR=\"@SITE_VIRTUAL_PWDDIR@\"
YLWRAP = $(SHELL) $(top_srcdir)/scripts/ylwrap
AM_YFLAGS=-vt
SUBDIRS = include mbox pop imap mh maildir testsuite
......@@ -73,6 +75,7 @@ muerrno.c \
nls.c \
observer.c \
parse822.c \
parsedate.c \
property.c \
registrar.c \
rfc2047.c \
......@@ -89,6 +92,13 @@ url_sendmail.c \
url_smtp.c \
wicket.c
BUILT_SOURCES = parsedate.c
parsedate.c: $(srcdir)/parsedate.y
$(YLWRAP) "$(YACC) $(AM_YFLAGS)" $< \
y.tab.c parsedate.c y.output parsedate.y.output \
-- -yy pd_yy
libmailbox_la_DEPENDENCIES = \
mbox/libmbox.la\
pop/libpop.la\
......