X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=apps%2Fpem_mail.c;h=f85c7b1c831afff521957b221319c6730a783712;hp=64e04acb52782d9deef9551a8034b9b8e7f2f9b5;hb=690233bccc8214cb67be9347078e08a29ee10a62;hpb=7dfb0b774e6592dcbfe47015168a0ac8b44e2a17 diff --git a/apps/pem_mail.c b/apps/pem_mail.c index 64e04acb52..f85c7b1c83 100644 --- a/apps/pem_mail.c +++ b/apps/pem_mail.c @@ -56,13 +56,14 @@ * [including the GNU Public Licence.] */ +#ifndef NO_RSA #include -#include "rsa.h" -#include "evp.h" -#include "objects.h" -#include "x509.h" -#include "err.h" -#include "pem.h" +#include +#include +#include +#include +#include +#include #include "apps.h" #undef PROG @@ -87,9 +88,7 @@ typedef struct lines_St struct lines_st *next; } LINES; -int main(argc, argv) -int argc; -char **argv; +int main(int argc, char **argv) { FILE *in; RSA *rsa=NULL; @@ -168,3 +167,4 @@ err: ERR_print_errors(bio_err); EXIT(1); } +#endif