aboutsummaryrefslogtreecommitdiff
path: root/util/mkerr.pl
AgeCommit message (Collapse)AuthorFilesLines
2000-11-08Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte1-1/+1
away now...
2000-07-24Show the running line count and definition cont in debug mode. ThatRichard Levitte1-1/+11
has helped me a bit when I ran into trouble.
2000-05-19Remove extra comma (creates a unnessecary null element, right?).Richard Levitte1-1/+1
2000-03-05Preserve reason strings in automatically build tables.Bodo Möller1-5/+21
1999-12-23Add PKCS#8 utility functions and add PBE options.Dr. Stephen Henson1-1/+1
1999-06-22New function PKCS7_signatureVerify to allow the signing certificate toDr. Stephen Henson1-3/+9
be explicitly stated with PKCS#7 verify. Also fix for util/mkerr.pl: if the -nostatic option is being used this will be for an external library so the autogenerated C file should include the header file as: #include "any/path/to/header.h" rather than the internal library form: #include <openssl/header.h>
1999-04-25Fix mkerr.pl to find functions returning function pointers (thanks Ulf!)Dr. Stephen Henson1-6/+9
also add a few missing prototypes.
1999-04-24Change the command line options of mkerr.pl so -static is now default andDr. Stephen Henson1-4/+8
a -write option is needed to actually change anything. Second attempt at getting rid of ERR, ERRC definitions: it might even work this time :-)
1999-04-24Delete the unnecessary ERR and ERRC lines in makefiles, add some functionalityDr. Stephen Henson1-5/+34
to error code script: it can now find untranslatable function codes (usually because the function is static and not defined in a header: occasionally because of a typo...) and unreferenced function and reason codes. To see this try: perl util/mkerr.pl -recurse -debug Also fixed some typos in crypto/pkcs12 that this found :-) Also tidy up some error calls that had to be all on one line: the old error script couldn't find codes unless the call was all on one line.
1999-04-24ANSIfy, fix typo in error message, and remove redundant statement fromUlf Möller1-10/+5
my code.
1999-04-24Complete rewrite of the error code generation script. It now runs as a singleDr. Stephen Henson1-0/+466
script, translates function codes better and doesn't need the K&R function prototypes to work (NB. the K&R prototypes can't be wiped just yet: they are still needed by the DEF generator...). I also ran the script with the -rewrite option to update all the header and source files.