summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2014-06-02 14:48:33 +0000
committerRoy Marples <roy@marples.name>2014-06-02 14:48:33 +0000
commit3ed12ab824919fda7cfae98b6779841e8651984e (patch)
treeb9ed0e502741515f1c216a489a7e468835445bfb /Makefile
parentdecaba353a0eb82531431eda011a5a4f7ec6f30e (diff)
downloaddhcpcd-3ed12ab824919fda7cfae98b6779841e8651984e.tar.xz
Implement Stable Private Addresses for SLAAC as per RFC7217.
Add a SHA256 implementation by Collin Percival if one in libc/libmd not found.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b68ec718..2eb46b2b 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ VPATH= . ./crypt
SRCS+= auth.c
CPPFLAGS+= -I./crypt
-CRYPT_SRCS= hmac_md5.c ${MD5_SRC}
+CRYPT_SRCS= hmac_md5.c ${MD5_SRC} ${SHA256_SRC}
OBJS+= ${SRCS:.c=.o} ${COMPAT_SRCS:.c=.o} ${CRYPT_SRCS:.c=.o}