diff options
| author | Roy Marples <roy@marples.name> | 2016-10-07 09:42:38 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2016-10-07 09:42:38 +0000 |
| commit | e43c5c2b8aa14dd47da448beed12895d92ac8e64 (patch) | |
| tree | 24c132dc9448b2f23cd7e3122ca95f69307c436c /configure | |
| parent | 49586ac2d25d5013fd970009160c6a4341ac772a (diff) | |
| download | dhcpcd-e43c5c2b8aa14dd47da448beed12895d92ac8e64.tar.xz | |
Fix build system to make import correctly for authentication.
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -462,10 +462,11 @@ if [ -z "$INET6" -o "$INET6" = yes ]; then fi fi if [ -z "$AUTH" -o "$AUTH" = yes ]; then - echo "Enabling Authentiaction" + echo "Enabling Authentication" echo "CPPFLAGS+= -DAUTH" >>$CONFIG_MK - echo "AUTH_SRCS= auth.c crypt/hmac_md5.c" >>$CONFIG_MK - echo "AUTH_SRCS+= \${MD5_SRC} \${SHA256_SRC}" >>$CONFIG_MK + echo "SRCS+= auth.c" >>$CONFIG_MK + echo "CRYPT_SRCS+= crypt/hmac_md5.c" >>$CONFIG_MK + echo "CRYPT_SRCS+= \${MD5_SRC} \${SHA256_SRC}" >>$CONFIG_MK fi echo "Using compiler .. $CC" |
