Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
436a376b
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
9
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看板
提交
436a376b
编写于
5月 28, 1999
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Some assembler-related clean-ups.
上级
2e36cc41
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
52 addition
and
9 deletion
+52
-9
Configure
Configure
+37
-0
INSTALL
INSTALL
+5
-0
crypto/bf/Makefile.ssl
crypto/bf/Makefile.ssl
+1
-1
crypto/bn/Makefile.ssl
crypto/bn/Makefile.ssl
+1
-1
crypto/cast/Makefile.ssl
crypto/cast/Makefile.ssl
+1
-1
crypto/des/Makefile.ssl
crypto/des/Makefile.ssl
+1
-1
crypto/md5/Makefile.ssl
crypto/md5/Makefile.ssl
+1
-1
crypto/md5/md5_locl.h
crypto/md5/md5_locl.h
+1
-0
crypto/rc4/Makefile.ssl
crypto/rc4/Makefile.ssl
+1
-1
crypto/rc5/Makefile.ssl
crypto/rc5/Makefile.ssl
+1
-1
crypto/ripemd/Makefile.ssl
crypto/ripemd/Makefile.ssl
+1
-1
crypto/sha/Makefile.ssl
crypto/sha/Makefile.ssl
+1
-1
未找到文件。
Configure
浏览文件 @
436a376b
...
...
@@ -367,6 +367,14 @@ foreach (@ARGV)
$options .= $_ unless $_ eq $target;
}
if ($target eq "TABLE") {
foreach $target (sort keys %table) {
print_table_entry($target);
}
print "\n";
exit 0;
}
&usage if (!defined($table{$target}));
my $IsWindows=scalar grep /^$target$/,@WinTargets;
...
...
@@ -757,3 +765,32 @@ sub dofile
rename($f,"$ff.bak") || die "unable to rename $f\n" if -e $f;
rename("$ff.new",$f) || die "unable to rename $ff.new\n";
}
sub print_table_entry
{
my $target = shift;
(my $cc,my $cflags,my $thread_cflag,my $lflags,my $bn_ops,
my $bn_obj,my $des_obj,my $bf_obj,
$md5_obj,$sha1_obj,my $cast_obj,my $rc4_obj,$rmd160_obj,my $rc5_obj)=
split(/\s*:\s*/,$table{$target} . ":" x 20 , -1);
print <<EOF
*** $target
\$cc = $cc
\$cflags = $cflags
\$thread_cflag = $thread_cflag
\$lflags = $lflags
\$bn_ops = $bn_ops
\$bn_obj = $bn_obj
\$des_obj = $des_obj
\$bf_obj = $bf_obj
\$md5_obj = $md5_obj
\$sha1_obj = $sha1_obj
\$cast_obj = $cast_obj
\$rc4_obj = $rc4_obj
\$rmd160_obj = $rmd160_obj
\$rc5_obj = $rc5_obj
EOF
}
INSTALL
浏览文件 @
436a376b
...
...
@@ -119,6 +119,11 @@
Include the output of "./config -t" and the OpenSSL version
number in your message.
[If you encounter assembler error messages, try the "no-asm"
configuration option as an immediate fix. Note that on Solaris x86
(not on Sparcs!) you may have to install the GNU assembler to use
OpenSSL assembler code -- /usr/ccs/bin/as won't do.]
3. After a successful build, the libraries should be tested. Run:
$ make test
...
...
crypto/bf/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -100,7 +100,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
rm
-f
asm/bx86unix.cpp
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/bn/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -156,7 +156,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o
*
/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff bn_asm.s
rm
-f
asm/co86unix.cpp asm/bn86unix.cpp
*
.o
*
/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff bn_asm.s
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/cast/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -103,7 +103,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
rm
-f
asm/cx86unix.cpp
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/des/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -132,7 +132,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
rm
-f
asm/dx86unix.cpp asm/yx86unix.cpp
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/md5/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -109,7 +109,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
rm
-f
asm/mx86unix.cpp
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/md5/md5_locl.h
浏览文件 @
436a376b
...
...
@@ -58,6 +58,7 @@
#include <stdlib.h>
#include <string.h>
#include <openssl/opensslconf.h>
#include <openssl/md5.h>
#ifndef MD5_LONG_LOG2
...
...
crypto/rc4/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -102,7 +102,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff asm/
*
.o
rm
-f
asm/rx86unix.cpp
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff asm/
*
.o
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/rc5/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -100,7 +100,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
rm
-f
asm/r586unix.cpp
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/ripemd/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -98,7 +98,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
rm
-f
asm/rm86unix.cpp
*
.o asm/
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
crypto/sha/Makefile.ssl
浏览文件 @
436a376b
...
...
@@ -97,7 +97,7 @@ dclean:
mv
-f
Makefile.new
$(MAKEFILE)
clean
:
rm
-f
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff asm/
*
.o
rm
-f
asm/sx86unix.cpp
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff asm/
*
.o
# DO NOT DELETE THIS LINE -- make depend depends on it.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录