svn commit: r290178 - head/secure/lib/libcrypto/engines/libgost

Garrett Cooper ngie at FreeBSD.org
Fri Oct 30 05:33:40 UTC 2015


Author: ngie
Date: Fri Oct 30 05:33:38 2015
New Revision: 290178
URL: https://svnweb.freebsd.org/changeset/base/290178

Log:
  Fix GOST engine cipher linkage by adding e_gost_err.c to SRCS so it
  picks up undefined symbols, like "ERR_load_GOST_strings"
  
  MFC after: 3 days
  PR: 184805
  Submitted by: Ivan IvanZhdanov <ivan.zhdanov at gmail.com>
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/secure/lib/libcrypto/engines/libgost/Makefile

Modified: head/secure/lib/libcrypto/engines/libgost/Makefile
==============================================================================
--- head/secure/lib/libcrypto/engines/libgost/Makefile	Fri Oct 30 03:28:00 2015	(r290177)
+++ head/secure/lib/libcrypto/engines/libgost/Makefile	Fri Oct 30 05:33:38 2015	(r290178)
@@ -3,6 +3,7 @@
 SHLIB_NAME?= libgost.so
 SRCS=	gost2001.c gost2001_keyx.c gost89.c gost94_keyx.c gost_ameth.c \
 	gost_asn1.c gost_crypt.c gost_ctl.c gost_eng.c gost_keywrap.c \
-	gost_md.c gost_params.c gost_pmeth.c gost_sign.c gosthash.c
+	gost_md.c gost_params.c gost_pmeth.c gost_sign.c gosthash.c \
+	e_gost_err.c
 
 .include <bsd.lib.mk>


More information about the svn-src-all mailing list