Properly quote m4 function/macro names when defining them.
authorMichael Poole <mdpoole@troilus.org>
Sun, 18 Mar 2007 14:02:47 +0000 (14:02 +0000)
committerMichael Poole <mdpoole@troilus.org>
Sun, 18 Mar 2007 14:02:47 +0000 (14:02 +0000)
git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/branches/u2_10_12_branch@1787 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
acinclude.m4

index 2c22dddea8fa46cf062a0d3f65645b627ccf1915..66b364c3126272ff7da48319417d8e09bb0b4a2a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-03-18  Michael Poole <mdpoole@troilus.org>
+
+       * acinclude.m4 (unet_NONBLOCKING): Properly quote function name.
+       (unet_SIGNALS): Likewise.
+       (unet_CHECK_TYPE_SIZES): Likewise.
+       (AC_LIBRARY_NET): Likewise.
+
 2007-03-18  Kevin L. Mitchell  <klmitch@mit.edu>
 
        * ircd/m_gline.c (mo_gline): add permissions checks I kept
index 38685319cff089b61655a8bc0c222836b795118c..81814018a2ad11bf5ae51665a5c063f1f45f47a5 100644 (file)
@@ -4,7 +4,7 @@ dnl
 dnl   Check whether we have posix, bsd or sysv non-blocking sockets and
 dnl   define respectively NBLOCK_POSIX, NBLOCK_BSD or NBLOCK_SYSV.
 dnl
-AC_DEFUN(unet_NONBLOCKING,
+AC_DEFUN([unet_NONBLOCKING],
 [dnl Do we have posix, bsd or sysv non-blocking stuff ?
 AC_CACHE_CHECK([for posix non-blocking], unet_cv_sys_nonblocking_posix,
 [AC_TRY_RUN([#include <sys/types.h>
@@ -71,7 +71,7 @@ dnl   Check if we have posix signals, reliable bsd signals or
 dnl   unreliable sysv signals and define respectively POSIX_SIGNALS,
 dnl   BSD_RELIABLE_SIGNALS or SYSV_UNRELIABLE_SIGNALS.
 dnl
-AC_DEFUN(unet_SIGNALS,
+AC_DEFUN([unet_SIGNALS],
 [dnl Do we have posix signals, reliable bsd signals or unreliable sysv signals ?
 AC_CACHE_CHECK([for posix signals], unet_cv_sys_signal_posix,
 [AC_TRY_COMPILE([#include <signal.h>],
@@ -108,7 +108,7 @@ dnl Macro: unet_CHECK_TYPE_SIZES
 dnl
 dnl Check the size of several types and define a valid int16_t and int32_t.
 dnl
-AC_DEFUN(unet_CHECK_TYPE_SIZES,
+AC_DEFUN([unet_CHECK_TYPE_SIZES],
 [dnl Check type sizes
 AC_CHECK_SIZEOF(short)
 AC_CHECK_SIZEOF(int)
@@ -179,7 +179,7 @@ dnl
 dnl The check for libresolv is in case you are attempting to link statically
 dnl and happen to have a libresolv.a lying around (and no libnsl.a).
 dnl
-AC_DEFUN(AC_LIBRARY_NET, [
+AC_DEFUN([AC_LIBRARY_NET], [
    # Most operating systems have gethostbyname() in the default searched
    # libraries (i.e. libc):
    AC_CHECK_FUNC(gethostbyname, ,