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
8 $INSTALLTOP="/usr/local/ssl";
9 $OPENSSLDIR="/usr/local/ssl";
12 $banner="\t\@echo Building OpenSSL";
14 my $no_static_engine = 1;
16 local $zlib_opt = 0; # 0 = no zlib, 1 = static, 2 = dynamic
18 local $perl_asm = 0; # 1 to autobuild asm files from perl scripts
20 # Options to import from top level Makefile
23 VERSION
=> \
$ssl_version,
25 INSTALLTOP
=> \
$INSTALLTOP,
26 OPENSSLDIR
=> \
$OPENSSLDIR,
27 PLATFORM
=> \
$mf_platform,
29 DEPFLAG
=> \
$mf_depflag,
30 CPUID_OBJ
=> \
$mf_cpuid_asm,
31 BN_ASM
=> \
$mf_bn_asm,
32 DES_ENC
=> \
$mf_des_asm,
33 AES_ENC
=> \
$mf_aes_asm,
34 BF_ENC
=> \
$mf_bf_asm,
35 CAST_ENC
=> \
$mf_cast_asm,
36 RC4_ENC
=> \
$mf_rc4_asm,
37 RC5_ENC
=> \
$mf_rc5_asm,
38 MD5_ASM_OBJ
=> \
$mf_md5_asm,
39 SHA1_ASM_OBJ
=> \
$mf_sha_asm,
40 RMD160_ASM_OBJ
=> \
$mf_rmd_asm,
41 WP_ASM_OBJ
=> \
$mf_wp_asm,
42 CMLL_ENC
=> \
$mf_cm_asm
46 open(IN
,"<Makefile") || die "unable to open Makefile!\n";
48 my ($mf_opt, $mf_ref);
49 while (($mf_opt, $mf_ref) = each %mf_import) {
50 if (/^$mf_opt\s*=\s*(.*)$/) {
57 $debug = 1 if $mf_platform =~ /^debug-/;
59 die "Makefile is not the toplevel Makefile!\n" if $ssl_version eq "";
64 "VC-WIN32", "Microsoft Visual C++ [4-6] - Windows NT or 9X",
65 "VC-WIN64I", "Microsoft C/C++ - Win64/IA-64",
66 "VC-WIN64A", "Microsoft C/C++ - Win64/x64",
67 "VC-CE", "Microsoft eMbedded Visual C++ 3.0 - Windows CE ONLY",
68 "VC-NT", "Microsoft Visual C++ [4-6] - Windows NT ONLY",
69 "Mingw32", "GNU C++ - Windows NT or 9x",
70 "Mingw32-files", "Create files with DOS copy ...",
71 "BC-NT", "Borland C++ 4.5 - Windows NT",
72 "linux-elf","Linux elf",
73 "ultrix-mips","DEC mips ultrix",
74 "FreeBSD","FreeBSD distribution",
75 "OS2-EMX", "EMX GCC OS/2",
76 "netware-clib", "CodeWarrior for NetWare - CLib - with WinSock Sockets",
77 "netware-clib-bsdsock", "CodeWarrior for NetWare - CLib - with BSD Sockets",
78 "netware-libc", "CodeWarrior for NetWare - LibC - with WinSock Sockets",
79 "netware-libc-bsdsock", "CodeWarrior for NetWare - LibC - with BSD Sockets",
80 "default","cc under unix",
81 "auto", "auto detect from top level Makefile"
88 if (!&read_options
&& !defined($ops{$_}))
90 print STDERR
"unknown option - $_\n";
91 print STDERR
"usage: perl mk1mf.pl [options] [system]\n";
92 print STDERR
"\nwhere [system] can be one of the following\n";
93 foreach $i (sort keys %ops)
94 { printf STDERR
"\t%-10s\t%s\n",$i,$ops{$i}; }
96 and [options] can be one of
97 no-md2 no-md4 no-md5 no-sha no-mdc2 - Skip this digest
99 no-rc2 no-rc4 no-rc5 no-idea no-des - Skip this symetric cipher
100 no-bf no-cast no-aes no-camellia no-seed
101 no-rsa no-dsa no-dh - Skip this public key cipher
102 no-ssl2 no-ssl3 - Skip this version of SSL
103 just-ssl - remove all non-ssl keys/digest
109 no-engine - No engine
111 nasm - Use NASM for x86 asm
112 nw-nasm - Use NASM x86 asm for NetWare
113 nw-mwasm - Use Metrowerks x86 asm for NetWare
114 gaswin - Use GNU as with Mingw32
115 no-socks - No socket code
116 no-err - No error strings
117 dll/shlib - Build shared libraries (MS)
119 profile - Profiling build
122 Values that can be set
123 TMP=tmpdir OUT=outdir SRC=srcdir BIN=binpath INC=header-outdir CC=C-compiler
125 -L<ex_lib_path> -l<ex_lib> - extra library flags (unix)
126 -<ex_cc_flags> - extra 'cc' flags,
127 added (MS), or replace (unix)
133 foreach (grep(!/^$/, split(/ /, $OPTIONS)))
135 print STDERR
"unknown option - $_\n" if !&read_options
;
138 $no_static_engine = 0 if (!$shlib);
140 $no_mdc2=1 if ($no_des);
142 $no_ssl3=1 if ($no_md5 || $no_sha);
143 $no_ssl3=1 if ($no_rsa && $no_dh);
145 $no_ssl2=1 if ($no_md5);
146 $no_ssl2=1 if ($no_rsa);
152 $perl="perl" unless defined $perl;
153 $mkdir="-mkdir" unless defined $mkdir;
155 ($ssl,$crypto)=("ssl","crypto");
156 $ranlib="echo ranlib";
158 $cc=(defined($VARS{'CC'}))?
$VARS{'CC'}:'cc';
159 $src_dir=(defined($VARS{'SRC'}))?
$VARS{'SRC'}:'.';
160 $bin_dir=(defined($VARS{'BIN'}))?
$VARS{'BIN'}:'';
162 # $bin_dir.=$o causes a core dump on my sparc :-(
167 push(@INC,"util/pl","pl");
169 if ($platform eq "auto") {
170 $platform = $mf_platform;
171 print STDERR
"Imported platform $mf_platform\n";
174 if (($platform =~ /VC-(.+)/))
177 $NT = 1 if $1 eq "NT";
180 elsif ($platform eq "Mingw32")
182 require 'Mingw32.pl';
184 elsif ($platform eq "Mingw32-files")
186 require 'Mingw32f.pl';
188 elsif ($platform eq "BC-NT")
193 elsif ($platform eq "FreeBSD")
196 $cflags='-DTERMIO -D_ANSI_SOURCE -O2 -fomit-frame-pointer';
198 elsif ($platform eq "linux-elf")
204 elsif ($platform eq "ultrix-mips")
210 elsif ($platform eq "OS2-EMX")
213 require 'OS2-EMX.pl';
215 elsif (($platform eq "netware-clib") || ($platform eq "netware-libc") ||
216 ($platform eq "netware-clib-bsdsock") || ($platform eq "netware-libc-bsdsock"))
218 $LIBC=1 if $platform eq "netware-libc" || $platform eq "netware-libc-bsdsock";
219 $BSDSOCK=1 if ($platform eq "netware-libc-bsdsock") || ($platform eq "netware-clib-bsdsock");
220 require 'netware.pl';
227 $cflags.=' -DTERMIO';
230 $out_dir=(defined($VARS{'OUT'}))?
$VARS{'OUT'}:$out_def.($debug?
".dbg":"");
231 $tmp_dir=(defined($VARS{'TMP'}))?
$VARS{'TMP'}:$tmp_def.($debug?
".dbg":"");
232 $inc_dir=(defined($VARS{'INC'}))?
$VARS{'INC'}:$inc_def;
234 $bin_dir=$bin_dir.$o unless ((substr($bin_dir,-1,1) eq $o) || ($bin_dir eq ''));
236 $cflags= "$xcflags$cflags" if $xcflags ne "";
238 $cflags.=" -DOPENSSL_NO_IDEA" if $no_idea;
239 $cflags.=" -DOPENSSL_NO_AES" if $no_aes;
240 $cflags.=" -DOPENSSL_NO_CAMELLIA" if $no_camellia;
241 $cflags.=" -DOPENSSL_NO_SEED" if $no_seed;
242 $cflags.=" -DOPENSSL_NO_RC2" if $no_rc2;
243 $cflags.=" -DOPENSSL_NO_RC4" if $no_rc4;
244 $cflags.=" -DOPENSSL_NO_RC5" if $no_rc5;
245 $cflags.=" -DOPENSSL_NO_MD2" if $no_md2;
246 $cflags.=" -DOPENSSL_NO_MD4" if $no_md4;
247 $cflags.=" -DOPENSSL_NO_MD5" if $no_md5;
248 $cflags.=" -DOPENSSL_NO_SHA" if $no_sha;
249 $cflags.=" -DOPENSSL_NO_SHA1" if $no_sha1;
250 $cflags.=" -DOPENSSL_NO_RIPEMD" if $no_ripemd;
251 $cflags.=" -DOPENSSL_NO_MDC2" if $no_mdc2;
252 $cflags.=" -DOPENSSL_NO_BF" if $no_bf;
253 $cflags.=" -DOPENSSL_NO_CAST" if $no_cast;
254 $cflags.=" -DOPENSSL_NO_DES" if $no_des;
255 $cflags.=" -DOPENSSL_NO_RSA" if $no_rsa;
256 $cflags.=" -DOPENSSL_NO_DSA" if $no_dsa;
257 $cflags.=" -DOPENSSL_NO_DH" if $no_dh;
258 $cflags.=" -DOPENSSL_NO_WHIRLPOOL" if $no_whirlpool;
259 $cflags.=" -DOPENSSL_NO_SOCK" if $no_sock;
260 $cflags.=" -DOPENSSL_NO_SSL2" if $no_ssl2;
261 $cflags.=" -DOPENSSL_NO_SSL3" if $no_ssl3;
262 $cflags.=" -DOPENSSL_NO_TLSEXT" if $no_tlsext;
263 $cflags.=" -DOPENSSL_NO_CMS" if $no_cms;
264 $cflags.=" -DOPENSSL_NO_ERR" if $no_err;
265 $cflags.=" -DOPENSSL_NO_KRB5" if $no_krb5;
266 $cflags.=" -DOPENSSL_NO_EC" if $no_ec;
267 $cflags.=" -DOPENSSL_NO_ECDSA" if $no_ecdsa;
268 $cflags.=" -DOPENSSL_NO_ECDH" if $no_ecdh;
269 $cflags.=" -DOPENSSL_NO_ENGINE" if $no_engine;
270 $cflags.=" -DOPENSSL_NO_HW" if $no_hw;
271 $cflags.=" -DOPENSSL_NO_JPAKE" if $no_jpake;
272 $cflags.= " -DZLIB" if $zlib_opt;
273 $cflags.= " -DZLIB_SHARED" if $zlib_opt == 2;
275 if ($no_static_engine)
277 $cflags .= " -DOPENSSL_NO_STATIC_ENGINE";
281 $cflags .= " -DOPENSSL_NO_DYNAMIC_ENGINE";
284 #$cflags.=" -DRSAref" if $rsaref ne "";
287 ## { $cflags="$c_flags" if ($c_flags ne ""); }
289 { $cflags="$c_flags$cflags" if ($c_flags ne ""); }
291 $ex_libs="$l_flags$ex_libs" if ($l_flags ne "");
294 %shlib_ex_cflags=("SSL" => " -DOPENSSL_BUILD_SHLIBSSL",
295 "CRYPTO" => " -DOPENSSL_BUILD_SHLIBCRYPTO");
299 $banner ="\t\@echo Make sure you have run 'perl Configure $platform' in the\n";
300 $banner.="\t\@echo top level directory, if you don't have perl, you will\n";
301 $banner.="\t\@echo need to probably edit crypto/bn/bn.h, check the\n";
302 $banner.="\t\@echo documentation for details.\n";
305 # have to do this to allow $(CC) under unix
306 $link="$bin_dir$link" if ($link !~ /^\$/);
308 $INSTALLTOP =~ s
|/|$o|g
;
309 $OPENSSLDIR =~ s
|/|$o|g
;
311 #############################################
312 # We parse in input file and 'store' info for later printing.
313 open(IN
,"<$infile") || die "unable to open $infile:$!\n";
319 ($key,$val)=/^([^=]+)=(.*)/;
320 if ($key eq "RELATIVE_DIRECTORY")
325 $uc =~ s/^lib(.*)\.a/$1/;
328 $lib_obj{$uc}.=$libobj." ";
330 last if ($val eq "FINISHED");
336 if ($key eq "KRB5_INCLUDES")
337 { $cflags .= " $val";}
339 if ($key eq "ZLIB_INCLUDE")
340 { $cflags .= " $val" if $val ne "";}
342 if ($key eq "LIBZLIB")
343 { $zlib_lib = "$val" if $val ne "";}
345 if ($key eq "LIBKRB5")
346 { $ex_libs .= " $val" if $val ne "";}
349 { $test.=&var_add
($dir,$val, 0); }
351 if (($key eq "PROGS") || ($key eq "E_OBJ"))
352 { $e_exe.=&var_add
($dir,$val, 0); }
357 $lib =~ s/^.*\/([^\/]+)$/$1/;
360 if ($key eq "EXHEADER")
361 { $exheader.=&var_add
($dir,$val, 1); }
363 if ($key eq "HEADER")
364 { $header.=&var_add
($dir,$val, 1); }
366 if ($key eq "LIBOBJ" && ($dir ne "engines" || !$no_static_engine))
367 { $libobj=&var_add
($dir,$val, 0); }
368 if ($key eq "LIBNAMES" && $dir eq "engines" && $no_static_engine)
372 { $_="RELATIVE_DIRECTORY=FINISHED\n"; }
378 $extra_install= <<"EOF";
379 \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}bin\"
380 \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}bin\"
381 \$(CP) \"\$(L_SSL)\" \"\$(INSTALLTOP)${o}lib\"
382 \$(CP) \"\$(L_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
384 if ($no_static_engine)
386 $extra_install .= <<"EOF"
387 \$(MKDIR) \"\$(INSTALLTOP)${o}lib${o}engines\"
388 \$(CP) \"\$(E_SHLIB)\" \"\$(INSTALLTOP)${o}lib${o}engines\"
394 $extra_install= <<"EOF";
395 \$(CP) \"\$(O_SSL)\" \"\$(INSTALLTOP)${o}lib\"
396 \$(CP) \"\$(O_CRYPTO)\" \"\$(INSTALLTOP)${o}lib\"
398 $ex_libs .= " $zlib_lib" if $zlib_opt == 1;
402 # This makefile has been automatically generated from the OpenSSL distribution.
403 # This single makefile will build the complete OpenSSL distribution and
404 # by default leave the 'intertesting' output files in .${o}out and the stuff
405 # that needs deleting in .${o}tmp.
406 # The file was generated by running 'make makefile.one', which
407 # does a 'make files', which writes all the environment variables from all
408 # the makefiles to the file call MINFO. This file is used by
409 # util${o}mk1mf.pl to generate makefile.one.
410 # The 'makefile per directory' system suites me when developing this
411 # library and also so I can 'distribute' indervidual library sections.
412 # The one monster makefile better suits building in non-unix
417 $defs .= $preamble if defined $preamble;
420 INSTALLTOP=$INSTALLTOP
421 OPENSSLDIR=$OPENSSLDIR
423 # Set your compiler options
429 SHLIB_CFLAG=$shl_cflag
430 APP_EX_OBJ=$app_ex_obj
431 SHLIB_EX_OBJ=$shlib_ex_obj
432 # add extra libraries to this define, for solaris -lsocket -lnsl would
436 # The OpenSSL directory
443 # The output directory for everything intersting
445 # The output directory for all the temporary muck
447 # The output directory for the header files
449 INCO_D=$inc_dir${o}openssl
460 ######################################################
461 # You should not need to touch anything below this point
462 ######################################################
468 # BIN_D - Binary output directory
469 # TEST_D - Binary test file output directory
470 # LIB_D - library output directory
471 # ENG_D - dynamic engine output directory
472 # Note: if you change these point to different directories then uncomment out
473 # the lines around the 'NB' comment below.
480 # INCL_D - local library directory
481 # OBJ_D - temp object file directory
485 O_SSL= \$(LIB_D)$o$plib\$(SSL)$shlibp
486 O_CRYPTO= \$(LIB_D)$o$plib\$(CRYPTO)$shlibp
487 SO_SSL= $plib\$(SSL)$so_shlibp
488 SO_CRYPTO= $plib\$(CRYPTO)$so_shlibp
489 L_SSL= \$(LIB_D)$o$plib\$(SSL)$libp
490 L_CRYPTO= \$(LIB_D)$o$plib\$(CRYPTO)$libp
492 L_LIBS= \$(L_SSL) \$(L_CRYPTO)
494 ######################################################
495 # Don't touch anything below this point
496 ######################################################
498 INC=-I\$(INC_D) -I\$(INCL_D)
499 APP_CFLAGS=\$(INC) \$(CFLAG) \$(APP_CFLAG)
500 LIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG)
501 SHLIB_CFLAGS=\$(INC) \$(CFLAG) \$(LIB_CFLAG) \$(SHLIB_CFLAG)
502 LIBS_DEP=\$(O_CRYPTO) \$(O_SSL)
504 #############################################
508 all: banner \$(TMP_D) \$(BIN_D) \$(TEST_D) \$(LIB_D) \$(INCO_D) headers lib exe
514 \$(MKDIR) \"\$(TMP_D)\"
515 # NB: uncomment out these lines if BIN_D, TEST_D and LIB_D are different
517 # \$(MKDIR) \$(BIN_D)
520 # \$(MKDIR) \$(TEST_D)
523 \$(MKDIR) \"\$(LIB_D)\"
525 \$(INCO_D): \$(INC_D)
526 \$(MKDIR) \"\$(INCO_D)\"
529 \$(MKDIR) \"\$(INC_D)\"
531 headers: \$(HEADER) \$(EXHEADER)
534 lib: \$(LIBS_DEP) \$(E_SHLIB)
536 exe: \$(T_EXE) \$(BIN_D)$o\$(E_EXE)$exep
539 \$(MKDIR) \"\$(INSTALLTOP)\"
540 \$(MKDIR) \"\$(INSTALLTOP)${o}bin\"
541 \$(MKDIR) \"\$(INSTALLTOP)${o}include\"
542 \$(MKDIR) \"\$(INSTALLTOP)${o}include${o}openssl\"
543 \$(MKDIR) \"\$(INSTALLTOP)${o}lib\"
544 \$(CP) \"\$(INCO_D)${o}*.\[ch\]\" \"\$(INSTALLTOP)${o}include${o}openssl\"
545 \$(CP) \"\$(BIN_D)$o\$(E_EXE)$exep \$(INSTALLTOP)${o}bin\"
546 \$(MKDIR) \"\$(OPENSSLDIR)\"
547 \$(CP) apps${o}openssl.cnf \"\$(OPENSSLDIR)\"
556 \$(RM) \$(TMP_D)$o*.*
559 \$(RM) \$(TMP_D)$o*.*
560 \$(RM) \$(OUT_D)$o*.*
564 my $platform_cpp_symbol = "MK1MF_PLATFORM_$platform";
565 $platform_cpp_symbol =~ s/-/_/g;
566 if (open(IN
,"crypto/buildinf.h"))
568 # Remove entry for this platform in existing file buildinf.h.
570 my $old_buildinf_h = "";
573 if (/^\#ifdef $platform_cpp_symbol$/)
575 while (<IN
>) { last if (/^\#endif/); }
579 $old_buildinf_h .= $_;
584 open(OUT
,">crypto/buildinf.h") || die "Can't open buildinf.h";
585 print OUT
$old_buildinf_h;
589 open (OUT
,">>crypto/buildinf.h") || die "Can't open buildinf.h";
591 #ifdef $platform_cpp_symbol
592 /* auto-generated/updated by util/mk1mf.pl for crypto/cversion.c */
593 #define CFLAGS "$cc $cflags"
594 #define PLATFORM "$platform"
596 printf OUT
" #define DATE \"%s\"\n", scalar gmtime();
597 printf OUT
"#endif\n";
600 # Strip of trailing ' '
601 foreach (keys %lib_obj) { $lib_obj{$_}=&clean_up_ws
($lib_obj{$_}); }
602 $test=&clean_up_ws
($test);
603 $e_exe=&clean_up_ws
($e_exe);
604 $exheader=&clean_up_ws
($exheader);
605 $header=&clean_up_ws
($header);
607 # First we strip the exheaders from the headers list
608 foreach (split(/\s+/,$exheader)){ $h{$_}=1; }
609 foreach (split(/\s+/,$header)) { $h.=$_." " unless $h{$_}; }
610 chop($h); $header=$h;
612 $defs.=&do_defs
("HEADER",$header,"\$(INCL_D)","");
613 $rules.=&do_copy_rule
("\$(INCL_D)",$header,"");
615 $defs.=&do_defs
("EXHEADER",$exheader,"\$(INCO_D)","");
616 $rules.=&do_copy_rule
("\$(INCO_D)",$exheader,"");
618 $defs.=&do_defs
("T_OBJ",$test,"\$(OBJ_D)",$obj);
619 $rules.=&do_compile_rule
("\$(OBJ_D)",$test,"\$(APP_CFLAGS)");
621 $defs.=&do_defs
("E_OBJ",$e_exe,"\$(OBJ_D)",$obj);
622 $rules.=&do_compile_rule
("\$(OBJ_D)",$e_exe,'-DMONOLITH $(APP_CFLAGS)');
624 foreach (values %lib_nam)
626 $lib_obj=$lib_obj{$_};
629 if (($_ eq "SSL") && $no_ssl2 && $no_ssl3)
631 $rules.="\$(O_SSL):\n\n";
635 $defs.=&do_defs
(${_
}."OBJ",$lib_obj,"\$(OBJ_D)",$obj);
636 $lib=($slib)?
" \$(SHLIB_CFLAGS)".$shlib_ex_cflags{$_}:" \$(LIB_CFLAGS)";
637 $rules.=&do_compile_rule
("\$(OBJ_D)",$lib_obj{$_},$lib);
640 # hack to add version info on MSVC
641 if (($platform eq "VC-WIN32") || ($platform eq "VC-WIN64A")
642 || ($platform eq "VC-WIN64I") || ($platform eq "VC-NT")) {
644 \$(OBJ_D)\\\$(CRYPTO).res: ms\\version32.rc
645 \$(RSC) /fo"\$(OBJ_D)\\\$(CRYPTO).res" /d CRYPTO ms\\version32.rc
647 \$(OBJ_D)\\\$(SSL).res: ms\\version32.rc
648 \$(RSC) /fo"\$(OBJ_D)\\\$(SSL).res" /d SSL ms\\version32.rc
653 $defs.=&do_defs
("T_EXE",$test,"\$(TEST_D)",$exep);
654 foreach (split(/\s+/,$test))
657 $tt="\$(OBJ_D)${o}$t${obj}";
658 $rules.=&do_link_rule
("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
661 $defs.=&do_defs
("E_SHLIB",$engines,"\$(ENG_D)",$shlibp);
663 foreach (split(/\s+/,$engines))
665 $rules.=&do_compile_rule
("\$(OBJ_D)","engines${o}e_$_",$lib);
666 $rules.= &do_lib_rule
("\$(OBJ_D)${o}e_${_}.obj","\$(ENG_D)$o$_$shlibp","",$shlib,"");
671 $rules.= &do_lib_rule
("\$(SSLOBJ)","\$(O_SSL)",$ssl,$shlib,"\$(SO_SSL)");
672 $rules.= &do_lib_rule
("\$(CRYPTOOBJ)","\$(O_CRYPTO)",$crypto,$shlib,"\$(SO_CRYPTO)");
674 $rules.=&do_link_rule
("\$(BIN_D)$o\$(E_EXE)$exep","\$(E_OBJ)","\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
678 if ($platform eq "linux-elf") {
680 # Generate perlasm output files
682 (cd \$(\@D)/..; PERL=perl make -f Makefile asm/\$(\@F))
685 print "###################################################################\n";
688 ###############################################
689 # strip off any trailing .[och] and append the relative directory
690 # also remembering to do nothing if we are in one of the dropped
694 local($dir,$val,$keepext)=@_;
697 return("") if $no_engine && $dir =~ /\/engine
/;
698 return("") if $no_hw && $dir =~ /\/hw
/;
699 return("") if $no_idea && $dir =~ /\/idea
/;
700 return("") if $no_aes && $dir =~ /\/aes
/;
701 return("") if $no_camellia && $dir =~ /\/camellia
/;
702 return("") if $no_seed && $dir =~ /\/seed
/;
703 return("") if $no_rc2 && $dir =~ /\/rc2
/;
704 return("") if $no_rc4 && $dir =~ /\/rc4
/;
705 return("") if $no_rc5 && $dir =~ /\/rc5
/;
706 return("") if $no_rsa && $dir =~ /\/rsa
/;
707 return("") if $no_rsa && $dir =~ /^rsaref/;
708 return("") if $no_dsa && $dir =~ /\/dsa/;
709 return("") if $no_dh && $dir =~ /\/dh
/;
710 return("") if $no_ec && $dir =~ /\/ec
/;
711 return("") if $no_cms && $dir =~ /\/cms/;
712 return("") if $no_jpake && $dir =~ /\/jpake
/;
713 if ($no_des && $dir =~ /\/des
/)
715 if ($val =~ /read_pwd/)
716 { return("$dir/read_pwd "); }
720 return("") if $no_mdc2 && $dir =~ /\/mdc2/;
721 return("") if $no_sock && $dir =~ /\/proxy
/;
722 return("") if $no_bf && $dir =~ /\/bf
/;
723 return("") if $no_cast && $dir =~ /\/cast
/;
724 return("") if $no_whirlpool && $dir =~ /\/whrlpool
/;
726 $val =~ s/^\s*(.*)\s*$/$1/;
727 @a=split(/\s+/,$val);
728 grep(s/\.[och]$//,@a) unless $keepext;
730 @a=grep(!/^e_.*_3d$/,@a) if $no_des;
731 @a=grep(!/^e_.*_d$/,@a) if $no_des;
732 @a=grep(!/^e_.*_ae$/,@a) if $no_idea;
733 @a=grep(!/^e_.*_i$/,@a) if $no_aes;
734 @a=grep(!/^e_.*_r2$/,@a) if $no_rc2;
735 @a=grep(!/^e_.*_r5$/,@a) if $no_rc5;
736 @a=grep(!/^e_.*_bf$/,@a) if $no_bf;
737 @a=grep(!/^e_.*_c$/,@a) if $no_cast;
738 @a=grep(!/^e_rc4$/,@a) if $no_rc4;
739 @a=grep(!/^e_camellia$/,@a) if $no_camellia;
740 @a=grep(!/^e_seed$/,@a) if $no_seed;
742 #@a=grep(!/(^s2_)|(^s23_)/,@a) if $no_ssl2;
743 #@a=grep(!/(^s3_)|(^s23_)/,@a) if $no_ssl3;
745 @a=grep(!/(_sock$)|(_acpt$)|(_conn$)|(^pxy_)/,@a) if $no_sock;
747 @a=grep(!/(^md2)|(_md2$)/,@a) if $no_md2;
748 @a=grep(!/(^md4)|(_md4$)/,@a) if $no_md4;
749 @a=grep(!/(^md5)|(_md5$)/,@a) if $no_md5;
750 @a=grep(!/(rmd)|(ripemd)/,@a) if $no_ripemd;
752 @a=grep(!/(^d2i_r_)|(^i2d_r_)/,@a) if $no_rsa;
753 @a=grep(!/(^p_open$)|(^p_seal$)/,@a) if $no_rsa;
754 @a=grep(!/(^pem_seal$)/,@a) if $no_rsa;
756 @a=grep(!/(m_dss$)|(m_dss1$)/,@a) if $no_dsa;
757 @a=grep(!/(^d2i_s_)|(^i2d_s_)|(_dsap$)/,@a) if $no_dsa;
759 @a=grep(!/^n_pkey$/,@a) if $no_rsa || $no_rc4;
761 @a=grep(!/_dhp$/,@a) if $no_dh;
763 @a=grep(!/(^sha[^1])|(_sha$)|(m_dss$)/,@a) if $no_sha;
764 @a=grep(!/(^sha1)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
765 @a=grep(!/_mdc2$/,@a) if $no_mdc2;
767 @a=grep(!/^engine$/,@a) if $no_engine;
768 @a=grep(!/^hw$/,@a) if $no_hw;
769 @a=grep(!/(^rsa$)|(^genrsa$)/,@a) if $no_rsa;
770 @a=grep(!/(^dsa$)|(^gendsa$)|(^dsaparam$)/,@a) if $no_dsa;
771 @a=grep(!/^gendsa$/,@a) if $no_sha1;
772 @a=grep(!/(^dh$)|(^gendh$)/,@a) if $no_dh;
774 @a=grep(!/(^dh)|(_sha1$)|(m_dss1$)/,@a) if $no_sha1;
776 grep($_="$dir/$_",@a);
777 @a=grep(!/(^|\/)s_
/,@a) if $no_sock;
778 @a=grep(!/(^|\/)bio_sock
/,@a) if $no_sock;
779 $ret=join(' ',@a)." ";
783 # change things so that each 'token' is only separated by one space
788 $w =~ s/^\s*(.*)\s*$/$1/;
795 local($var,$files,$location,$postfix)=@_;
799 $files =~ s/\//$o/g if $o ne '/';
803 foreach (split(/ /,$files))
806 $_=&bname($_) unless /^\$/;
812 if (($_ =~ /bss_file/) && ($postfix eq ".h"))
814 else { $pf=$postfix; }
815 if ($_ =~ /BN_ASM/) { $t="$_ "; }
816 elsif ($_ =~ /BNCO_ASM/){ $t="$_ "; }
817 elsif ($_ =~ /AES_ASM/){ $t="$_ "; }
818 elsif ($_ =~ /DES_ENC/) { $t="$_ "; }
819 elsif ($_ =~ /BF_ENC/) { $t="$_ "; }
820 elsif ($_ =~ /CAST_ENC/){ $t="$_ "; }
821 elsif ($_ =~ /RC4_ENC/) { $t="$_ "; }
822 elsif ($_ =~ /RC5_ENC/) { $t="$_ "; }
823 elsif ($_ =~ /MD5_ASM/) { $t="$_ "; }
824 elsif ($_ =~ /SHA1_ASM/){ $t="$_ "; }
825 elsif ($_ =~ /RMD160_ASM/){ $t="$_ "; }
826 elsif ($_ =~ /WHIRLPOOL_ASM/){ $t="$_ "; }
827 elsif ($_ =~ /CPUID_ASM/){ $t="$_ "; }
828 else { $t="$location${o}$_$pf "; }
833 # hack to add version info on MSVC
834 if ($shlib && (($platform eq "VC-WIN32") || ($platfrom eq "VC-WIN64I") || ($platform eq "VC-WIN64A") || ($platform eq "VC-NT")))
836 if ($var eq "CRYPTOOBJ")
837 { $ret.="\$(OBJ_D)\\\$(CRYPTO).res "; }
838 elsif ($var eq "SSLOBJ")
839 { $ret.="\$(OBJ_D)\\\$(SSL).res "; }
846 # return the name with the leading path removed
850 $ret =~ s/^.*[\\\/]([^\\\/]+)$/$1/;
854 # return the leading path
858 $ret =~ s/(^.*)[\\\/][^\\\/]+$/$1/;
862 ##############################################################
863 # do a rule for each file that says 'compile
' to new direcory
864 # compile the files in '$files' into $to
867 local($to,$files,$ex)=@_;
868 local($ret,$_,$n,$d,$s);
870 $files =~ s/\//$o/g if $o ne '/';
871 foreach (split(/\s+/,$files))
877 $ret.=&cc_compile_target("$to${o}$n$obj","${_}.c",$ex)
879 elsif (-f ($s="${d}${o}asm${o}${n}.pl") or
880 ($s=~s/sha256/sha512/ and -f $s) or
881 -f ($s="${d}${o}${n}.pl"))
883 $ret.=&perlasm_compile_target("$to${o}$n$obj",$s,$n);
885 elsif (-f ($s="${d}${o}asm${o}${n}.S") or
886 -f ($s="${d}${o}${n}.S"))
888 $ret.=&Sasm_compile_target("$to${o}$n$obj",$s,$n);
890 else { die "no rule for $_"; }
895 ##############################################################
896 # do a rule for each file that says 'compile
' to new direcory
897 sub perlasm_compile_target
899 my($target,$source,$bname)=@_;
902 $bname =~ s/(.*)\.[^\.]$/$1/;
903 $ret ="\$(TMP_D)$o$bname.asm: $source\n";
904 $ret.="\t\$(PERL) $source $asmtype \$(CFLAG) >\$\@\n\n";
905 $ret.="$target: \$(TMP_D)$o$bname.asm\n";
906 $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
910 sub Sasm_compile_target
912 my($target,$source,$bname)=@_;
915 $bname =~ s/(.*)\.[^\.]$/$1/;
916 $ret ="\$(TMP_D)$o$bname.asm: $source\n";
917 $ret.="\t\$(CC) -E \$(CFLAG) $source >\$\@\n\n";
918 $ret.="$target: \$(TMP_D)$o$bname.asm\n";
919 $ret.="\t\$(ASM) $afile\$\@ \$(TMP_D)$o$bname.asm\n\n";
923 sub cc_compile_target
925 local($target,$source,$ex_flags)=@_;
928 $ex_flags.=" -DMK1MF_BUILD -D$platform_cpp_symbol" if ($source =~ /cversion/);
929 $target =~ s/\//$o/g if $o ne "/";
930 $source =~ s/\//$o/g if $o ne "/";
931 $ret ="$target: \$(SRC_D)$o$source\n\t";
932 $ret.="\$(CC) ${ofile}$target $ex_flags -c \$(SRC_D)$o$source\n\n";
936 ##############################################################
939 local($target,$src)=@_;
940 local($ret,@s,@t,$i);
942 $target =~ s/\//$o/g if $o ne "/";
943 $src =~ s/\//$o/g if $o ne "/";
945 @t=split(/\s+/,$target);
946 @s=split(/\s+/,$src);
949 for ($i=0; $i<=$#s; $i++)
951 my $objfile = $t[$i];
952 my $srcfile = $s[$i];
956 my $plasm = $objfile;
957 $plasm =~ s/${obj}/.pl/;
958 $ret.="$srcfile: $plasm\n";
959 $ret.="\t\$(PERL) $plasm $asmtype \$(CFLAG) >$srcfile\n\n";
962 $ret.="$objfile: $srcfile\n";
963 $ret.="\t\$(ASM) $afile$objfile \$(SRC_D)$o$srcfile\n\n";
974 ($nn=$n) =~ tr/a-z/A-Z/;
975 $ret.="$n.dll: \$(${nn}OBJ)\n";
978 $ret.="\t\$(MKSHLIB) $efile$n.dll $def @<<\n \$(${nn}OBJ_F)\n<<\n";
984 # do a rule for each file that says 'copy
' to new direcory on change
987 local($to,$files,$p)=@_;
988 local($ret,$_,$n,$pp);
990 $files =~ s/\//$o/g if $o ne '/';
991 foreach (split(/\s+/,$files))
994 if ($n =~ /bss_file/)
997 $ret.="$to${o}$n$pp: \$(SRC_D)$o$_$pp\n\t\$(CP) \"\$(SRC_D)$o$_$pp\" \"$to${o}$n$pp\"\n\n";
1004 # Many options are handled in a similar way. In particular
1005 # no-xxx sets zero or more scalars to 1.
1006 # Process these using a hash containing the option name and
1007 # reference to the scalars to set.
1009 my %valid_options = (
1010 "no-rc2" => \$no_rc2,
1011 "no-rc4" => \$no_rc4,
1012 "no-rc5" => \$no_rc5,
1013 "no-idea" => \$no_idea,
1014 "no-aes" => \$no_aes,
1015 "no-camellia" => \$no_camellia,
1016 "no-seed" => \$no_seed,
1017 "no-des" => \$no_des,
1019 "no-cast" => \$no_cast,
1020 "no-md2" => \$no_md2,
1021 "no-md4" => \$no_md4,
1022 "no-md5" => \$no_md5,
1023 "no-sha" => \$no_sha,
1024 "no-sha1" => \$no_sha1,
1025 "no-ripemd" => \$no_ripemd,
1026 "no-mdc2" => \$no_mdc2,
1027 "no-whirlpool" => \$no_whirlpool,
1029 [\$no_rc2, \$no_rc4, \$no_rc5, \$no_idea, \$no_rsa],
1030 "no-rsa" => \$no_rsa,
1031 "no-dsa" => \$no_dsa,
1033 "no-hmac" => \$no_hmac,
1034 "no-asm" => \$no_asm,
1036 "nw-nasm" => \$nw_nasm,
1037 "nw-mwasm" => \$nw_mwasm,
1038 "gaswin" => \$gaswin,
1039 "no-ssl2" => \$no_ssl2,
1040 "no-ssl3" => \$no_ssl3,
1041 "no-tlsext" => \$no_tlsext,
1042 "no-cms" => \$no_cms,
1043 "no-jpake" => \$no_jpake,
1044 "no-err" => \$no_err,
1045 "no-sock" => \$no_sock,
1046 "no-krb5" => \$no_krb5,
1048 "no-ecdsa" => \$no_ecdsa,
1049 "no-ecdh" => \$no_ecdh,
1050 "no-engine" => \$no_engine,
1053 [\$no_rc2, \$no_idea, \$no_des, \$no_bf, \$no_cast,
1054 \$no_md2, \$no_sha, \$no_mdc2, \$no_dsa, \$no_dh,
1055 \$no_ssl2, \$no_err, \$no_ripemd, \$no_rc5,
1056 \$no_aes, \$no_camellia, \$no_seed],
1060 "profile" => \$profile,
1070 "no-zlib-dynamic" => 0,
1073 if (exists $valid_options{$_})
1075 my $r = $valid_options{$_};
1076 if ( ref $r eq "SCALAR")
1078 elsif ( ref $r eq "ARRAY")
1087 elsif (/^no-comp$/) { $xcflags = "-DOPENSSL_NO_COMP $xcflags"; }
1088 elsif (/^enable-zlib$/) { $zlib_opt = 1 if $zlib_opt == 0 }
1089 elsif (/^enable-zlib-dynamic$/)
1093 elsif (/^no-static-engine/)
1095 $no_static_engine = 1;
1097 elsif (/^enable-static-engine/)
1099 $no_static_engine = 0;
1101 # There are also enable-xxx options which correspond to
1102 # the no-xxx. Since the scalars are enabled by default
1103 # these can be ignored.
1107 $t =~ s/^enable/no/;
1108 if (exists $valid_options{$t})
1112 # experimental-xxx is mostly like enable-xxx, but opensslconf.v
1113 # will still set OPENSSL_NO_xxx unless we set OPENSSL_EXPERIMENTAL_xxx.
1114 # (No need to fail if we don't know the algorithm
-- this is
for adventurous users only
.)
1115 elsif (/^experimental-/)
1118 ($algo = $_) =~ s/^experimental-//;
1119 ($ALGO = $algo) =~ tr/[a-z]/[A-Z]/;
1121 $xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
1124 elsif (/^--with-krb5-flavor=(.*)$/)
1126 my $krb5_flavor = $1;
1127 if ($krb5_flavor =~ /^force-[Hh]eimdal$/)
1129 $xcflags="-DKRB5_HEIMDAL $xcflags";
1131 elsif ($krb5_flavor =~ /^MIT/i)
1133 $xcflags="-DKRB5_MIT $xcflags";
1134 if ($krb5_flavor =~ /^MIT[._-]*1[._-]*[01]/i)
1136 $xcflags="-DKRB5_MIT_OLD11 $xcflags"
1140 elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
1141 elsif (/^-[lL].*$/) { $l_flags.="$_ "; }
1142 elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)
1143 { $c_flags.="$_ "; }