| OLD | NEW |
| 1 @echo off | 1 @echo off |
| 2 | 2 |
| 3 rem ======================================================================== | 3 rem ======================================================================== |
| 4 rem Batch file to automate building OpenSSL for NetWare. | 4 rem Batch file to automate building OpenSSL for NetWare. |
| 5 rem | 5 rem |
| 6 rem usage: | 6 rem usage: |
| 7 rem build [target] [debug opts] [assembly opts] [configure opts] | 7 rem build [target] [debug opts] [assembly opts] [configure opts] |
| 8 rem | 8 rem |
| 9 rem target - "netware-clib" - CLib NetWare build (WinSock Sockets) | 9 rem target - "netware-clib" - CLib NetWare build (WinSock Sockets) |
| 10 rem - "netware-clib-bsdsock" - CLib NetWare build (BSD Socket
s) | 10 rem - "netware-clib-bsdsock" - CLib NetWare build (BSD Socket
s) |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 cd ..\..\.. | 152 cd ..\..\.. |
| 153 | 153 |
| 154 echo MD5 | 154 echo MD5 |
| 155 cd crypto\md5\asm | 155 cd crypto\md5\asm |
| 156 perl md5-586.pl %ASM_MODE% > m5-nw.asm | 156 perl md5-586.pl %ASM_MODE% > m5-nw.asm |
| 157 cd ..\..\.. | 157 cd ..\..\.. |
| 158 | 158 |
| 159 echo SHA1 | 159 echo SHA1 |
| 160 cd crypto\sha\asm | 160 cd crypto\sha\asm |
| 161 perl sha1-586.pl %ASM_MODE% > s1-nw.asm | 161 perl sha1-586.pl %ASM_MODE% > s1-nw.asm |
| 162 perl sha256-586.pl %ASM_MODE% > sha256-nw.asm |
| 163 perl sha512-586.pl %ASM_MODE% > sha512-nw.asm |
| 162 cd ..\..\.. | 164 cd ..\..\.. |
| 163 | 165 |
| 164 echo RIPEMD160 | 166 echo RIPEMD160 |
| 165 cd crypto\ripemd\asm | 167 cd crypto\ripemd\asm |
| 166 perl rmd-586.pl %ASM_MODE% > rm-nw.asm | 168 perl rmd-586.pl %ASM_MODE% > rm-nw.asm |
| 167 cd ..\..\.. | 169 cd ..\..\.. |
| 168 | 170 |
| 169 echo RC5\32 | 171 echo RC5\32 |
| 170 cd crypto\rc5\asm | 172 cd crypto\rc5\asm |
| 171 perl rc5-586.pl %ASM_MODE% > r5-nw.asm | 173 perl rc5-586.pl %ASM_MODE% > r5-nw.asm |
| 172 cd ..\..\.. | 174 cd ..\..\.. |
| 173 | 175 |
| 176 echo WHIRLPOOL |
| 177 cd crypto\whrlpool\asm |
| 178 perl wp-mmx.pl %ASM_MODE% > wp-nw.asm |
| 179 cd ..\..\.. |
| 180 |
| 174 echo CPUID | 181 echo CPUID |
| 175 cd crypto | 182 cd crypto |
| 176 perl x86cpuid.pl %ASM_MODE% > x86cpuid-nw.asm | 183 perl x86cpuid.pl %ASM_MODE% > x86cpuid-nw.asm |
| 177 cd ..\ | 184 cd ..\ |
| 178 | 185 |
| 179 rem =============================================================== | 186 rem =============================================================== |
| 180 rem | 187 rem |
| 181 :do_config | 188 :do_config |
| 182 | 189 |
| 183 echo . | 190 echo . |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 echo . | 226 echo . |
| 220 echo . configure opts- all unrecognized arguments are passed to the | 227 echo . configure opts- all unrecognized arguments are passed to the |
| 221 echo . perl configure script | 228 echo . perl configure script |
| 222 echo . | 229 echo . |
| 223 echo . If no debug or assembly opts are specified the default is to build | 230 echo . If no debug or assembly opts are specified the default is to build |
| 224 echo . non-debug without assembly | 231 echo . non-debug without assembly |
| 225 echo . | 232 echo . |
| 226 | 233 |
| 227 | 234 |
| 228 :end | 235 :end |
| OLD | NEW |