Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd Handle OpenSSL-3.x



details:   https://anonhg.NetBSD.org/src/rev/7c30b85a0bd4
branches:  trunk
changeset: 374675:7c30b85a0bd4
user:      christos <christos%NetBSD.org@localhost>
date:      Tue May 09 20:55:39 2023 +0000

description:
Handle OpenSSL-3.x

diffstat:

 external/bsd/pam-u2f/bin/pamu2fcfg/Makefile  |  4 +++-
 external/bsd/tcpdump/bin/Makefile            |  4 +++-
 external/bsd/wpa/bin/hostapd/Makefile        |  6 +++++-
 external/bsd/wpa/bin/wpa_passphrase/Makefile |  3 ++-
 external/bsd/wpa/bin/wpa_supplicant/Makefile |  5 ++++-
 5 files changed, 17 insertions(+), 5 deletions(-)

diffs (85 lines):

diff -r b806cb4334f3 -r 7c30b85a0bd4 external/bsd/pam-u2f/bin/pamu2fcfg/Makefile
--- a/external/bsd/pam-u2f/bin/pamu2fcfg/Makefile       Tue May 09 20:53:23 2023 +0000
+++ b/external/bsd/pam-u2f/bin/pamu2fcfg/Makefile       Tue May 09 20:55:39 2023 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2020/11/04 13:46:46 khorben Exp $
+# $NetBSD: Makefile,v 1.5 2023/05/09 21:08:34 christos Exp $
 
 .include <bsd.own.mk>
 
@@ -27,4 +27,6 @@ pamu2fcfg.1:
        xsltproc --nonet --xinclude -o pamu2fcfg.1 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl' pamu2fcfg.1.xml
        rm -f pamu2fcfg.1.xml
 
+COPTS.util.c+= -Wno-error=deprecated-declarations
+
 .include <bsd.prog.mk>
diff -r b806cb4334f3 -r 7c30b85a0bd4 external/bsd/tcpdump/bin/Makefile
--- a/external/bsd/tcpdump/bin/Makefile Tue May 09 20:53:23 2023 +0000
+++ b/external/bsd/tcpdump/bin/Makefile Tue May 09 20:55:39 2023 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.21 2021/04/12 02:54:07 mrg Exp $  
+#      $NetBSD: Makefile,v 1.22 2023/05/09 20:55:39 christos Exp $     
 
 WARNS?=        1       # XXX: need to cleanup later
 
@@ -208,5 +208,7 @@ tcpdump.8: tcpdump.1.in
 CWARNFLAGS.clang+=     -Wno-error=address-of-packed-member
 CWARNFLAGS.gcc+=       ${GCC_NO_ADDR_OF_PACKED_MEMBER}
 COPTS.print-bgp.c+=    ${GCC_NO_FORMAT_TRUNCATION}
+COPTS.signature.c+=    -Wno-error=deprecated-declarations
+COPTS.print-tcp.c+=    -Wno-error=deprecated-declarations
 
 .include <bsd.prog.mk>
diff -r b806cb4334f3 -r 7c30b85a0bd4 external/bsd/wpa/bin/hostapd/Makefile
--- a/external/bsd/wpa/bin/hostapd/Makefile     Tue May 09 20:53:23 2023 +0000
+++ b/external/bsd/wpa/bin/hostapd/Makefile     Tue May 09 20:55:39 2023 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2021/03/01 03:42:57 christos Exp $
+# $NetBSD: Makefile,v 1.16 2023/05/09 21:05:24 christos Exp $
 
 .include "${.CURDIR}/../Makefile.inc"
 
@@ -247,5 +247,9 @@ SRCS+= sha1-pbkdf2.c sha1.c md5.c
 .endif
 
 CWARNFLAGS.gcc+=       ${GCC_NO_ADDR_OF_PACKED_MEMBER}
+COPTS.dpp.c+= -Wno-error=deprecated-declarations
+COPTS.crypto_openssl.c+= -Wno-error=deprecated-declarations
+COPTS.fips_prf_openssl.c+= -Wno-error=deprecated-declarations
+COPTS.tls_openssl.c+= -Wno-error=deprecated-declarations
 
 .include <bsd.prog.mk>
diff -r b806cb4334f3 -r 7c30b85a0bd4 external/bsd/wpa/bin/wpa_passphrase/Makefile
--- a/external/bsd/wpa/bin/wpa_passphrase/Makefile      Tue May 09 20:53:23 2023 +0000
+++ b/external/bsd/wpa/bin/wpa_passphrase/Makefile      Tue May 09 20:55:39 2023 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2019/01/05 05:40:00 christos Exp $
+# $NetBSD: Makefile,v 1.6 2023/05/09 21:05:24 christos Exp $
 
 .include "${.CURDIR}/../Makefile.inc"
 
@@ -25,5 +25,6 @@ SRCS+= sha1-pbkdf2.c sha1.c md5.c
 
 
 MAN=   wpa_passphrase.8
+COPTS.crypto_openssl.c+= -Wno-error=deprecated-declarations
 
 .include <bsd.prog.mk>
diff -r b806cb4334f3 -r 7c30b85a0bd4 external/bsd/wpa/bin/wpa_supplicant/Makefile
--- a/external/bsd/wpa/bin/wpa_supplicant/Makefile      Tue May 09 20:53:23 2023 +0000
+++ b/external/bsd/wpa/bin/wpa_supplicant/Makefile      Tue May 09 20:55:39 2023 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2019/01/04 21:22:20 christos Exp $
+# $NetBSD: Makefile,v 1.11 2023/05/09 21:05:24 christos Exp $
 
 .include "${.CURDIR}/../Makefile.inc"
 
@@ -148,4 +148,7 @@ SRCS+= sha1-pbkdf2.c sha1.c md5.c
 
 .endif
 
+COPTS.crypto_openssl.c+= -Wno-error=deprecated-declarations
+COPTS.tls_openssl.c+= -Wno-error=deprecated-declarations
+
 .include <bsd.prog.mk>



Home | Main Index | Thread Index | Old Index