This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git

commit ba0bb75af007ba184dd96eec9dcb028c374d7e69
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Jan 7 15:51:44 2025 +0000

    Fix warnings for under quoted calls to AC_DEFUN
---
 src/native/unix/support/apfunctions.m4 | 4 ++--
 src/native/unix/support/apsupport.m4   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/native/unix/support/apfunctions.m4 
b/src/native/unix/support/apfunctions.m4
index c9b7150..e368840 100644
--- a/src/native/unix/support/apfunctions.m4
+++ b/src/native/unix/support/apfunctions.m4
@@ -15,12 +15,12 @@ dnl See the License for the specific language governing 
permissions and
 dnl limitations under the License.
 dnl
 
-AC_DEFUN(AP_MSG_HEADER,[
+AC_DEFUN([AP_MSG_HEADER],[
   printf "*** %s ***\n" "$1" 1>&2
   AC_PROVIDE([$0])
 ])
 
-AC_DEFUN(AP_CANONICAL_HOST_CHECK,[
+AC_DEFUN([AP_CANONICAL_HOST_CHECK],[
   AC_MSG_CHECKING([cached host system type])
   if { test x"${ac_cv_host_system_type+set}" = x"set"  &&
        test x"$ac_cv_host_system_type" != x"$host" ; }
diff --git a/src/native/unix/support/apsupport.m4 
b/src/native/unix/support/apsupport.m4
index dbca23f..832a5c6 100644
--- a/src/native/unix/support/apsupport.m4
+++ b/src/native/unix/support/apsupport.m4
@@ -15,7 +15,7 @@ dnl See the License for the specific language governing 
permissions and
 dnl limitations under the License.
 dnl
 
-AC_DEFUN(AP_SUPPORTED_HOST,[
+AC_DEFUN([AP_SUPPORTED_HOST],[
   AC_MSG_CHECKING([C flags dependant on host system type])
 
   case $host_os in

Reply via email to