Remove openssl 1.1 regress
authortb <tb@openbsd.org>
Wed, 4 Sep 2024 04:36:14 +0000 (04:36 +0000)
committertb <tb@openbsd.org>
Wed, 4 Sep 2024 04:36:14 +0000 (04:36 +0000)
regress/usr.sbin/rpki-client/openssl11/Makefile [deleted file]
regress/usr.sbin/rpki-client/openssl11/unistd.h [deleted file]

diff --git a/regress/usr.sbin/rpki-client/openssl11/Makefile b/regress/usr.sbin/rpki-client/openssl11/Makefile
deleted file mode 100644 (file)
index d712299..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# $OpenBSD: Makefile,v 1.18 2023/05/22 15:20:16 tb Exp $
-
-LDADD +=       -Wl,-rpath,/usr/local/lib/eopenssl11 -L/usr/local/lib/eopenssl11
-CFLAGS +=      -I${.CURDIR}/ -I/usr/local/include/eopenssl11/
-
-.PATH:         ${.CURDIR}/..
-
-.include <bsd.regress.mk>
diff --git a/regress/usr.sbin/rpki-client/openssl11/unistd.h b/regress/usr.sbin/rpki-client/openssl11/unistd.h
deleted file mode 100644 (file)
index b3f5c3a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Public domain
- * compatibility shim for openssl11
- * overloading unistd.h is a ugly guly hack for this issue but works here
- */
-
-#include_next <unistd.h>
-
-#include <openssl/stack.h>
-
-#define CMS_get_version(cms, version) (*(version) = 3, 1)
-#define CMS_SignerInfo_get_version(si, version) (*(version) = 3, 1)
-
-#ifndef DECLARE_STACK_OF
-#define DECLARE_STACK_OF DEFINE_STACK_OF
-#endif