Add error checking to obj_xref.pl and add command line support for data
authorDr. Stephen Henson <steve@openssl.org>
Tue, 10 Feb 2009 13:03:31 +0000 (13:03 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 10 Feb 2009 13:03:31 +0000 (13:03 +0000)
file locations.

Makefile.org
crypto/objects/Makefile
crypto/objects/objxref.pl

index 580a26937a9a4ee549052318b5d091563668d588..21d194e7d77e7743e930036f90874ae5ccedd58d 100644 (file)
@@ -438,7 +438,7 @@ crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
        $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
-       $(PERL) crypto/objects/objxref.pl crypto/objects/obj_xref.h
+       $(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
 
 apps/openssl-vms.cnf: apps/openssl.cnf
        $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
index d7365e96c44dc527343a7d0d1d5de8a5a6fe9b00..a8aedbd422870c28d0e9f8a2ba5723d14a7f0451 100644 (file)
@@ -47,7 +47,7 @@ obj_mac.h: objects.pl objects.txt obj_mac.num
        @sleep 1; touch obj_mac.h; sleep 1
 
 obj_xref.h: objxref.pl obj_xref.txt obj_mac.num
-       $(PERL) objxref.pl > obj_xref.h
+       $(PERL) objxref.pl obj_mac.num obj_xref.txt > obj_xref.h
        @sleep 1; touch obj_xref.h; sleep 1
 
 files:
index 4a42924c56a6b112795c5842c04914cedc84e748..3fa584036e1e13cb430c742ec08620a4ba1c786f 100644 (file)
@@ -1,6 +1,13 @@
 #!/usr/local/bin/perl
 
-open IN, "obj_mac.num";
+use strict;
+
+my %xref_tbl;
+my %oid_tbl;
+
+my ($mac_file, $xref_file) = @ARGV;
+
+open(IN, $mac_file) || die "Can't open $mac_file";
 
 # Read in OID nid values for a lookup table.
 
@@ -12,7 +19,7 @@ while (<IN>)
        }
 close IN;
 
-open IN, "obj_xref.txt";
+open(IN, $xref_file) || die "Can't open $xref_file";
 
 my $ln = 1;