git: bd7c71cdedc3 - main - mail/queue-fix: include errno.h for errno

From: Brooks Davis <brooks_at_FreeBSD.org>
Date: Mon, 30 Sep 2024 22:15:15 UTC
The branch main has been updated by brooks:

URL: https://cgit.FreeBSD.org/ports/commit/?id=bd7c71cdedc36ed8e3e993f93fa400207f01240c

commit bd7c71cdedc36ed8e3e993f93fa400207f01240c
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2024-09-30 15:56:09 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2024-09-30 22:13:43 +0000

    mail/queue-fix: include errno.h for errno
    
    errno must be accessed by a macro from errno.h.
---
 mail/queue-fix/Makefile            |  2 +-
 mail/queue-fix/files/patch-error.h | 11 +++++++++++
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/mail/queue-fix/Makefile b/mail/queue-fix/Makefile
index 0641f07f85aa..021a567060cc 100644
--- a/mail/queue-fix/Makefile
+++ b/mail/queue-fix/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	queue-fix
 PORTVERSION=	1.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	mail
 MASTER_SITES=	http://www.netmeridian.com/e-huss/ \
 		GENTOO
diff --git a/mail/queue-fix/files/patch-error.h b/mail/queue-fix/files/patch-error.h
new file mode 100644
index 000000000000..e35ddb04802a
--- /dev/null
+++ b/mail/queue-fix/files/patch-error.h
@@ -0,0 +1,11 @@
+--- error.h.orig
++++ error.h
+@@ -1,7 +1,7 @@
+ #ifndef ERROR_H
+ #define ERROR_H
+ 
+-extern int errno;
++#include <errno.h>
+ 
+ extern int error_intr;
+ extern int error_nomem;