Change #include filenames from <foo.h> to <openssl.h>.

Submitted by:
Reviewed by:
PR:
This commit is contained in:
Bodo Möller
1999-04-23 22:13:45 +00:00
parent 806115771c
commit ec577822f9
552 changed files with 1604 additions and 1563 deletions

View File

@@ -45,15 +45,15 @@ files:
links:
@$(TOP)/util/point.sh Makefile.ssl Makefile
@$(TOP)/util/mklink.sh ../../include $(EXHEADER)
@$(TOP)/util/mklink.sh ../../include/openssl $(EXHEADER)
@$(TOP)/util/mklink.sh ../../test $(TEST)
@$(TOP)/util/mklink.sh ../../apps $(APPS)
install:
@for i in $(EXHEADER) ; \
do \
(cp $$i $(INSTALLTOP)/include/$$i; \
chmod 644 $(INSTALLTOP)/include/$$i ); \
(cp $$i $(INSTALLTOP)/include/openssl/$$i; \
chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \
done;
tags:

View File

@@ -57,12 +57,12 @@
*/
#include <stdio.h>
#include "lhash.h"
#include "crypto.h"
#include <openssl/lhash.h>
#include <openssl/crypto.h>
#include "cryptlib.h"
#include "buffer.h"
#include "err.h"
#include "crypto.h"
#include <openssl/buffer.h>
#include <openssl/err.h>
#include <openssl/crypto.h>
static LHASH *error_hash=NULL;

View File

@@ -57,30 +57,30 @@
*/
#include <stdio.h>
#include "asn1.h"
#include "bn.h"
#include "buffer.h"
#include "bio.h"
#include <openssl/asn1.h>
#include <openssl/bn.h>
#include <openssl/buffer.h>
#include <openssl/bio.h>
#ifndef NO_RSA
#include "rsa.h"
#include <openssl/rsa.h>
#endif
#ifdef RSAref
#include "rsaref.h"
#include <openssl/rsaref.h>
#endif
#ifndef NO_DH
#include "dh.h"
#include <openssl/dh.h>
#endif
#ifndef NO_DSA
#include "dsa.h"
#include <openssl/dsa.h>
#endif
#include "evp.h"
#include "objects.h"
#include "pem2.h"
#include "x509.h"
#include "x509v3.h"
#include "conf.h"
#include "pkcs12.h"
#include "err.h"
#include <openssl/evp.h>
#include <openssl/objects.h>
#include <openssl/pem2.h>
#include <openssl/x509.h>
#include <openssl/x509v3.h>
#include <openssl/conf.h>
#include <openssl/pkcs12.h>
#include <openssl/err.h>
void ERR_load_crypto_strings(void)
{

View File

@@ -57,12 +57,12 @@
*/
#include <stdio.h>
#include "lhash.h"
#include "crypto.h"
#include <openssl/lhash.h>
#include <openssl/crypto.h>
#include "cryptlib.h"
#include "buffer.h"
#include "err.h"
#include "crypto.h"
#include <openssl/buffer.h>
#include <openssl/err.h>
#include <openssl/crypto.h>
#ifndef NO_FP_API
void ERR_print_errors_fp(FILE *fp)