Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
e766a681
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e766a681
编写于
6月 09, 1999
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Some pre-POSIX systems don't have unistd.h (but e.g. lib.c).
Allow configuring the name of that header file.
上级
9e952fc8
变更
17
展开全部
隐藏空白更改
内联
并排
Showing
17 changed file
with
169 addition
and
154 deletion
+169
-154
Configure
Configure
+100
-93
crypto/bf/bf_opts.c
crypto/bf/bf_opts.c
+5
-6
crypto/bf/bfspeed.c
crypto/bf/bfspeed.c
+5
-6
crypto/cast/cast_spd.c
crypto/cast/cast_spd.c
+5
-6
crypto/cast/castopts.c
crypto/cast/castopts.c
+5
-6
crypto/des/des.c
crypto/des/des.c
+2
-1
crypto/des/des_locl.h
crypto/des/des_locl.h
+4
-3
crypto/des/des_opts.c
crypto/des/des_opts.c
+2
-1
crypto/des/destest.c
crypto/des/destest.c
+2
-1
crypto/des/read_pwd.c
crypto/des/read_pwd.c
+2
-1
crypto/des/speed.c
crypto/des/speed.c
+5
-6
crypto/idea/idea_spd.c
crypto/idea/idea_spd.c
+5
-6
crypto/opensslconf.h.in
crypto/opensslconf.h.in
+2
-0
crypto/rc2/rc2speed.c
crypto/rc2/rc2speed.c
+5
-6
crypto/rc4/rc4speed.c
crypto/rc4/rc4speed.c
+5
-6
crypto/rc5/rc5speed.c
crypto/rc5/rc5speed.c
+5
-6
e_os2.h
e_os2.h
+10
-0
未找到文件。
Configure
浏览文件 @
e766a681
此差异已折叠。
点击以展开。
crypto/bf/bf_opts.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
void
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/bf/bfspeed.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
int
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/cast/cast_spd.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
int
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/cast/castopts.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
void
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/des/des.c
浏览文件 @
e766a681
...
...
@@ -60,7 +60,8 @@
#include <stdlib.h>
#ifndef MSDOS
#ifndef VMS
#include <unistd.h>
#include <openssl/opensslconf.h>
#include OPENSSL_UNISTD
#else
/* VMS */
#ifdef __DECC
#include <unistd.h>
...
...
crypto/des/des_locl.h
浏览文件 @
e766a681
...
...
@@ -67,15 +67,16 @@
#include <stdio.h>
#include <stdlib.h>
#include <openssl/opensslconf.h>
#ifndef MSDOS
#if !defined(VMS) || defined(__DECC)
#include
<unistd.h>
#include
OPENSSL_UNISTD
#endif
#endif
#include <openssl/des.h>
#include <openssl/opensslconf.h>
#ifdef MSDOS
/* Visual C++ 2.1 (Windows NT/95) */
#include <stdlib.h>
#include <errno.h>
...
...
crypto/des/des_opts.c
浏览文件 @
e766a681
...
...
@@ -65,7 +65,8 @@
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD
#else
#include <io.h>
extern
void
exit
();
...
...
crypto/des/destest.c
浏览文件 @
e766a681
...
...
@@ -66,7 +66,8 @@
#include <stdlib.h>
#ifndef MSDOS
#if !defined(VMS) || defined(__DECC)
#include <unistd.h>
#include <openssl/opensslconf.h>
#include OPENSSL_UNISTD
#endif
/* VMS */
#else
#include <io.h>
...
...
crypto/des/read_pwd.c
浏览文件 @
e766a681
...
...
@@ -57,7 +57,8 @@
*/
#if !defined(MSDOS) && !defined(VMS) && !defined(WIN32)
#include <unistd.h>
#include <openssl/opensslconf.h>
#include OPENSSL_UNISTD
/* If unistd.h defines _POSIX_VERSION, we conclude that we
* are on a POSIX system and have sigaction and termios. */
#if defined(_POSIX_VERSION)
...
...
crypto/des/speed.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
int
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/idea/idea_spd.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
int
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/opensslconf.h.in
浏览文件 @
e766a681
...
...
@@ -10,6 +10,8 @@
#endif
#endif
#define OPENSSL_UNISTD <unistd.h>
#if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
#define IDEA_INT unsigned int
#endif
...
...
crypto/rc2/rc2speed.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
int
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/rc4/rc4speed.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
int
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
crypto/rc5/rc5speed.c
浏览文件 @
e766a681
...
...
@@ -64,12 +64,11 @@
#endif
#include <stdio.h>
#ifndef MSDOS
#include <unistd.h>
#else
#include <io.h>
extern
int
exit
();
#endif
#include <openssl/e_os2.h>
#include OPENSSL_UNISTD_IO
OPENSSL_DECLARE_EXIT
#include <signal.h>
#ifndef _IRIX
#include <time.h>
...
...
e_os2.h
浏览文件 @
e766a681
...
...
@@ -7,6 +7,16 @@
extern
"C"
{
#endif
#include <openssl/opensslconf.h>
/* OPENSSL_UNISTD */
#ifdef MSDOS
# define OPENSSL_UNISTD_IO <io.h>
# define OPENSSL_DECLARE_EXIT extern void exit(int);
#else
# define OPENSSL_UNISTD_IO OPENSSL_UNISTD
# define OPENSSL_DECLARE_EXIT
/* declared in unistd.h */
#endif
/* Definitions of OPENSSL_GLOBAL and OPENSSL_EXTERN,
to define and declare certain global
symbols that, with some compilers under VMS, have to be defined and
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录