summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2016-10-07 09:42:38 +0000
committerRoy Marples <roy@marples.name>2016-10-07 09:42:38 +0000
commite43c5c2b8aa14dd47da448beed12895d92ac8e64 (patch)
tree24c132dc9448b2f23cd7e3122ca95f69307c436c /configure
parent49586ac2d25d5013fd970009160c6a4341ac772a (diff)
downloaddhcpcd-e43c5c2b8aa14dd47da448beed12895d92ac8e64.tar.xz
Fix build system to make import correctly for authentication.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index 8f4f23fc..b47f91e1 100755
--- a/configure
+++ b/configure
@@ -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"