summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-08-13 22:34:27 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-08-13 22:34:27 +0000
commit554c47cdde72472dd199c5fdf8bce58322a2995b (patch)
treed66ac85a1054475095edbe577b3cdeeaaa6757a4
parent40ff315c917f4e65c58b2a68cf5a9d6d6ac577db (diff)
Correct ssl include file(s) path.
-rw-r--r--lib/libkeynote/Makefile4
-rw-r--r--lib/libkeynote/keynote.h20
2 files changed, 12 insertions, 12 deletions
diff --git a/lib/libkeynote/Makefile b/lib/libkeynote/Makefile
index 9c0399326c7..4388cf0478b 100644
--- a/lib/libkeynote/Makefile
+++ b/lib/libkeynote/Makefile
@@ -1,9 +1,9 @@
-# $OpenBSD: Makefile,v 1.4 1999/05/31 20:09:58 angelos Exp $
+# $OpenBSD: Makefile,v 1.5 1999/08/13 22:34:26 angelos Exp $
LIB= keynote
MAN= keynote.3 keynote.4
-CFLAGS+= -Wall -DCRYPTO -I. -I${.CURDIR}
+CFLAGS+= -Wall -DCRYPTO -I/usr/include/ssl -I. -I${.CURDIR}
LEXFLAGS = -Cr -Pkn -s -i
YACCFLAGS = -d -p kn -b k
diff --git a/lib/libkeynote/keynote.h b/lib/libkeynote/keynote.h
index 0fbfc449fe9..ad6e15fb633 100644
--- a/lib/libkeynote/keynote.h
+++ b/lib/libkeynote/keynote.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: keynote.h,v 1.4 1999/05/31 20:09:59 angelos Exp $ */
+/* $OpenBSD: keynote.h,v 1.5 1999/08/13 22:34:26 angelos Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)
*
@@ -25,15 +25,15 @@
#include <regex.h>
#ifdef CRYPTO
-#include "ssl/crypto.h"
-#include "ssl/dsa.h"
-#include "ssl/rsa.h"
-#include "ssl/sha.h"
-#include "ssl/md5.h"
-#include "ssl/err.h"
-#include "ssl/rand.h"
-#include "ssl/x509.h"
-#include "ssl/pem.h"
+#include "crypto.h"
+#include "dsa.h"
+#include "rsa.h"
+#include "sha.h"
+#include "md5.h"
+#include "err.h"
+#include "rand.h"
+#include "x509.h"
+#include "pem.h"
#endif /* CRYPTO */
#ifdef WIN32