diff options
author | joerg <joerg@FreeBSD.org> | 1996-09-28 13:37:38 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-09-28 13:37:38 +0000 |
commit | 8d0e25e3358cde4a2d2e6a06f7a5e496e38a2d75 (patch) | |
tree | 953bca0a1abb229b88bc72f904172c73c39bdbeb /usr.bin/vacation/Makefile | |
parent | 789722ca508cde2dd87dcab23de3fd6b87f0595f (diff) | |
download | FreeBSD-src-8d0e25e3358cde4a2d2e6a06f7a5e496e38a2d75.zip FreeBSD-src-8d0e25e3358cde4a2d2e6a06f7a5e496e38a2d75.tar.gz |
Various cleanups:
. prototyped and staticized the internal functions while i was here,
. made the thing -Wall clean,
. fixed an error that causes the recipient name to be matched only
for the first characters, as opposed to a full name (wonder why i'm
concerned? Well, one of my login IDs is `j', and i've noticed that
vacation has been sending out replies to all mailing list messages
that had a jkh@ or jmb@ in it :),
. introduced an option -l to list the contents of the database; mucho
useful if you've got (too) many mailing list messages in your inbox
and wanna make sure you don't miss the `important' mails.
Diffstat (limited to 'usr.bin/vacation/Makefile')
-rw-r--r-- | usr.bin/vacation/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/vacation/Makefile b/usr.bin/vacation/Makefile index 130d439..f639b28 100644 --- a/usr.bin/vacation/Makefile +++ b/usr.bin/vacation/Makefile @@ -3,4 +3,6 @@ PROG= vacation DPADD= ${LIBDBM} +CFLAGS+= -Wall + .include <bsd.prog.mk> |