Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Feb 2023 18:35:14 GMT
From:      Cy Schubert <cy@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 389750e5fc9e - stable/12 - unbound: Fix config.h
Message-ID:  <202302141835.31EIZELu002254@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by cy:

URL: https://cgit.FreeBSD.org/src/commit/?id=389750e5fc9ed3ce25019c67f3ff2a9e06af5924

commit 389750e5fc9ed3ce25019c67f3ff2a9e06af5924
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2023-01-15 06:55:05 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2023-02-14 18:34:39 +0000

    unbound: Fix config.h
    
    FreeBSD src does not support HAVE_DECL_EVSIGNAL_ASSIGN. While reviewing
    the new config.h after regenerating it, this definition was not removed.
    
    Updating config.h is a manual process of configuring the port and
    copying/merging the generated config.h into src. This definition was
    missed and not removed (#undef'd).
    
    Fixes:          1838dec31895fd4752fa8631322ab93be0705a66
    
    (cherry picked from commit 06b93ef8cda227d755d7f6cfa95d08c0ccc9dc2d)
---
 usr.sbin/unbound/config.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/unbound/config.h b/usr.sbin/unbound/config.h
index 7ea0d3151ac5..bd36bb7573f8 100644
--- a/usr.sbin/unbound/config.h
+++ b/usr.sbin/unbound/config.h
@@ -117,7 +117,7 @@
 
 /* Define to 1 if you have the declaration of `evsignal_assign', and to 0 if
    you don't. */
-#define HAVE_DECL_EVSIGNAL_ASSIGN 1
+/* #undef HAVE_DECL_EVSIGNAL_ASSIGN */
 
 /* Define to 1 if you have the declaration of `inet_ntop', and to 0 if you
    don't. */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302141835.31EIZELu002254>