diff options
Diffstat (limited to 'src/lib/libcrypto/util/mk1mf.pl')
-rw-r--r-- | src/lib/libcrypto/util/mk1mf.pl | 936 |
1 files changed, 936 insertions, 0 deletions
diff --git a/src/lib/libcrypto/util/mk1mf.pl b/src/lib/libcrypto/util/mk1mf.pl new file mode 100644 index 0000000000..b4bc0457e5 --- /dev/null +++ b/src/lib/libcrypto/util/mk1mf.pl | |||
@@ -0,0 +1,936 @@ | |||
1 | #!/usr/local/bin/perl | ||
2 | # A bit of an evil hack but it post processes the file ../MINFO which | ||
3 | # is generated by `make files` in the top directory. | ||
4 | # This script outputs one mega makefile that has no shell stuff or any | ||
5 | # funny stuff | ||
6 | # | ||
7 | |||
8 | $INSTALLTOP="/usr/local/ssl"; | ||
9 | $OPTIONS=""; | ||
10 | $ssl_version=""; | ||
11 | $banner="\t\@echo Building OpenSSL"; | ||
12 | |||
13 | open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n"; | ||
14 | while(<IN>) { | ||
15 | $ssl_version=$1 if (/^VERSION=(.*)$/); | ||
16 | $OPTIONS=$1 if (/^OPTIONS=(.*)$/); | ||
17 | $INSTALLTOP=$1 if (/^INSTALLTOP=(.*$)/); | ||
18 | } | ||
19 | close(IN); | ||
20 | |||
21 | die "Makefile.ssl is not the toplevel Makefile!\n" if $ssl_version eq ""; | ||
22 | |||
23 | $infile="MINFO"; | ||
24 | |||
25 | %ops=( | ||
26 | "VC-WIN32", "Microsoft Visual C++ [4-6] - Windows NT or 9X", | ||
27 | "VC-CE", "Microsoft eMbedded Visual C++ 3.0 - Windows CE ONLY", | ||
28 | "VC-NT", "Microsoft Visual C++ [4-6] - Windows NT ONLY", | ||
29 | "VC-W31-16", "Microsoft Visual C++ 1.52 - Windows 3.1 - 286", | ||
30 | "VC-WIN16", "Alias for VC-W31-32", | ||
31 | "VC-W31-32", "Microsoft Visual C++ 1.52 - Windows 3.1 - 386+", | ||
32 | "VC-MSDOS","Microsoft Visual C++ 1.52 - MSDOS", | ||
33 | "Mingw32", "GNU C++ - Windows NT or 9x", | ||
34 | "Mingw32-files", "Create files with DOS copy ...", | ||
35 | "BC-NT", "Borland C++ 4.5 - Windows NT", | ||
36 | "BC-W31", "Borland C++ 4.5 - Windows 3.1 - PROBABLY NOT WORKING", | ||
37 | "BC-MSDOS","Borland C++ 4.5 - MSDOS", | ||
38 | "linux-elf","Linux elf", | ||
39 | "ultrix-mips","DEC mips ultrix", | ||
40 | "FreeBSD","FreeBSD distribution", | ||
41 | "OS2-EMX", "EMX GCC OS/2", | ||
42 | "default","cc under unix", | ||
43 | ); | ||
44 | |||
45 | $platform=""; | ||
46 | foreach (@ARGV) | ||
47 | { | ||
48 | if (!&read_options && !defined($ops{$_})) | ||
49 | { | ||
50 | print STDERR "unknown option - $_\n"; | ||
51 | print STDERR "usage: perl mk1mf.pl [options] [system]\n"; | ||
52 | print STDERR "\nwhere [system] can be one of the following\n"; | ||
53 | foreach $i (sort keys %ops) | ||
54 | { printf STDERR "\t%-10s\t%s\n",$i,$ops{$i}; } | ||
55 | print STDERR <<"EOF"; | ||
56 | and [options] can be one of | ||
57 | no-md2 no-md4 no-md5 no-sha no-mdc2 - Skip this digest | ||
58 | no-ripemd | ||
59 | no-rc2 no-rc4 no-rc5 no-idea no-des - Skip this symetric cipher | ||
60 | no-bf no-cast no-aes | ||
61 | no-rsa no-dsa no-dh - Skip this public key cipher | ||
62 | no-ssl2 no-ssl3 - Skip this version of SSL | ||
63 | just-ssl - remove all non-ssl keys/digest | ||
64 | no-asm - No x86 asm | ||
65 | no-krb5 - No KRB5 | ||
66 | no-ec - No EC | ||
67 | no-engine - No engine | ||
68 | no-hw - No hw | ||
69 | nasm - Use NASM for x86 asm | ||
70 | gaswin - Use GNU as with Mingw32 | ||
71 | no-socks - No socket code | ||
72 | no-err - No error strings | ||
73 | dll/shlib - Build shared libraries (MS) | ||
74 | debug - Debug build | ||
75 | profile - Profiling build | ||
76 | gcc - Use Gcc (unix) | ||
77 | |||
78 | Values that can be set | ||
79 | TMP=tmpdir OUT=outdir SRC=srcdir BIN=binpath INC=header-outdir CC=C-compiler | ||
80 | |||
81 | -L<ex_lib_path> -l<ex_lib> - extra library flags (unix) | ||
82 | -<ex_cc_flags> - extra 'cc' flags, | ||
83 | added (MS), or replace (unix) | ||
84 | EOF | ||
85 | exit(1); | ||
86 | } | ||
87 | $platform=$_; | ||
88 | } | ||
89 | foreach (grep(!/^$/, split(/ /, $OPTIONS))) | ||
90 | { | ||
91 | print STDERR "unknown option - $_\n" if !&read_options; | ||
92 | } | ||
93 | |||
94 | $no_mdc2=1 if ($no_des); | ||
95 | |||
96 | $no_ssl3=1 if ($no_md5 || $no_sha); | ||
97 | $no_ssl3=1 if ($no_rsa && $no_dh); | ||
98 | |||
99 | $no_ssl2=1 if ($no_md5); | ||
100 | $no_ssl2=1 if ($no_rsa); | ||
101 | |||
102 | $out_def="out"; | ||
103 | $inc_def="outinc"; | ||
104 | $tmp_def="tmp"; | ||
105 | |||
106 | $mkdir="-mkdir"; | ||
107 | |||
108 | ($ssl,$crypto)=("ssl","crypto"); | ||
109 | $ranlib="echo ranlib"; | ||
110 | |||
111 | $cc=(defined($VARS{'CC'}))?$VARS{'CC'}:'cc'; | ||
112 | $src_dir=(defined($VARS{'SRC'}))?$VARS{'SRC'}:'.'; | ||
113 | $bin_dir=(defined($VARS{'BIN'}))?$VARS{'BIN'}:''; | ||
114 | |||
115 | # $bin_dir.=$o causes a core dump on my sparc :-( | ||
116 | |||
117 | $NT=0; | ||
118 | |||
119 | push(@INC,"util/pl","pl"); | ||
120 | if ($platform eq "VC-MSDOS") | ||
121 | { | ||
122 | $asmbits=16; | ||
123 | $msdos=1; | ||
124 | require 'VC-16.pl'; | ||
125 | } | ||
126 | elsif ($platform eq "VC-W31-16") | ||
127 | { | ||
128 | $asmbits=16; | ||
129 | $msdos=1; $win16=1; | ||
130 | require 'VC-16.pl'; | ||
131 | } | ||
132 | elsif (($platform eq "VC-W31-32") || ($platform eq "VC-WIN16")) | ||
133 | { | ||
134 | $asmbits=32; | ||
135 | $msdos=1; $win16=1; | ||
136 | require 'VC-16.pl'; | ||
137 | } | ||
138 | elsif (($platform eq "VC-WIN32") || ($platform eq "VC-NT")) | ||
139 | { | ||
140 | $NT = 1 if $platform eq "VC-NT"; | ||
141 | require 'VC-32.pl'; | ||
142 | } | ||
143 | elsif ($platform eq "VC-CE") | ||
144 | { | ||
145 | require 'VC-CE.pl'; | ||
146 | } | ||
147 | elsif ($platform eq "Mingw32") | ||
148 | { | ||
149 | require 'Mingw32.pl'; | ||
150 | } | ||
151 | elsif ($platform eq "Mingw32-files") | ||
152 | { | ||
153 | require 'Mingw32f.pl'; | ||
154 | } | ||
155 | elsif ($platform eq "BC-NT") | ||
156 | { | ||
157 | $bc=1; | ||
158 | require 'BC-32.pl'; | ||
159 | } | ||
160 | elsif ($platform eq "BC-W31") | ||
161 | { | ||
162 | $bc=1; | ||
163 | $msdos=1; $w16=1; | ||
164 | require 'BC-16.pl'; | ||
165 | } | ||
166 | elsif ($platform eq "BC-Q16") | ||
167 | { | ||
168 | $msdos=1; $w16=1; $shlib=0; $qw=1; | ||
169 | require 'BC-16.pl'; | ||
170 | } | ||
171 | elsif ($platform eq "BC-MSDOS") | ||
172 | { | ||
173 | $asmbits=16; | ||
174 | $msdos=1; | ||
175 | require 'BC-16.pl'; | ||
176 | } | ||
177 | elsif ($platform eq "FreeBSD") | ||
178 | { | ||
179 | require 'unix.pl'; | ||
180 | $cflags='-DTERMIO -D_ANSI_SOURCE -O2 -fomit-frame-pointer'; | ||
181 | } | ||
182 | elsif ($platform eq "linux-elf") | ||
183 | { | ||
184 | require "unix.pl"; | ||
185 | require "linux.pl"; | ||
186 | $unix=1; | ||
187 | } | ||
188 | elsif ($platform eq "ultrix-mips") | ||
189 | { | ||
190 | require "unix.pl"; | ||
191 | require "ultrix.pl"; | ||
192 | $unix=1; | ||
193 | } | ||
194 | elsif ($platform eq "OS2-EMX") | ||
195 | { | ||
196 | $wc=1; | ||
197 | require 'OS2-EMX.pl'; | ||
198 | } | ||
199 | else | ||
200 | { | ||
201 | require "unix.pl"; | ||
202 | |||
203 | $unix=1; | ||
204 | $cflags.=' -DTERMIO'; | ||
205 | } | ||
206 | |||
207 | $out_dir=(defined($VARS{'OUT'}))?$VARS{'OUT'}:$out_def.($debug?".dbg":""); | ||
208 | $tmp_dir=(defined($VARS{'TMP'}))?$VARS{'TMP'}:$tmp_def.($debug?".dbg":""); | ||
209 | $inc_dir=(defined($VARS{'INC'}))?$VARS{'INC'}:$inc_def; | ||
210 | |||
211 | $bin_dir=$bin_dir.$o unless ((substr($bin_dir,-1,1) eq $o) || ($bin_dir eq '')); | ||
212 | |||
213 | $cflags.=" -DOPENSSL_NO_IDEA" if $no_idea; | ||
214 | $cflags.=" -DOPENSSL_NO_AES" if $no_aes; | ||
215 | $cflags.=" -DOPENSSL_NO_RC2" if $no_rc2; | ||
216 | $cflags.=" -DOPENSSL_NO_RC4" if $no_rc4; | ||
217 | $cflags.=" -DOPENSSL_NO_RC5" if $no_rc5; | ||
218 | $cflags.=" -DOPENSSL_NO_MD2" if $no_md2; | ||
219 | $cflags.=" -DOPENSSL_NO_MD4" if $no_md4; | ||
220 | $cflags.=" -DOPENSSL_NO_MD5" if $no_md5; | ||
221 | $cflags.=" -DOPENSSL_NO_SHA" if $no_sha; | ||
222 | $cflags.=" -DOPENSSL_NO_SHA1" if $no_sha1; | ||
223 | $cflags.=" -DOPENSSL_NO_RIPEMD" if $no_ripemd; | ||
224 | $cflags.=" -DOPENSSL_NO_MDC2" if $no_mdc2; | ||
225 | $cflags.=" -DOPENSSL_NO_BF" if $no_bf; | ||
226 | $cflags.=" -DOPENSSL_NO_CAST" if $no_cast; | ||
227 | $cflags.=" -DOPENSSL_NO_DES" if $no_des; | ||
228 | $cflags.=" -DOPENSSL_NO_RSA" if $no_rsa; | ||
229 | $cflags.=" -DOPENSSL_NO_DSA" if $no_dsa; | ||
230 | $cflags.=" -DOPENSSL_NO_DH" if $no_dh; | ||
231 | $cflags.=" -DOPENSSL_NO_SOCK" if $no_sock; | ||
232 | $cflags.=" -DOPENSSL_NO_SSL2" if $no_ssl2; | ||
233 | $cflags.=" -DOPENSSL_NO_SSL3" if $no_ssl3; | ||
234 | $cflags.=" -DOPENSSL_NO_ERR" if $no_err; | ||
235 | $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5; | ||
236 | $cflags.=" -DOPENSSL_NO_EC" if $no_ec; | ||
237 | $cflags.=" -DOPENSSL_NO_ENGINE" if $no_engine; | ||
238 | $cflags.=" -DOPENSSL_NO_HW" if $no_hw; | ||
239 | #$cflags.=" -DRSAref" if $rsaref ne ""; | ||
240 | |||
241 | ## if ($unix) | ||
242 | ## { $cflags="$c_flags" if ($c_flags ne ""); } | ||
243 | ##else | ||
244 | { $cflags="$c_flags$cflags" if ($c_flags ne ""); } | ||
245 | |||
246 | $ex_libs="$l_flags$ex_libs" if ($l_flags ne ""); | ||
247 | |||
248 | %shlib_ex_cflags=("SSL" => " -DOPENSSL_BUILD_SHLIBSSL", | ||
249 | "CRYPTO" => " -DOPENSSL_BUILD_SHLIBCRYPTO"); | ||
250 | |||
251 | if ($msdos) | ||
252 | { | ||
253 | $banner ="\t\@echo Make sure you have run 'perl Configure $platform' in the\n"; | ||
254 | $banner.="\t\@echo top level directory, if you don't have perl, you will\n"; | ||
255 | $banner.="\t\@echo need to probably edit crypto/bn/bn.h, check the\n"; | ||
256 | $banner.="\t\@echo documentation for details.\n"; | ||
257 | } | ||
258 | |||
259 | # have to do this to allow $(CC) under unix | ||
260 | $link="$bin_dir$link" if ($link !~ /^\$/); | ||
261 | |||
262 | $INSTALLTOP =~ s|/|$o|g; | ||
263 | |||
264 | $defs= <<"EOF"; | ||
265 | # This makefile has been automatically generated from the OpenSSL distribution. | ||
266 | # This single makefile will build the complete OpenSSL distribution and | ||
267 | # by default leave the 'intertesting' output files in .${o}out and the stuff | ||
268 | # that needs deleting in .${o}tmp. | ||
269 | # The file was generated by running 'make makefile.one', which | ||
270 | # does a 'make files', which writes all the environment variables from all | ||
271 | # the makefiles to the file call MINFO. This file is used by | ||
272 | # util${o}mk1mf.pl to generate makefile.one. | ||
273 | # The 'makefile per directory' system suites me when developing this | ||
274 | # library and also so I can 'distribute' indervidual library sections. | ||
275 | # The one monster makefile better suits building in non-unix | ||
276 | # environments. | ||
277 | |||
278 | EOF | ||
279 | |||
280 | $defs .= $preamble if defined $preamble; | ||
281 | |||
282 | if ($platform eq "VC-CE") | ||
283 | { | ||
284 | $defs.= <<"EOF"; | ||
285 | !INCLUDE <\$(WCECOMPAT)/wcedefs.mak> | ||
286 | |||
287 | EOF | ||
288 | } | ||
289 | |||
290 | $defs.= <<"EOF"; | ||
291 | INSTALLTOP=$INSTALLTOP | ||
292 | |||
293 | # Set your compiler options | ||
294 | PLATFORM=$platform | ||
295 | CC=$bin_dir${cc} | ||
296 | CFLAG=$cflags | ||
297 | APP_CFLAG=$app_cflag | ||
298 | LIB_CFLAG=$lib_cflag | ||
299 | SHLIB_CFLAG=$shl_cflag | ||
300 | APP_EX_OBJ=$app_ex_obj | ||
301 | SHLIB_EX_OBJ=$shlib_ex_obj | ||
302 | # add extra libraries to this define, for solaris -lsocket -lnsl would | ||
303 | # be added | ||
304 | EX_LIBS=$ex_libs | ||
305 | |||
306 | # The OpenSSL directory | ||
307 | SRC_D=$src_dir | ||
308 | |||
309 | LINK=$link | ||
310 | LFLAGS=$lflags | ||
311 | |||
312 | BN_ASM_OBJ=$bn_asm_obj | ||
313 | BN_ASM_SRC=$bn_asm_src | ||
314 | BNCO_ASM_OBJ=$bnco_asm_obj | ||
315 | BNCO_ASM_SRC=$bnco_asm_src | ||
316 | DES_ENC_OBJ=$des_enc_obj | ||
317 | DES_ENC_SRC=$des_enc_src | ||
318 | BF_ENC_OBJ=$bf_enc_obj | ||
319 | BF_ENC_SRC=$bf_enc_src | ||
320 | CAST_ENC_OBJ=$cast_enc_obj | ||
321 | CAST_ENC_SRC=$cast_enc_src | ||
322 | RC4_ENC_OBJ=$rc4_enc_obj | ||
323 | RC4_ENC_SRC=$rc4_enc_src | ||
324 | RC5_ENC_OBJ=$rc5_enc_obj | ||
325 | RC5_ENC_SRC=$rc5_enc_src | ||
326 | MD5_ASM_OBJ=$md5_asm_obj | ||
327 | MD5_ASM_SRC=$md5_asm_src | ||
328 | SHA1_ASM_OBJ=$sha1_asm_obj | ||
329 | SHA1_ASM_SRC=$sha1_asm_src | ||
330 | RMD160_ASM_OBJ=$rmd160_asm_obj | ||
331 | RMD160_ASM_SRC=$rmd160_asm_src | ||
332 | |||
333 | # The output directory for everything intersting | ||
334 | OUT_D=$out_dir | ||
335 | # The output directory for all the temporary muck | ||
336 | TMP_D=$tmp_dir | ||
337 | # The output directory for the header files | ||
338 | INC_D=$inc_dir | ||
339 | INCO_D=$inc_dir${o}openssl | ||
340 | |||
341 | CP=$cp | ||
342 | RM=$rm | ||
343 | RANLIB=$ranlib | ||
344 | MKDIR=$mkdir | ||
345 | MKLIB=$bin_dir$mklib | ||
346 | MLFLAGS=$mlflags | ||
347 | ASM=$bin_dir$asm | ||
348 | |||
349 | ###################################################### | ||
350 | # You should not need to touch anything below this point | ||
351 | ###################################################### | ||
352 | |||
353 | E_EXE=openssl | ||
354 | SSL=$ssl | ||
355 | CRYPTO=$crypto | ||
356 | |||
357 | # BIN_D - Binary output directory | ||
358 | # TEST_D - Binary test file output directory | ||
359 | # LIB_D - library output directory | ||
360 | # Note: if you change these point to different directories then uncomment out | ||
361 | # the lines around the 'NB' comment below. | ||
362 | # | ||
363 | BIN_D=\$(OUT_D) | ||
364 | TEST_D=\$(OUT_D) | ||
365 | LIB_D=\$(OUT_D) | ||
366 | |||
367 | # INCL_D - local library directory | ||
368 | # OBJ_D - temp object file directory | ||
369 | OBJ_D=\$(TMP_D) | ||
370 | INCL_D=\$(TMP_D) | ||
371 | |||
372 | O_SSL= \$(LIB_D)$o$plib\$(SSL)$shlibp | ||
373 | O_CRYPTO= \$(LIB_D)$o$plib\$(CRYPTO)$shlibp | ||
374 | SO_SSL= $plib\$(SSL)$so_shlibp | ||
375 | SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp | ||
376 | L_SSL= \$(LIB_D)$o$plib\$(SSL)$libp | ||
377 | L_CRYPTO= \$(LIB_D)$o$plib\$(CRYPTO)$libp | ||
378 | |||
379 | L_LIBS= \$(L_SSL) \$(L_CRYPTO) | ||
380 | |||
381 | ###################################################### | ||
382 | # Don't touch anything below this point | ||
383 | ###################################################### | ||
384 | |||
385 | INC=-I\$(INC_D) -I\$(INCL_D) | ||
386 | APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG) | ||
387 | LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) | ||
388 | SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG) | ||
389 | LIBS_DEP=\$(O_CRYPTO) \$(O_SSL) | ||
390 | |||
391 | ############################################# | ||
392 | EOF | ||
393 | |||
394 | $rules=<<"EOF"; | ||
395 | all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers lib exe | ||
396 | |||
397 | banner: | ||
398 | $banner | ||
399 | |||
400 | \$(TMP_D): | ||
401 | \$(MKDIR) \$(TMP_D) | ||
402 | # NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different | ||
403 | #\$(BIN_D): | ||
404 | # \$(MKDIR) \$(BIN_D) | ||
405 | # | ||
406 | #\$(TEST_D): | ||
407 | # \$(MKDIR) \$(TEST_D) | ||
408 | |||
409 | \$(LIB_D): | ||
410 | \$(MKDIR) \$(LIB_D) | ||
411 | |||
412 | \$(INCO_D): \$(INC_D) | ||
413 | \$(MKDIR) \$(INCO_D) | ||
414 | |||
415 | \$(INC_D): | ||
416 | \$(MKDIR) \$(INC_D) | ||
417 | |||
418 | headers: \$(HEADER) \$(EXHEADER) | ||
419 | @ | ||
420 | |||
421 | lib: \$(LIBS_DEP) | ||
422 | |||
423 | exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep | ||
424 | |||
425 | install: | ||
426 | \$(MKDIR) \$(INSTALLTOP) | ||
427 | \$(MKDIR) \$(INSTALLTOP)${o}bin | ||
428 | \$(MKDIR) \$(INSTALLTOP)${o}include | ||
429 | \$(MKDIR) \$(INSTALLTOP)${o}include${o}openssl | ||
430 | \$(MKDIR) \$(INSTALLTOP)${o}lib | ||
431 | \$(CP) \$(INCO_D)${o}*.\[ch\] \$(INSTALLTOP)${o}include${o}openssl | ||
432 | \$(CP) \$(BIN_D)$o\$(E_EXE)$exep \$(INSTALLTOP)${o}bin | ||
433 | \$(CP) \$(O_SSL) \$(INSTALLTOP)${o}lib | ||
434 | \$(CP) \$(O_CRYPTO) \$(INSTALLTOP)${o}lib | ||
435 | |||
436 | clean: | ||
437 | \$(RM) \$(TMP_D)$o*.* | ||
438 | |||
439 | vclean: | ||
440 | \$(RM) \$(TMP_D)$o*.* | ||
441 | \$(RM) \$(OUT_D)$o*.* | ||
442 | |||
443 | EOF | ||
444 | |||
445 | my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform"; | ||
446 | $platform_cpp_symbol =~ s/-/_/g; | ||
447 | if (open(IN,"crypto/buildinf.h")) | ||
448 | { | ||
449 | # Remove entry for this platform in existing file buildinf.h. | ||
450 | |||
451 | my $old_buildinf_h = ""; | ||
452 | while (<IN>) | ||
453 | { | ||
454 | if (/^\#ifdef $platform_cpp_symbol$/) | ||
455 | { | ||
456 | while (<IN>) { last if (/^\#endif/); } | ||
457 | } | ||
458 | else | ||
459 | { | ||
460 | $old_buildinf_h .= $_; | ||
461 | } | ||
462 | } | ||
463 | close(IN); | ||
464 | |||
465 | open(OUT,">crypto/buildinf.h") || die "Can't open buildinf.h"; | ||
466 | print OUT $old_buildinf_h; | ||
467 | close(OUT); | ||
468 | } | ||
469 | |||
470 | open (OUT,">>crypto/buildinf.h") || die "Can't open buildinf.h"; | ||
471 | printf OUT <<EOF; | ||
472 | #ifdef $platform_cpp_symbol | ||
473 | /* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */ | ||
474 | #define CFLAGS "$cc $cflags" | ||
475 | #define PLATFORM "$platform" | ||
476 | EOF | ||
477 | printf OUT " #define DATE \"%s\"\n", scalar gmtime(); | ||
478 | printf OUT "#endif\n"; | ||
479 | close(OUT); | ||
480 | |||
481 | ############################################# | ||
482 | # We parse in input file and 'store' info for later printing. | ||
483 | open(IN,"<$infile") || die "unable to open $infile:$!\n"; | ||
484 | $_=<IN>; | ||
485 | for (;;) | ||
486 | { | ||
487 | chop; | ||
488 | |||
489 | ($key,$val)=/^([^=]+)=(.*)/; | ||
490 | if ($key eq "RELATIVE_DIRECTORY") | ||
491 | { | ||
492 | if ($lib ne "") | ||
493 | { | ||
494 | $uc=$lib; | ||
495 | $uc =~ s/^lib(.*)\.a/$1/; | ||
496 | $uc =~ tr/a-z/A-Z/; | ||
497 | $lib_nam{$uc}=$uc; | ||
498 | $lib_obj{$uc}.=$libobj." "; | ||
499 | } | ||
500 | last if ($val eq "FINISHED"); | ||
501 | $lib=""; | ||
502 | $libobj=""; | ||
503 | $dir=$val; | ||
504 | } | ||
505 | |||
506 | if ($key eq "TEST") | ||
507 | { $test.=&var_add($dir,$val); } | ||
508 | |||
509 | if (($key eq "PROGS") || ($key eq "E_OBJ")) | ||
510 | { $e_exe.=&var_add($dir,$val); } | ||
511 | |||
512 | if ($key eq "LIB") | ||
513 | { | ||
514 | $lib=$val; | ||
515 | $lib =~ s/^.*\/([^\/]+)$/$1/; | ||
516 | } | ||
517 | |||
518 | if ($key eq "EXHEADER") | ||
519 | { $exheader.=&var_add($dir,$val); } | ||
520 | |||
521 | if ($key eq "HEADER") | ||
522 | { $header.=&var_add($dir,$val); } | ||
523 | |||
524 | if ($key eq "LIBOBJ") | ||
525 | { $libobj=&var_add($dir,$val); } | ||
526 | |||
527 | if (!($_=<IN>)) | ||
528 | { $_="RELATIVE_DIRECTORY=FINISHED\n"; } | ||
529 | } | ||
530 | close(IN); | ||
531 | |||
532 | # Strip of trailing ' ' | ||
533 | foreach (keys %lib_obj) { $lib_obj{$_}=&clean_up_ws($lib_obj{$_}); } | ||
534 | $test=&clean_up_ws($test); | ||
535 | $e_exe=&clean_up_ws($e_exe); | ||
536 | $exheader=&clean_up_ws($exheader); | ||
537 | $header=&clean_up_ws($header); | ||
538 | |||
539 | # First we strip the exheaders from the headers list | ||
540 | foreach (split(/\s+/,$exheader)){ $h{$_}=1; } | ||
541 | foreach (split(/\s+/,$header)) { $h.=$_." " unless $h{$_}; } | ||
542 | chop($h); $header=$h; | ||
543 | |||
544 | $defs.=&do_defs("HEADER",$header,"\$(INCL_D)",".h"); | ||
545 | $rules.=&do_copy_rule("\$(INCL_D)",$header,".h"); | ||
546 | |||
547 | $defs.=&do_defs("EXHEADER",$exheader,"\$(INCO_D)",".h"); | ||
548 | $rules.=&do_copy_rule("\$(INCO_D)",$exheader,".h"); | ||
549 | |||
550 | $defs.=&do_defs("T_OBJ",$test,"\$(OBJ_D)",$obj); | ||
551 | $rules.=&do_compile_rule("\$(OBJ_D)",$test,"\$(APP_CFLAGS)"); | ||
552 | |||
553 | $defs.=&do_defs("E_OBJ",$e_exe,"\$(OBJ_D)",$obj); | ||
554 | $rules.=&do_compile_rule("\$(OBJ_D)",$e_exe,'-DMONOLITH $(APP_CFLAGS)'); | ||
555 | |||
556 | foreach (values %lib_nam) | ||
557 | { | ||
558 | $lib_obj=$lib_obj{$_}; | ||
559 | local($slib)=$shlib; | ||
560 | |||
561 | if (($_ eq "SSL") && $no_ssl2 && $no_ssl3) | ||
562 | { | ||
563 | $rules.="\$(O_SSL):\n\n"; | ||
564 | next; | ||
565 | } | ||
566 | |||
567 | if (($bn_asm_obj ne "") && ($_ eq "CRYPTO")) | ||
568 | { | ||
569 | $lib_obj =~ s/\s\S*\/bn_asm\S*/ \$(BN_ASM_OBJ)/; | ||
570 | $rules.=&do_asm_rule($bn_asm_obj,$bn_asm_src); | ||
571 | } | ||
572 | if (($bnco_asm_obj ne "") && ($_ eq "CRYPTO")) | ||
573 | { | ||
574 | $lib_obj .= "\$(BNCO_ASM_OBJ)"; | ||
575 | $rules.=&do_asm_rule($bnco_asm_obj,$bnco_asm_src); | ||
576 | } | ||
577 | if (($des_enc_obj ne "") && ($_ eq "CRYPTO")) | ||
578 | { | ||
579 | $lib_obj =~ s/\s\S*des_enc\S*/ \$(DES_ENC_OBJ)/; | ||
580 | $lib_obj =~ s/\s\S*\/fcrypt_b\S*\s*/ /; | ||
581 | $rules.=&do_asm_rule($des_enc_obj,$des_enc_src); | ||
582 | } | ||
583 | if (($bf_enc_obj ne "") && ($_ eq "CRYPTO")) | ||
584 | { | ||
585 | $lib_obj =~ s/\s\S*\/bf_enc\S*/ \$(BF_ENC_OBJ)/; | ||
586 | $rules.=&do_asm_rule($bf_enc_obj,$bf_enc_src); | ||
587 | } | ||
588 | if (($cast_enc_obj ne "") && ($_ eq "CRYPTO")) | ||
589 | { | ||
590 | $lib_obj =~ s/(\s\S*\/c_enc\S*)/ \$(CAST_ENC_OBJ)/; | ||
591 | $rules.=&do_asm_rule($cast_enc_obj,$cast_enc_src); | ||
592 | } | ||
593 | if (($rc4_enc_obj ne "") && ($_ eq "CRYPTO")) | ||
594 | { | ||
595 | $lib_obj =~ s/\s\S*\/rc4_enc\S*/ \$(RC4_ENC_OBJ)/; | ||
596 | $rules.=&do_asm_rule($rc4_enc_obj,$rc4_enc_src); | ||
597 | } | ||
598 | if (($rc5_enc_obj ne "") && ($_ eq "CRYPTO")) | ||
599 | { | ||
600 | $lib_obj =~ s/\s\S*\/rc5_enc\S*/ \$(RC5_ENC_OBJ)/; | ||
601 | $rules.=&do_asm_rule($rc5_enc_obj,$rc5_enc_src); | ||
602 | } | ||
603 | if (($md5_asm_obj ne "") && ($_ eq "CRYPTO")) | ||
604 | { | ||
605 | $lib_obj =~ s/\s(\S*\/md5_dgst\S*)/ $1 \$(MD5_ASM_OBJ)/; | ||
606 | $rules.=&do_asm_rule($md5_asm_obj,$md5_asm_src); | ||
607 | } | ||
608 | if (($sha1_asm_obj ne "") && ($_ eq "CRYPTO")) | ||
609 | { | ||
610 | $lib_obj =~ s/\s(\S*\/sha1dgst\S*)/ $1 \$(SHA1_ASM_OBJ)/; | ||
611 | $rules.=&do_asm_rule($sha1_asm_obj,$sha1_asm_src); | ||
612 | } | ||
613 | if (($rmd160_asm_obj ne "") && ($_ eq "CRYPTO")) | ||
614 | { | ||
615 | $lib_obj =~ s/\s(\S*\/rmd_dgst\S*)/ $1 \$(RMD160_ASM_OBJ)/; | ||
616 | $rules.=&do_asm_rule($rmd160_asm_obj,$rmd160_asm_src); | ||
617 | } | ||
618 | $defs.=&do_defs(${_}."OBJ",$lib_obj,"\$(OBJ_D)",$obj); | ||
619 | $lib=($slib)?" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)"; | ||
620 | $rules.=&do_compile_rule("\$(OBJ_D)",$lib_obj{$_},$lib); | ||
621 | } | ||
622 | |||
623 | $defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep); | ||
624 | foreach (split(/\s+/,$test)) | ||
625 | { | ||
626 | $t=&bname($_); | ||
627 | $tt="\$(OBJ_D)${o}$t${obj}"; | ||
628 | $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)"); | ||
629 | } | ||
630 | |||
631 | $rules.= &do_lib_rule("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)"); | ||
632 | $rules.= &do_lib_rule("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)"); | ||
633 | |||
634 | $rules.=&do_link_rule("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)"); | ||
635 | |||
636 | print $defs; | ||
637 | |||
638 | if ($platform eq "linux-elf") { | ||
639 | print <<"EOF"; | ||
640 | # Generate perlasm output files | ||
641 | %.cpp: | ||
642 | (cd \$(\@D)/..; PERL=perl make -f Makefile.ssl asm/\$(\@F)) | ||
643 | EOF | ||
644 | } | ||
645 | print "###################################################################\n"; | ||
646 | print $rules; | ||
647 | |||
648 | ############################################### | ||
649 | # strip off any trailing .[och] and append the relative directory | ||
650 | # also remembering to do nothing if we are in one of the dropped | ||
651 | # directories | ||
652 | sub var_add | ||
653 | { | ||
654 | local($dir,$val)=@_; | ||
655 | local(@a,$_,$ret); | ||
656 | |||
657 | return("") if $no_engine && $dir =~ /\/engine/; | ||
658 | return("") if $no_hw && $dir =~ /\/hw/; | ||
659 | return("") if $no_idea && $dir =~ /\/idea/; | ||
660 | return("") if $no_aes && $dir =~ /\/aes/; | ||
661 | return("") if $no_rc2 && $dir =~ /\/rc2/; | ||
662 | return("") if $no_rc4 && $dir =~ /\/rc4/; | ||
663 | return("") if $no_rc5 && $dir =~ /\/rc5/; | ||
664 | return("") if $no_rsa && $dir =~ /\/rsa/; | ||
665 | return("") if $no_rsa && $dir =~ /^rsaref/; | ||
666 | return("") if $no_dsa && $dir =~ /\/dsa/; | ||
667 | return("") if $no_dh && $dir =~ /\/dh/; | ||
668 | return("") if $no_ec && $dir =~ /\/ec/; | ||
669 | if ($no_des && $dir =~ /\/des/) | ||
670 | { | ||
671 | if ($val =~ /read_pwd/) | ||
672 | { return("$dir/read_pwd "); } | ||
673 | else | ||
674 | { return(""); } | ||
675 | } | ||
676 | return("") if $no_mdc2 && $dir =~ /\/mdc2/; | ||
677 | return("") if $no_sock && $dir =~ /\/proxy/; | ||
678 | return("") if $no_bf && $dir =~ /\/bf/; | ||
679 | return("") if $no_cast && $dir =~ /\/cast/; | ||
680 | |||
681 | $val =~ s/^\s*(.*)\s*$/$1/; | ||
682 | @a=split(/\s+/,$val); | ||
683 | grep(s/\.[och]$//,@a); | ||
684 | |||
685 | @a=grep(!/^e_.*_3d$/,@a) if $no_des; | ||
686 | @a=grep(!/^e_.*_d$/,@a) if $no_des; | ||
687 | @a=grep(!/^e_.*_ae$/,@a) if $no_idea; | ||
688 | @a=grep(!/^e_.*_i$/,@a) if $no_aes; | ||
689 | @a=grep(!/^e_.*_r2$/,@a) if $no_rc2; | ||
690 | @a=grep(!/^e_.*_r5$/,@a) if $no_rc5; | ||
691 | @a=grep(!/^e_.*_bf$/,@a) if $no_bf; | ||
692 | @a=grep(!/^e_.*_c$/,@a) if $no_cast; | ||
693 | @a=grep(!/^e_rc4$/,@a) if $no_rc4; | ||
694 | |||
695 | @a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2; | ||
696 | @a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3; | ||
697 | |||
698 | @a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock; | ||
699 | |||
700 | @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2; | ||
701 | @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4; | ||
702 | @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5; | ||
703 | @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd; | ||
704 | |||
705 | @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa; | ||
706 | @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa; | ||
707 | @a=grep(!/(^pem_seal$)/,@a) if $no_rsa; | ||
708 | |||
709 | @a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa; | ||
710 | @a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa; | ||
711 | |||
712 | @a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4; | ||
713 | |||
714 | @a=grep(!/_dhp$/,@a) if $no_dh; | ||
715 | |||
716 | @a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha; | ||
717 | @a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1; | ||
718 | @a=grep(!/_mdc2$/,@a) if $no_mdc2; | ||
719 | |||
720 | @a=grep(!/^engine$/,@a) if $no_engine; | ||
721 | @a=grep(!/^hw$/,@a) if $no_hw; | ||
722 | @a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa; | ||
723 | @a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa; | ||
724 | @a=grep(!/^gendsa$/,@a) if $no_sha1; | ||
725 | @a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh; | ||
726 | |||
727 | @a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1; | ||
728 | |||
729 | grep($_="$dir/$_",@a); | ||
730 | @a=grep(!/(^|\/)s_/,@a) if $no_sock; | ||
731 | @a=grep(!/(^|\/)bio_sock/,@a) if $no_sock; | ||
732 | $ret=join(' ',@a)." "; | ||
733 | return($ret); | ||
734 | } | ||
735 | |||
736 | # change things so that each 'token' is only separated by one space | ||
737 | sub clean_up_ws | ||
738 | { | ||
739 | local($w)=@_; | ||
740 | |||
741 | $w =~ s/^\s*(.*)\s*$/$1/; | ||
742 | $w =~ s/\s+/ /g; | ||
743 | return($w); | ||
744 | } | ||
745 | |||
746 | sub do_defs | ||
747 | { | ||
748 | local($var,$files,$location,$postfix)=@_; | ||
749 | local($_,$ret,$pf); | ||
750 | local(*OUT,$tmp,$t); | ||
751 | |||
752 | $files =~ s/\//$o/g if $o ne '/'; | ||
753 | $ret="$var="; | ||
754 | $n=1; | ||
755 | $Vars{$var}.=""; | ||
756 | foreach (split(/ /,$files)) | ||
757 | { | ||
758 | $orig=$_; | ||
759 | $_=&bname($_) unless /^\$/; | ||
760 | if ($n++ == 2) | ||
761 | { | ||
762 | $n=0; | ||
763 | $ret.="\\\n\t"; | ||
764 | } | ||
765 | if (($_ =~ /bss_file/) && ($postfix eq ".h")) | ||
766 | { $pf=".c"; } | ||
767 | else { $pf=$postfix; } | ||
768 | if ($_ =~ /BN_ASM/) { $t="$_ "; } | ||
769 | elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; } | ||
770 | elsif ($_ =~ /DES_ENC/) { $t="$_ "; } | ||
771 | elsif ($_ =~ /BF_ENC/) { $t="$_ "; } | ||
772 | elsif ($_ =~ /CAST_ENC/){ $t="$_ "; } | ||
773 | elsif ($_ =~ /RC4_ENC/) { $t="$_ "; } | ||
774 | elsif ($_ =~ /RC5_ENC/) { $t="$_ "; } | ||
775 | elsif ($_ =~ /MD5_ASM/) { $t="$_ "; } | ||
776 | elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; } | ||
777 | elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; } | ||
778 | else { $t="$location${o}$_$pf "; } | ||
779 | |||
780 | $Vars{$var}.="$t "; | ||
781 | $ret.=$t; | ||
782 | } | ||
783 | chop($ret); | ||
784 | $ret.="\n\n"; | ||
785 | return($ret); | ||
786 | } | ||
787 | |||
788 | # return the name with the leading path removed | ||
789 | sub bname | ||
790 | { | ||
791 | local($ret)=@_; | ||
792 | $ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/; | ||
793 | return($ret); | ||
794 | } | ||
795 | |||
796 | |||
797 | ############################################################## | ||
798 | # do a rule for each file that says 'compile' to new direcory | ||
799 | # compile the files in '$files' into $to | ||
800 | sub do_compile_rule | ||
801 | { | ||
802 | local($to,$files,$ex)=@_; | ||
803 | local($ret,$_,$n); | ||
804 | |||
805 | $files =~ s/\//$o/g if $o ne '/'; | ||
806 | foreach (split(/\s+/,$files)) | ||
807 | { | ||
808 | $n=&bname($_); | ||
809 | $ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex) | ||
810 | } | ||
811 | return($ret); | ||
812 | } | ||
813 | |||
814 | ############################################################## | ||
815 | # do a rule for each file that says 'compile' to new direcory | ||
816 | sub cc_compile_target | ||
817 | { | ||
818 | local($target,$source,$ex_flags)=@_; | ||
819 | local($ret); | ||
820 | |||
821 | $ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/); | ||
822 | $target =~ s/\//$o/g if $o ne "/"; | ||
823 | $source =~ s/\//$o/g if $o ne "/"; | ||
824 | $ret ="$target: \$(SRC_D)$o$source\n\t"; | ||
825 | $ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n"; | ||
826 | return($ret); | ||
827 | } | ||
828 | |||
829 | ############################################################## | ||
830 | sub do_asm_rule | ||
831 | { | ||
832 | local($target,$src)=@_; | ||
833 | local($ret,@s,@t,$i); | ||
834 | |||
835 | $target =~ s/\//$o/g if $o ne "/"; | ||
836 | $src =~ s/\//$o/g if $o ne "/"; | ||
837 | |||
838 | @s=split(/\s+/,$src); | ||
839 | @t=split(/\s+/,$target); | ||
840 | |||
841 | for ($i=0; $i<=$#s; $i++) | ||
842 | { | ||
843 | $ret.="$t[$i]: $s[$i]\n"; | ||
844 | $ret.="\t\$(ASM) $afile$t[$i] \$(SRC_D)$o$s[$i]\n\n"; | ||
845 | } | ||
846 | return($ret); | ||
847 | } | ||
848 | |||
849 | sub do_shlib_rule | ||
850 | { | ||
851 | local($n,$def)=@_; | ||
852 | local($ret,$nn); | ||
853 | local($t); | ||
854 | |||
855 | ($nn=$n) =~ tr/a-z/A-Z/; | ||
856 | $ret.="$n.dll: \$(${nn}OBJ)\n"; | ||
857 | if ($vc && $w32) | ||
858 | { | ||
859 | $ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n \$(${nn}OBJ_F)\n<<\n"; | ||
860 | } | ||
861 | $ret.="\n"; | ||
862 | return($ret); | ||
863 | } | ||
864 | |||
865 | # do a rule for each file that says 'copy' to new direcory on change | ||
866 | sub do_copy_rule | ||
867 | { | ||
868 | local($to,$files,$p)=@_; | ||
869 | local($ret,$_,$n,$pp); | ||
870 | |||
871 | $files =~ s/\//$o/g if $o ne '/'; | ||
872 | foreach (split(/\s+/,$files)) | ||
873 | { | ||
874 | $n=&bname($_); | ||
875 | if ($n =~ /bss_file/) | ||
876 | { $pp=".c"; } | ||
877 | else { $pp=$p; } | ||
878 | $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \$(SRC_D)$o$_$pp $to${o}$n$pp\n\n"; | ||
879 | } | ||
880 | return($ret); | ||
881 | } | ||
882 | |||
883 | sub read_options | ||
884 | { | ||
885 | if (/^no-rc2$/) { $no_rc2=1; } | ||
886 | elsif (/^no-rc4$/) { $no_rc4=1; } | ||
887 | elsif (/^no-rc5$/) { $no_rc5=1; } | ||
888 | elsif (/^no-idea$/) { $no_idea=1; } | ||
889 | elsif (/^no-aes$/) { $no_aes=1; } | ||
890 | elsif (/^no-des$/) { $no_des=1; } | ||
891 | elsif (/^no-bf$/) { $no_bf=1; } | ||
892 | elsif (/^no-cast$/) { $no_cast=1; } | ||
893 | elsif (/^no-md2$/) { $no_md2=1; } | ||
894 | elsif (/^no-md4$/) { $no_md4=1; } | ||
895 | elsif (/^no-md5$/) { $no_md5=1; } | ||
896 | elsif (/^no-sha$/) { $no_sha=1; } | ||
897 | elsif (/^no-sha1$/) { $no_sha1=1; } | ||
898 | elsif (/^no-ripemd$/) { $no_ripemd=1; } | ||
899 | elsif (/^no-mdc2$/) { $no_mdc2=1; } | ||
900 | elsif (/^no-patents$/) { $no_rc2=$no_rc4=$no_rc5=$no_idea=$no_rsa=1; } | ||
901 | elsif (/^no-rsa$/) { $no_rsa=1; } | ||
902 | elsif (/^no-dsa$/) { $no_dsa=1; } | ||
903 | elsif (/^no-dh$/) { $no_dh=1; } | ||
904 | elsif (/^no-hmac$/) { $no_hmac=1; } | ||
905 | elsif (/^no-aes$/) { $no_aes=1; } | ||
906 | elsif (/^no-asm$/) { $no_asm=1; } | ||
907 | elsif (/^nasm$/) { $nasm=1; } | ||
908 | elsif (/^gaswin$/) { $gaswin=1; } | ||
909 | elsif (/^no-ssl2$/) { $no_ssl2=1; } | ||
910 | elsif (/^no-ssl3$/) { $no_ssl3=1; } | ||
911 | elsif (/^no-err$/) { $no_err=1; } | ||
912 | elsif (/^no-sock$/) { $no_sock=1; } | ||
913 | elsif (/^no-krb5$/) { $no_krb5=1; } | ||
914 | elsif (/^no-ec$/) { $no_ec=1; } | ||
915 | elsif (/^no-engine$/) { $no_engine=1; } | ||
916 | elsif (/^no-hw$/) { $no_hw=1; } | ||
917 | |||
918 | elsif (/^just-ssl$/) { $no_rc2=$no_idea=$no_des=$no_bf=$no_cast=1; | ||
919 | $no_md2=$no_sha=$no_mdc2=$no_dsa=$no_dh=1; | ||
920 | $no_ssl2=$no_err=$no_ripemd=$no_rc5=1; | ||
921 | $no_aes=1; } | ||
922 | |||
923 | elsif (/^rsaref$/) { } | ||
924 | elsif (/^gcc$/) { $gcc=1; } | ||
925 | elsif (/^debug$/) { $debug=1; } | ||
926 | elsif (/^profile$/) { $profile=1; } | ||
927 | elsif (/^shlib$/) { $shlib=1; } | ||
928 | elsif (/^dll$/) { $shlib=1; } | ||
929 | elsif (/^shared$/) { } # We just need to ignore it for now... | ||
930 | elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; } | ||
931 | elsif (/^-[lL].*$/) { $l_flags.="$_ "; } | ||
932 | elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/) | ||
933 | { $c_flags.="$_ "; } | ||
934 | else { return(0); } | ||
935 | return(1); | ||
936 | } | ||