Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Jun 2023 12:16:38 GMT
From:      Joseph Mingrone <jrm@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: a75d93a74d55 - main - tcpdump: Do not hard code HAVE_LIBCRYPTO in config.h
Message-ID:  <202306091216.359CGcHT013223@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jrm:

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

commit a75d93a74d55d371876f5444075de4ecd685297f
Author:     Joseph Mingrone <jrm@FreeBSD.org>
AuthorDate: 2023-06-08 22:51:32 +0000
Commit:     Joseph Mingrone <jrm@FreeBSD.org>
CommitDate: 2023-06-09 12:16:11 +0000

    tcpdump: Do not hard code HAVE_LIBCRYPTO in config.h
    
    Reviewed by:    emaste
    Fixes:          ee67461e5682 (tpcdump: Update to 4.99.4)
    Sponsored by:   The FreeBSD Foundation
---
 usr.sbin/tcpdump/tcpdump/config.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/usr.sbin/tcpdump/tcpdump/config.h b/usr.sbin/tcpdump/tcpdump/config.h
index 08a7afc9841c..2aa1020af274 100644
--- a/usr.sbin/tcpdump/tcpdump/config.h
+++ b/usr.sbin/tcpdump/tcpdump/config.h
@@ -66,7 +66,8 @@
 /* #undef HAVE_LIBCAP_NG */
 
 /* Define to 1 if you have the `crypto' library (-lcrypto). */
-#define HAVE_LIBCRYPTO 1
+/* See Makefile */
+/* #undef HAVE_LIBCRYPTO */
 
 /* Define to 1 if you have the `rpc' library (-lrpc). */
 /* #undef HAVE_LIBRPC */



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