+++ /dev/null
-# $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>
+++ /dev/null
-/*
- * 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