The branch main has been updated by emaste:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=7b529268a54a377f40ba435930f0c3fa8c255733

commit 7b529268a54a377f40ba435930f0c3fa8c255733
Author:     Ed Maste <ema...@freebsd.org>
AuthorDate: 2021-09-02 00:35:45 +0000
Commit:     Ed Maste <ema...@freebsd.org>
CommitDate: 2021-09-02 00:42:41 +0000

    openssh: regenerate config.h
    
    Since config.h was last regenerated FreeBSD has added (a stub) libdl,
    and has removed sys/dir.h.  Regenerate config.h to avoid spurious
    additional changes when OpenSSH is next updated.
    
    There should be no issue if this change is MFC'd, but I don't plan to do
    so.  Although configure checks for libdl HAVE_LIBDL isn't even used, and
    sys/dir.h was non-functional before being removed.  The state of these
    two config.h settings should make no difference in the built OpenSSH.
    
    Sponsored by:   The FreeBSD Foundation
---
 crypto/openssh/config.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto/openssh/config.h b/crypto/openssh/config.h
index dbdad4faaca1..df98cea2b4ba 100644
--- a/crypto/openssh/config.h
+++ b/crypto/openssh/config.h
@@ -794,7 +794,7 @@
 /* #undef HAVE_LIBCRYPT */
 
 /* Define to 1 if you have the `dl' library (-ldl). */
-/* #undef HAVE_LIBDL */
+#define HAVE_LIBDL 1
 
 /* Define to 1 if you have the <libgen.h> header file. */
 #define HAVE_LIBGEN_H 1
@@ -1358,7 +1358,7 @@
 #define HAVE_SYS_CDEFS_H 1
 
 /* Define to 1 if you have the <sys/dir.h> header file. */
-#define HAVE_SYS_DIR_H 1
+/* #undef HAVE_SYS_DIR_H */
 
 /* Define if your system defines sys_errlist[] */
 #define HAVE_SYS_ERRLIST 1
_______________________________________________
dev-commits-src-main@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "dev-commits-src-main-unsubscr...@freebsd.org"

Reply via email to