masqmail
annotate src/md5/Makefile.am @ 237:5f9f3a65032e
refactoring: new function split_rcpts() replaces two others
split_rcpts() merges rcptlist_with_one_of_hostlist() and
rcptlist_with_addr_is_local() into one with hardly adding complexity
I'd actually say that the overall complexity decreased.
Have a look at the comment for split_rcpts() in route.c
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Fri, 22 Oct 2010 11:56:47 -0300 |
parents | 08114f7dcc23 |
children |
rev | line source |
---|---|
meillo@0 | 1 AM_CFLAGS=@CFLAGS@ @GLIB_CFLAGS@ -D_GNU_SOURCE |
meillo@0 | 2 |
meillo@209 | 3 noinst_LIBRARIES=libmd5.a |
meillo@0 | 4 noinst_PROGRAMS=hmactest |
meillo@0 | 5 |
meillo@0 | 6 hmactest_SOURCES=\ |
meillo@0 | 7 md5.h\ |
meillo@209 | 8 md5.c\ |
meillo@0 | 9 hmac_md5.h\ |
meillo@0 | 10 hmac_md5.c\ |
meillo@0 | 11 hmactest.c |
meillo@0 | 12 |
meillo@209 | 13 libmd5_a_SOURCES=\ |
meillo@0 | 14 md5.h\ |
meillo@209 | 15 md5.c\ |
meillo@0 | 16 hmac_md5.h\ |
meillo@209 | 17 hmac_md5.c |