aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/lhash
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/lhash')
-rw-r--r--crypto/lhash/Makefile.ssl6
-rw-r--r--crypto/lhash/lh_stats.c2
-rw-r--r--crypto/lhash/lh_test.c2
-rw-r--r--crypto/lhash/lhash.c4
4 files changed, 7 insertions, 7 deletions
diff --git a/crypto/lhash/Makefile.ssl b/crypto/lhash/Makefile.ssl
index f30a7efe1c..779d254207 100644
--- a/crypto/lhash/Makefile.ssl
+++ b/crypto/lhash/Makefile.ssl
@@ -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:
diff --git a/crypto/lhash/lh_stats.c b/crypto/lhash/lh_stats.c
index 44ddff56c4..80b931c12b 100644
--- a/crypto/lhash/lh_stats.c
+++ b/crypto/lhash/lh_stats.c
@@ -63,7 +63,7 @@
* and things should work as expected */
#include "cryptlib.h"
-#include "lhash.h"
+#include <openssl/lhash.h>
#ifndef HEADER_BIO_H
diff --git a/crypto/lhash/lh_test.c b/crypto/lhash/lh_test.c
index 294b42bc82..08138b52c3 100644
--- a/crypto/lhash/lh_test.c
+++ b/crypto/lhash/lh_test.c
@@ -59,7 +59,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include "lhash.h"
+#include <openssl/lhash.h>
main()
{
diff --git a/crypto/lhash/lhash.c b/crypto/lhash/lhash.c
index 29e091525c..8c649ad251 100644
--- a/crypto/lhash/lhash.c
+++ b/crypto/lhash/lhash.c
@@ -97,8 +97,8 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
-#include "crypto.h"
-#include "lhash.h"
+#include <openssl/crypto.h>
+#include <openssl/lhash.h>
const char *lh_version="lhash" OPENSSL_VERSION_PTEXT;