Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
2a4a0a34
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看板
提交
2a4a0a34
编写于
5月 15, 1999
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
e_os* corrections.
上级
64a3b11b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
46 addition
and
1 deletion
+46
-1
Makefile.org
Makefile.org
+6
-1
e_os2.h
e_os2.h
+40
-0
未找到文件。
Makefile.org
浏览文件 @
2a4a0a34
...
...
@@ -171,7 +171,7 @@ BASENAME= openssl
NAME
=
$(BASENAME)
-
$(VERSION)
TARFILE
=
$(NAME)
.tar
WTARFILE
=
$(NAME)
-win
.tar
EXHEADER
=
e_os.h
EXHEADER
=
e_os.h
e_os2.h
HEADER
=
e_os.h
all
:
Makefile.ssl
...
...
@@ -318,6 +318,11 @@ install: all
@
-mkdir
-p
$(INSTALL_PREFIX)$(OPENSSLDIR)
/certs 2>/dev/null
@
-mkdir
-p
$(INSTALL_PREFIX)$(OPENSSLDIR)
/private 2>/dev/null
@
-mkdir
-p
$(INSTALL_PREFIX)$(OPENSSLDIR)
/lib 2>/dev/null
@
for
i
in
$(EXHEADER)
;
\
do
\
(
cp
$$
i
$(INSTALL_PREFIX)$(INSTALLTOP)
/include/openssl/
$$
i
;
\
chmod
644
$(INSTALL_PREFIX)$(INSTALLTOP)
/include/openssl/
$$
i
)
;
\
done
;
@
for
i
in
$(DIRS)
;
\
do
\
(
cd
$$
i
;
echo
"installing
$$
i..."
;
\
...
...
e_os2.h
0 → 100644
浏览文件 @
2a4a0a34
/* e_os2.h */
#ifndef HEADER_E_OS2_H
#define HEADER_E_OS2_H
#ifdef __cplusplus
extern
"C"
{
#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
declared explicitely with globaldef and globalref. On other OS:es,
these macros are defined with something sensible. */
#if defined(VMS) && !defined(__DECC)
# define OPENSSL_EXTERN globalref
# define OPENSSL_GLOBAL globaldef
#else
# define OPENSSL_EXTERN extern
# define OPENSSL_GLOBAL
#endif
/* The above definitions should be used throughout the library,
* but as long as EXTERN and GLOBAL occur there, we keep the following
* definitions, too: */
#if defined(VMS) && !defined(__DECC)
# define EXTERN globalref
# define GLOBAL globaldef
#else
# define EXTERN extern
# define GLOBAL
#endif
#ifdef __cplusplus
}
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录