From bd3e8e965236d9b2e25231518f864c32a3d74674 Mon Sep 17 00:00:00 2001 From: Sebastian Leske Date: Thu, 2 Nov 2017 08:16:18 +0100 Subject: Fix:maptool:Remove option -5 (MD5 checksum) from maptool Remove option -5 from maptool, which calculates the MD5 checksum for the created binfile. The MD5 sum can also be calculated later, and removing it allows us to remove the dependency on OpenSSL (see trac 1350). --- navit/maptool/maptool.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'navit/maptool/maptool.h') diff --git a/navit/maptool/maptool.h b/navit/maptool/maptool.h index f1f45fff7..ce147b1a4 100644 --- a/navit/maptool/maptool.h +++ b/navit/maptool/maptool.h @@ -23,9 +23,6 @@ #include "attr.h" #include "geom.h" #include "types.h" -#ifdef HAVE_LIBCRYPTO -#include -#endif #define sq(x) ((double)(x)*(x)) @@ -404,8 +401,6 @@ void write_zipmember(struct zip_info *zip_info, char *name, int filelen, char *d void zip_write_index(struct zip_info *info); int zip_write_directory(struct zip_info *info); struct zip_info *zip_new(void); -void zip_set_md5(struct zip_info *info, int on); -int zip_get_md5(struct zip_info *info, unsigned char *out); void zip_set_zip64(struct zip_info *info, int on); void zip_set_compression_level(struct zip_info *info, int level); void zip_set_maxnamelen(struct zip_info *info, int max); -- cgit v1.2.1