Stage two of removing ssl support.
I've modified things so it nolonger uses the stuff in blender/source/blender/verify This should be working for both the old Makefiles and the autoconf stuff. People working with other build systems please update them, both blender/source/blender/verify and sign will be going away soon. (Next step is to get rid of blender/intern/keymaker) Kent
This commit is contained in:
@@ -46,7 +46,6 @@
|
||||
#include "BLO_readfile.h"
|
||||
#include "BLO_inflate.h"
|
||||
#include "BLO_decrypt.h"
|
||||
#include "BLO_verify.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
@@ -179,12 +178,6 @@ readStreamGlue(
|
||||
(*control)->process = BLO_decrypt_process;
|
||||
(*control)->end = BLO_decrypt_end;
|
||||
break;
|
||||
case VERIFY:
|
||||
case SIGN:
|
||||
(*control)->begin = BLO_verify_begin;
|
||||
(*control)->process = BLO_verify_process;
|
||||
(*control)->end = BLO_verify_end;
|
||||
break;
|
||||
default:
|
||||
err = BRS_SETFUNCTION(BRS_READSTREAMGLUE) |
|
||||
BRS_SETSPECERR(BRS_UNKNOWN);
|
||||
|
Reference in New Issue
Block a user