aboutsummaryrefslogtreecommitdiffstats
path: root/util/mkerr.pl
Commit message (Collapse)AuthorAgeFilesLines
* I had forgotten to change mkerr.pl to use the new macro system.Richard Levitte2001-02-211-3/+3
|
* Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte2000-11-081-1/+1
| | | | away now...
* Show the running line count and definition cont in debug mode. ThatRichard Levitte2000-07-241-1/+11
| | | | has helped me a bit when I ran into trouble.
* Remove extra comma (creates a unnessecary null element, right?).Richard Levitte2000-05-191-1/+1
|
* Preserve reason strings in automatically build tables.Bodo Möller2000-03-051-5/+21
|
* Add PKCS#8 utility functions and add PBE options.Dr. Stephen Henson1999-12-231-1/+1
|
* New function PKCS7_signatureVerify to allow the signing certificate toDr. Stephen Henson1999-06-221-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>
* Fix mkerr.pl to find functions returning function pointers (thanks Ulf!)Dr. Stephen Henson1999-04-251-6/+9
| | | | also add a few missing prototypes.
* Change the command line options of mkerr.pl so -static is now default andDr. Stephen Henson1999-04-241-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 :-)
* Delete the unnecessary ERR and ERRC lines in makefiles, add some functionalityDr. Stephen Henson1999-04-241-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.
* ANSIfy, fix typo in error message, and remove redundant statement fromUlf Möller1999-04-241-10/+5
| | | | my code.
* Complete rewrite of the error code generation script. It now runs as a singleDr. Stephen Henson1999-04-241-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.