Module Name: othersrc
Committed By: lukem
Date: Wed Aug 25 01:24:10 UTC 2021
Modified Files:
othersrc/usr.bin/tnftp: configure.ac
Log Message:
configure: enable AC_USE_SYSTEM_EXTENSIONS()
We use various POSIX extensions, so enable them.
This reduces compile warnings on some platforms (e.g. RHEL 8).
To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 othersrc/usr.bin/tnftp/configure.ac
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: othersrc/usr.bin/tnftp/configure.ac
diff -u othersrc/usr.bin/tnftp/configure.ac:1.41 othersrc/usr.bin/tnftp/configure.ac:1.42
--- othersrc/usr.bin/tnftp/configure.ac:1.41 Wed Aug 25 00:58:53 2021
+++ othersrc/usr.bin/tnftp/configure.ac Wed Aug 25 01:24:10 2021
@@ -1,4 +1,4 @@
-# $NetBSD: configure.ac,v 1.41 2021/08/25 00:58:53 lukem Exp $
+# $NetBSD: configure.ac,v 1.42 2021/08/25 01:24:10 lukem Exp $
#
# Process this file with autoconf to produce a configure script.
@@ -9,7 +9,7 @@ AC_COPYRIGHT([
Copyright (c) 1999-2021 The NetBSD Foundation, Inc.
All rights reserved.
])
-AC_REVISION([$Revision: 1.41 $])
+AC_REVISION([$Revision: 1.42 $])
AS_SHELL_SANITIZE()
@@ -19,6 +19,8 @@ AC_CONFIG_MACRO_DIR([buildaux])
AC_CONFIG_HEADERS([tnftp_config.h])
AC_CONFIG_LIBOBJ_DIR([libnetbsd])
+AC_USE_SYSTEM_EXTENSIONS()
+
AM_INIT_AUTOMAKE([-Wall -Werror foreign nostdinc silent-rules])
AM_MAINTAINER_MODE()