First step in removing ssl support...
I removed the source/blender/sign dir from both autoconf and the old makefiles. If someone could update the projectfiles and the other build systems then we can nuke that directory. Kent
This commit is contained in:
@@ -186,7 +186,6 @@ endif
|
||||
PULIB += $(OCGDIR)/blender/deflate/$(DEBUG_DIR)libdeflate.a
|
||||
PULIB += $(OCGDIR)/blender/encrypt/$(DEBUG_DIR)libencrypt.a
|
||||
PULIB += $(OCGDIR)/blender/decrypt/$(DEBUG_DIR)libdecrypt.a
|
||||
PULIB += $(OCGDIR)/blender/sign/$(DEBUG_DIR)libsign.a
|
||||
PULIB += $(OCGDIR)/blender/verify/$(DEBUG_DIR)libverify.a
|
||||
PULIB += $(OCGDIR)/blender/writeblenfile/$(DEBUG_DIR)libwriteblenfile.a
|
||||
PULIB += $(OCGDIR)/blender/writestreamglue/$(DEBUG_DIR)libwritestreamglue.a
|
||||
|
@@ -34,7 +34,7 @@
|
||||
include nan_definitions.mk
|
||||
|
||||
DIRS = blenloader
|
||||
DIRS += deflate inflate encrypt decrypt sign verify
|
||||
DIRS += deflate inflate encrypt decrypt verify
|
||||
DIRS += writestreamglue readstreamglue writeblenfile readblenfile
|
||||
DIRS += avi imbuf img render radiosity blenlib blenkernel blenpluginapi
|
||||
DIRS += bpython makesdna src renderconverter
|
||||
|
@@ -42,7 +42,6 @@
|
||||
#include "BLO_writeblenfile.h"
|
||||
#include "BLO_deflate.h"
|
||||
#include "BLO_encrypt.h"
|
||||
#include "BLO_sign.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
@@ -140,11 +139,7 @@ writeStreamGlue(
|
||||
(*streamGlue)->streamBufferCount,
|
||||
streamGlueHeader);
|
||||
break;
|
||||
case SIGN:
|
||||
err = BLO_sign((*streamGlue)->streamBuffer,
|
||||
(*streamGlue)->streamBufferCount,
|
||||
streamGlueHeader);
|
||||
break;
|
||||
case SIGN:
|
||||
case WRITEBLENFILE:
|
||||
err = BLO_writeblenfile((*streamGlue)->streamBuffer,
|
||||
(*streamGlue)->streamBufferCount,
|
||||
|
@@ -58,7 +58,6 @@ CPPFLAGS += -I../../blenloader
|
||||
|
||||
CPPFLAGS += -I../../deflate
|
||||
CPPFLAGS += -I../../encrypt
|
||||
CPPFLAGS += -I../../sign
|
||||
|
||||
CPPFLAGS += -I$(NAN_OPENSSL)/include
|
||||
|
||||
|
Reference in New Issue
Block a user