svn commit: r281807 - head/usr.sbin/wpa

Rui Paulo rpaulo at FreeBSD.org
Tue Apr 21 02:00:38 UTC 2015


Author: rpaulo
Date: Tue Apr 21 02:00:37 2015
New Revision: 281807
URL: https://svnweb.freebsd.org/changeset/base/281807

Log:
  Fix wpa/hostapd build without OpenSSL.

Modified:
  head/usr.sbin/wpa/Makefile.crypto

Modified: head/usr.sbin/wpa/Makefile.crypto
==============================================================================
--- head/usr.sbin/wpa/Makefile.crypto	Tue Apr 21 01:45:11 2015	(r281806)
+++ head/usr.sbin/wpa/Makefile.crypto	Tue Apr 21 02:00:37 2015	(r281807)
@@ -53,7 +53,8 @@ SRCS+=	tls_openssl.c
 .endif
 
 .if defined(CONFIG_INTERNAL_AES)
-SRCS+=	aes-internal.c \
+SRCS+=	aes-unwrap.c aes-wrap.c \
+	aes-internal.c \
 	aes-internal-dec.c \
 	aes-internal-enc.c
 .endif
@@ -92,7 +93,7 @@ SRCS+=	md4-internal.c
 .endif
 
 .if defined(CONFIG_INTERNAL_MD5)
-SRCS+=	md5-internal.c
+SRCS+=	md5.c md5-internal.c
 .endif
 
 .if defined(NEED_FIPS186_2_PRF)


More information about the svn-src-all mailing list