编译libkml-1.3.0报错:minizip/crypt.h:没有那个文件或目录

完整的报错信息如下:/root/libkml-1.3.0/src/kml/base/contrib/minizip/unzip.c:183:10: 致命错误:minizip/crypt.h:没有那个文件或目录
 #include <minizip/crypt.h>
          ^~~~~~~~~~~~~~~~~
编译中断。

原因分析:yum install minizip-devel,如果安装的是minizip-devel-1.2.7-21.el7_9.aarch64,则不存在这个问题。如果安装的是minizip-devel-1.2.11-18.ky10.aarch64,则/usr/include/minizip路径下缺失crypt.h。

解决办法,新建一个crypt.h,输入以下内容,然后复制到usr/include/minizip路径下

/* crypt.h -- base code for crypt/uncrypt ZIPfileVersion 1.01e, February 12th, 2005Copyright (C) 1998-2005 Gilles VollantThis code is a modified version of crypting code in Infozip distributionThe encryption/decryption parts of this source code (as opposed to thenon-echoing password parts) were originally written in Europe.  Thewhole source package can be freely distributed, including from the USA.(Prior to January 2000, re-export from the US was a violation of US law.)This encryption code is a direct transcription of the algorithm fromRoger Schlafly, described by Phil Katz in the file appnote.txt.  Thisfile (appnote.txt) is distributed with the PKZIP program (even in theversion without encryption capabilities).If you don't need crypting in your application, just define symbolsNOCRYPT and NOUNCRYPT.This code support the "Traditional PKWARE Encryption".The new AES encryption added on Zip format by Winzip (see the pagehttp://www.winzip.com/aes_info.htm ) and PKWare PKZip 5.x StrongEncryption is not supported.
*/#define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))/************************************************************************ Return the next byte in the pseudo-random sequence*/
static int decrypt_byte(unsigned long* pkeys, const z_crc_t* pcrc_32_tab)
{unsigned temp;  /* POTENTIAL BUG:  temp*(temp^1) may overflow in an* unpredictable manner on 16-bit systems; not a problem* with any known compiler so far, though */temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
}/************************************************************************ Update the encryption keys with the next byte of plain text*/
static int update_keys(unsigned long* pkeys,const z_crc_t* pcrc_32_tab,int c)
{(*(pkeys+0)) = CRC32((*(pkeys+0)), c);(*(pkeys+1)) += (*(pkeys+0)) & 0xff;(*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1;{register int keyshift = (int)((*(pkeys+1)) >> 24);(*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);}return c;
}/************************************************************************ Initialize the encryption keys and the random header according to* the given password.*/
static void init_keys(const char* passwd,unsigned long* pkeys,const z_crc_t* pcrc_32_tab)
{*(pkeys+0) = 305419896L;*(pkeys+1) = 591751049L;*(pkeys+2) = 878082192L;while (*passwd != '\0') {update_keys(pkeys,pcrc_32_tab,(int)*passwd);passwd++;}
}#define zdecode(pkeys,pcrc_32_tab,c) \(update_keys(pkeys,pcrc_32_tab,c ^= decrypt_byte(pkeys,pcrc_32_tab)))#define zencode(pkeys,pcrc_32_tab,c,t) \(t=decrypt_byte(pkeys,pcrc_32_tab), update_keys(pkeys,pcrc_32_tab,c), t^(c))#ifdef INCLUDECRYPTINGCODE_IFCRYPTALLOWED#define RAND_HEAD_LEN  12/* "last resort" source for second part of crypt seed pattern */
#  ifndef ZCR_SEED2
#    define ZCR_SEED2 3141592654UL     /* use PI as default pattern */
#  endifstatic int crypthead(const char* passwd,      /* password string */unsigned char* buf,      /* where to write header */int bufSize,unsigned long* pkeys,const z_crc_t* pcrc_32_tab,unsigned long crcForCrypting)
{int n;                       /* index in random header */int t;                       /* temporary */int c;                       /* random byte */unsigned char header[RAND_HEAD_LEN-2]; /* random header */static unsigned calls = 0;   /* ensure different random header each time */if (bufSize<RAND_HEAD_LEN)return 0;/* First generate RAND_HEAD_LEN-2 random bytes. We encrypt the* output of rand() to get less predictability, since rand() is* often poorly implemented.*/if (++calls == 1){srand((unsigned)(time(NULL) ^ ZCR_SEED2));}init_keys(passwd, pkeys, pcrc_32_tab);for (n = 0; n < RAND_HEAD_LEN-2; n++){c = (rand() >> 7) & 0xff;header[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, c, t);}/* Encrypt random header (last two bytes is high word of crc) */init_keys(passwd, pkeys, pcrc_32_tab);for (n = 0; n < RAND_HEAD_LEN-2; n++){buf[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, header[n], t);}buf[n++] = (unsigned char)zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 16) & 0xff, t);buf[n++] = (unsigned char)zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 24) & 0xff, t);return n;
}#endif

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/753649.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【R3F】13. 碰撞反馈 impulse

