git: 6d1d788c20bb - main - security/farmhash: Fix build with llvm16

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Sun, 06 Aug 2023 20:30:29 UTC
The branch main has been updated by bofh:

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

commit 6d1d788c20bbb4cdea0b65baa9f11cc44e6789dc
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-08-06 19:22:06 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-08-06 20:30:18 +0000

    security/farmhash: Fix build with llvm16
    
    - Pet portclippy
    
    Approved by:    portmgr (blanket)
    Sponsored by:   The FreeBSD Foundation
---
 security/farmhash/Makefile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/security/farmhash/Makefile b/security/farmhash/Makefile
index 7498d503c229..4ed9c91329a5 100644
--- a/security/farmhash/Makefile
+++ b/security/farmhash/Makefile
@@ -10,12 +10,14 @@ LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		autoreconf compiler:c++11-lib gmake libtool
-GNU_CONFIGURE=	yes
+USE_CXXSTD=	c++14
 USE_GITHUB=	yes
 GH_ACCOUNT=	google
 GH_TAGNAME=	0d859a8
 USE_LDCONFIG=	yes
 
+GNU_CONFIGURE=	yes
+
 INSTALL_TARGET=	install-strip
 
 PLIST_FILES=	include/farmhash.h \
@@ -23,9 +25,8 @@ PLIST_FILES=	include/farmhash.h \
 		lib/libfarmhash.so \
 		lib/libfarmhash.so.0 \
 		lib/libfarmhash.so.0.0.0
+PORTDOCS=	*
 
 OPTIONS_DEFINE=	DOCS
 
-PORTDOCS=	*
-
 .include <bsd.port.mk>