Deleted Added
full compact
mk1mf.pl (68651) mk1mf.pl (100936)
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";

--- 84 unchanged lines hidden (view full) ---

93
94$no_ssl2=1 if ($no_md5 || $no_rsa);
95$no_ssl2=1 if ($no_rsa);
96
97$out_def="out";
98$inc_def="outinc";
99$tmp_def="tmp";
100
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";

--- 84 unchanged lines hidden (view full) ---

93
94$no_ssl2=1 if ($no_md5 || $no_rsa);
95$no_ssl2=1 if ($no_rsa);
96
97$out_def="out";
98$inc_def="outinc";
99$tmp_def="tmp";
100
101$mkdir="mkdir";
101$mkdir="-mkdir";
102
103($ssl,$crypto)=("ssl","crypto");
104$RSAglue="RSAglue";
105$ranlib="echo ranlib";
106
107$cc=(defined($VARS{'CC'}))?$VARS{'CC'}:'cc';
108$src_dir=(defined($VARS{'SRC'}))?$VARS{'SRC'}:'.';
109$bin_dir=(defined($VARS{'BIN'}))?$VARS{'BIN'}:'';

--- 792 unchanged lines hidden ---
102
103($ssl,$crypto)=("ssl","crypto");
104$RSAglue="RSAglue";
105$ranlib="echo ranlib";
106
107$cc=(defined($VARS{'CC'}))?$VARS{'CC'}:'cc';
108$src_dir=(defined($VARS{'SRC'}))?$VARS{'SRC'}:'.';
109$bin_dir=(defined($VARS{'BIN'}))?$VARS{'BIN'}:'';

--- 792 unchanged lines hidden ---