点击反馈 注册点击事件 import React, { useRef } from react import { Debug, Physics, RigidBody } from "@react-three/rapier" const cube = useRef() const cubeJump = () => {cube.current.applyImpulse({ x: 0, y: 2, z: 0 })cube.current.applyTorqueImpu…

c++希尔排序

希尔排序&#xff08;Shell Sort&#xff09;是一种插入排序的改进版本&#xff0c;它是非稳定排序算法。希尔排序的基本思想是将待排序的元素分成若干个小组&#xff0c;对每组进行插入排序&#xff0c;然后逐步减小增量&#xff0c;继续按组进行插入排序操作&#xff0c;直至…

2024.03.18作业

封装一个动物的基类&#xff0c;类中有私有成员&#xff1a;姓名&#xff0c;颜色&#xff0c;指针成员年纪 再封装一个狗类&#xff0c;共有继承于动物类&#xff0c;自己拓展的私有成员有&#xff1a;指针成员腿的个数&#xff0c;共有成员函数&#xff1a;叫 要求&#xf…

PyTorch学习笔记之激活函数篇(四)

4、 Leaky ReLU 函数 4.1 公式 Leaky ReLU函数的公式&#xff1a; f ( x ) { x , x > 0 λ x , x < 0 , λ ∈ ( 0 , 1 ) f(x) \begin{cases} x&,x>0 \\ \lambda x&,x<0,\lambda \in(0,1) \end{cases} f(x){xλx​,x>0,x<0,λ∈(0,1)​ Leakly R…

JavaScript做一个贪吃蛇小游戏,无需网络直接玩。

用JavaScript做一个贪吃蛇小游戏&#xff0c;无需网络 > 打开即可玩。 html代码&#xff1a; <!DOCTYPE html> <html lang"zh"> <head><meta charset"UTF-8"><title>Title</title><style>#game{width: 344p…

Mysql 死锁案例4-delete 相邻记录导致死锁

死锁复现 CREATE TABLE t (id int(11) NOT NULL,c int(11) DEFAULT NULL,d int(11) DEFAULT NULL,PRIMARY KEY (id),KEY c (c) ) ENGINEInnoDB DEFAULT CHARSETutf8;/*Data for the table t */insert into t(id,c,d) values (0,0,0),(5,5,5),(10,10,10),(15,15,15) 事务1事…

第二十三章 Web 网关的配置基础知识

文章目录 第二十三章 Web 网关的配置基础知识Web 网关配置和日志文件自动路由到IRIS 的文件类型从 IRIS 提供静态文件表示字符编码 启用服务文件选项配置 Web 服务器以允许 IRIS 提供静态文件从 Web 服务器提供静态文件在高可用性解决方案的硬件负载均衡器上启用粘性会话启用脚…

“先干后看”式循环

题目&#xff1a;计算 &#xff0c;直到最后一项小于 。 注意题目要求&#xff1a;计算到最后一项小于 。也就是这一项是要参与到计算中的&#xff0c;计算完这一项才能触发循环停止条件。 这种先运算后判断的情况很对do-while循环的胃口。 do就是做嘛&#xff0c;while就是…

代码随想录算法训练营第二十七天(二十六填休息) | 39. 组合总和、40、组合总和 II、131. 分割回文串

代码随想录算法训练营第二十七天&#xff08;二十六填休息&#xff09; | 39. 组合总和、40、组合总和 II、131. 分割回文串 39. 组合总和题目解法 40、组合总和 II题目解法 131. 分割回文串题目解法substr()用法 感悟 39. 组合总和 题目 解法 初始解法&#xff1a;出现重复组…

Faust勒索病毒:了解最新变种[nicetomeetyou@onionmail.org].faust,以及如何保护您的数据

导言&#xff1a; 在一个快节奏的数字世界中&#xff0c;我们经常忽视数据安全的重要性。然而&#xff0c;最新的勒索病毒——[nicetomeetyouonionmail.org].faust、[support2022cock.li].faust、[tsai.shenmailfence.com].faust 、[Encrypteddmailfence.com].faust、[Deciphe…

哪些业务行为是否属于数据出境?

国家互联网办公室出台的《数据出境安全评估申报指南&#xff08;第一版&#xff09;》明确了“数据出境活动”的定义&#xff0c;即包括三种情况&#xff1a; &#xff08;一&#xff09;数据处理者将在境内运营中收集和产生的数据传 输、存储至境外&#xff1b; &#xff08…

Vue打包问题汇总:legacy、runtime.js

问题一&#xff1a;Vue3.x的版本中build后dist文件中出现legacy的js文件 解决办法是添加兼容的浏览器 package.json "browserslist": ["> 1%","last 2 versions","not dead","not ie 11" ]参考 Vue3.x的版本中build后…

Java学习笔记18——深入学习字符串

任何语言&#xff0c;编写的所有应用&#xff0c;大概都会用到大量字符串&#xff0c;以及对字符串进行处理&#xff0c;Java语言中&#xff0c;对与字符串的处理和Python等语言中不同。昨天学习JDBC内容&#xff0c;编写的一个类中比较两个字符串变量值&#xff0c;没有注意到…

.NET高级面试指南专题十八【 外观模式模式介绍,提供了简化的接口,隐藏系统的复杂性】

介绍&#xff1a; 外观模式是一种结构设计模式&#xff0c;它提供了一个统一的接口&#xff0c;用于访问子系统中的一组接口。外观模式定义了一个高层接口&#xff0c;使得子系统更容易使用。 原理&#xff1a; 外观类&#xff08;Facade Class&#xff09;&#xff1a;提供了一…

如何用Python搭建聊天室

项目实战&#xff08;服务器端&#xff09; 1.服务器类 首先需要一个聊天服务器&#xff0c;这里继承asyncore的dispatcher类来实现&#xff0c;代码如下 class ChatServer(dispatcher):"""聊天服务器"""def __init__(self, port):dispatcher…

使用verilog设计有限状态机实现的跳一跳游戏及其testbench仿真测试

设计跳一跳游戏的有限状态机可以分为以下几个主要步骤: 确定状态及状态转移条件: 确定游戏中可能存在的状态,如等待开始、准备跳跃、跳跃中、检查落地等。 确定不同状态之间的转移条件,例如何时从等待开始状态转移到准备跳跃状态,如何触发跳跃动作,跳跃是否成功等。 定…

可视化场景(5):生产监控,比摄像头好用多了。

hello&#xff0c;我是贝格前端工场&#xff0c;本期分享可视化大屏在生产监控场景的应用&#xff0c;如需要定制&#xff0c;可以与我们联络&#xff0c;开始了。 实时监控 可视化大屏可以实时展示生产线上的各种关键指标和数据&#xff0c;如生产速度、设备状态、产量、质量…

html密码访问单页自定义跳转页面源码

内容目录 一、详细介绍二、效果展示1.部分代码2.效果图展示 三、学习资料下载 一、详细介绍 密码访问单页自定义跳转页面&#xff0c;修改了的密码访问单页&#xff0c;添加了js自定义密码跳转页面。需要正确输入密码才能跳转目标网址。 二、效果展示 1.部分代码 代码如下&…

亚马逊、速卖通如何实现批量注册自动养号?

亚马逊和速卖通作为全球领先的跨境电商平台&#xff0c;其账号对于卖家而言具有重要的商业价值。随着跨境电商行业的蓬勃发展&#xff0c;越来越多的人对亚马逊、速卖通账号的需求日益增长&#xff0c;这也催生了批量注册和自动养号的需求。 跨境智星作为一款集成了批量注册账号…

JAVA基础 数组,字符串与正则表达式

数组 数组的概念 将相同类型的数据按一定顺序排列构成的大小确定的集合 数组元素类型可以为基本数据类型&#xff0c;也可以为引用类型 Java语言内存分配 栈内存&#xff1a;基本数据类型的变量或者引用类型的变量&#xff0c;超出作用域将自动释放 堆内存&#xff1a;存…