diff options
Diffstat (limited to 'src/lib/libcrypto/util/pl/VC-16.pl')
-rw-r--r-- | src/lib/libcrypto/util/pl/VC-16.pl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/util/pl/VC-16.pl b/src/lib/libcrypto/util/pl/VC-16.pl index a6e6c0241c..a5079d4ca7 100644 --- a/src/lib/libcrypto/util/pl/VC-16.pl +++ b/src/lib/libcrypto/util/pl/VC-16.pl | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/usr/bin/perl | 1 | #!/usr/local/bin/perl |
2 | # VCw16lib.pl - the file for Visual C++ 1.52b for windows, static libraries | 2 | # VCw16lib.pl - the file for Visual C++ 1.52b for windows, static libraries |
3 | # | 3 | # |
4 | 4 | ||
@@ -84,8 +84,8 @@ $lfile=''; | |||
84 | $asm='ml /Cp /c /Cx'; | 84 | $asm='ml /Cp /c /Cx'; |
85 | $afile='/Fo'; | 85 | $afile='/Fo'; |
86 | 86 | ||
87 | $bn_mulw_obj=''; | 87 | $bn_asm_obj=''; |
88 | $bn_mulw_src=''; | 88 | $bn_asm_src=''; |
89 | $des_enc_obj=''; | 89 | $des_enc_obj=''; |
90 | $des_enc_src=''; | 90 | $des_enc_src=''; |
91 | $bf_enc_obj=''; | 91 | $bf_enc_obj=''; |
@@ -95,13 +95,13 @@ if (!$no_asm) | |||
95 | { | 95 | { |
96 | if ($asmbits == 32) | 96 | if ($asmbits == 32) |
97 | { | 97 | { |
98 | $bn_mulw_obj='crypto\bn\asm\x86w32.obj'; | 98 | $bn_asm_obj='crypto\bn\asm\x86w32.obj'; |
99 | $bn_mulw_src='crypto\bn\asm\x86w32.asm'; | 99 | $bn_asm_src='crypto\bn\asm\x86w32.asm'; |
100 | } | 100 | } |
101 | else | 101 | else |
102 | { | 102 | { |
103 | $bn_mulw_obj='crypto\bn\asm\x86w16.obj'; | 103 | $bn_asm_obj='crypto\bn\asm\x86w16.obj'; |
104 | $bn_mulw_src='crypto\bn\asm\x86w16.asm'; | 104 | $bn_asm_src='crypto\bn\asm\x86w16.asm'; |
105 | } | 105 | } |
106 | } | 106 | } |
107 | 107 | ||