]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* m4/regex.m4 (AM_WITH_REGEX): This macro was broken because
authorPavel Roskin <proski@gnu.org>
Fri, 24 Nov 2000 02:25:13 +0000 (02:25 +0000)
committerPavel Roskin <proski@gnu.org>
Fri, 24 Nov 2000 02:25:13 +0000 (02:25 +0000)
of M4 underquoting.
* m4/ccstdc.m4 (AC_PROG_CC_STDC): Added some M4 quotes.
* m4/dmalloc.m4 (AM_WITH_DMALLOC): Likewise.
* m4/lispdir.m4 (AM_PATH_LISPDIR): Likewise.
* m4/maintainer.m4 (AM_MAINTAINER_MODE): Likewise.
* m4/multi.m4 (AM_WITH_DMALLOC): Likewise.
* m4/python.m4 (AM_PATH_PYTHON): Likewise.
* m4/strtod.m4 (AM_FUNC_STRTOD): Likewise.

ChangeLog
m4/ccstdc.m4
m4/dmalloc.m4
m4/lispdir.m4
m4/maintainer.m4
m4/multi.m4
m4/python.m4
m4/regex.m4
m4/strtod.m4

index 172f491dce1ff9eef77f6c5c892d94acc7ea455b..585d4e573738c5fe3f3468420a81c661ac136b56 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2000-11-23  Pavel Roskin  <proski@gnu.org>
+
+       * m4/regex.m4 (AM_WITH_REGEX): This macro was broken because
+       of M4 underquoting.
+       * m4/ccstdc.m4 (AC_PROG_CC_STDC): Added some M4 quotes.
+       * m4/dmalloc.m4 (AM_WITH_DMALLOC): Likewise.
+       * m4/lispdir.m4 (AM_PATH_LISPDIR): Likewise.
+       * m4/maintainer.m4 (AM_MAINTAINER_MODE): Likewise.
+       * m4/multi.m4 (AM_WITH_DMALLOC): Likewise.
+       * m4/python.m4 (AM_PATH_PYTHON): Likewise.
+       * m4/strtod.m4 (AM_FUNC_STRTOD): Likewise.
+
 2000-11-23  Tom Tromey  <tromey@cygnus.com>
 
        * automake.in (require_file_internal): Pass $file as second
index bf472f053fbbf58b5254751c3b3a2733395b91ef..f8382295f247ae25dac2c4b41bd78bfba7c11001 100644 (file)
@@ -30,7 +30,7 @@ dnl like #elif.
 dnl FIXME: can't do this because then AC_AIX won't work due to a
 dnl circular dependency.
 dnl AC_BEFORE([$0], [AC_PROG_CPP])
-AC_MSG_CHECKING(for ${CC-cc} option to accept ANSI C)
+AC_MSG_CHECKING([for ${CC-cc} option to accept ANSI C])
 AC_CACHE_VAL(am_cv_prog_cc_stdc,
 [am_cv_prog_cc_stdc=no
 ac_save_CC="$CC"
@@ -83,7 +83,7 @@ CC="$ac_save_CC"
 if test -z "$am_cv_prog_cc_stdc"; then
   AC_MSG_RESULT([none needed])
 else
-  AC_MSG_RESULT($am_cv_prog_cc_stdc)
+  AC_MSG_RESULT([$am_cv_prog_cc_stdc])
 fi
 case "x$am_cv_prog_cc_stdc" in
   x|xno) ;;
index 6828c9f900d6a3733d6d964e312a180948cf3612..f724670891fddb464a38a5647d4737c89db5165a 100644 (file)
@@ -6,7 +6,7 @@
 # serial 1
 
 AC_DEFUN([AM_WITH_DMALLOC],
-[AC_MSG_CHECKING(if malloc debugging is wanted)
+[AC_MSG_CHECKING([if malloc debugging is wanted])
 AC_ARG_WITH(dmalloc,
 [  --with-dmalloc          use dmalloc, as in
                           http://www.dmalloc.com/dmalloc.tar.gz],
index 59b4678c8dbe2034e9eac2641c247861a4fd2cdc..7f8b1bb65a9f760b82470c221c63ee644f14bec7 100644 (file)
@@ -11,7 +11,7 @@ AC_DEFUN([AM_PATH_LISPDIR],
   [   --with-lispdir            Override the default lisp directory ],
   [ lispdir="$withval" 
     AC_MSG_CHECKING([where .elc files should go])
-    AC_MSG_RESULT($lispdir)],
+    AC_MSG_RESULT([$lispdir])],
   [
   # If set to t, that means we are running in a shell under Emacs.
   # If you have an Emacs named "t", then use the full path.
index 4e8f34882e2c12987ebcf3309b273052c040e67f..3cde2ee56240384bb716dfead312d756b5e833ff 100644 (file)
@@ -11,8 +11,8 @@ AC_DEFUN([AM_MAINTAINER_MODE],
                           (and sometimes confusing) to the casual installer],
       USE_MAINTAINER_MODE=$enableval,
       USE_MAINTAINER_MODE=no)
-  AC_MSG_RESULT($USE_MAINTAINER_MODE)
-  AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes)
+  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
+  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
   MAINT=$MAINTAINER_MODE_TRUE
   AC_SUBST(MAINT)dnl
 ]
index 85c6bc2c46282fe6335b2dde65a0b8e411a2ef7e..065f9db0fc1ae4f86a1707163da25420e359a9a6 100644 (file)
@@ -8,7 +8,7 @@ AC_ARG_ENABLE(multilib,
 [case "${enableval}" in
   yes) multilib=yes ;;
   no)  multilib=no ;;
-  *)   AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
+  *)   AC_MSG_ERROR([bad value ${enableval} for multilib option]) ;;
  esac], [multilib=yes])
 
 # We may get other options which we are undocumented:
index 8efacb1659ddd9a54c311874ef77aed1e99bd837..cad69f55779c5c635c7c7d7bbba5c3e370a0eacf 100644 (file)
@@ -99,5 +99,5 @@ Valid options are `module' or `package'
 
   dnl All done.
 
-  AC_MSG_RESULT(looks good)
+  AC_MSG_RESULT([looks good])
 ])
index 406f258e96e961db9e34be45be8c42e2656ef691..265a239f6dedee253149e64557a98ce1cd48fe8b 100644 (file)
@@ -15,7 +15,7 @@
 # will result in a smaller executable file.
 
 AC_DEFUN([AM_WITH_REGEX],
-[AC_MSG_CHECKING(which of GNU rx or gawk's regex is wanted)
+[AC_MSG_CHECKING([which of GNU rx or gawk's regex is wanted])
 AC_ARG_WITH(regex,
 [  --without-regex         use GNU rx in lieu of gawk's regex for matching],
 [test "$withval" = yes && am_with_regex=1],
@@ -24,8 +24,8 @@ if test -n "$am_with_regex"; then
   AC_MSG_RESULT(regex)
   AC_DEFINE(WITH_REGEX,1,[Define if using GNU regex])
   AC_CACHE_CHECK([for GNU regex in libc], am_cv_gnu_regex,
-    AC_TRY_LINK([], [extern int re_max_failures; re_max_failures = 1],
-               am_cv_gnu_regex=yes, am_cv_gnu_regex=no))
+    [AC_TRY_LINK([], [extern int re_max_failures; re_max_failures = 1],
+               am_cv_gnu_regex=yes, am_cv_gnu_regex=no)])
   if test $am_cv_gnu_regex = no; then
     LIBOBJS="$LIBOBJS regex.$ac_objext"
   fi
index d78d12d3a8ba567dc3cb5fee1a354bc554004931..4bdcdb0ed8388aa97f61ad578b868a01c954c590 100644 (file)
@@ -63,7 +63,7 @@ if test $am_cv_func_strtod = no; then
   AC_CHECK_FUNCS(pow)
   if test $ac_cv_func_pow = no; then
     AC_CHECK_LIB(m, pow, [am_cv_func_strtod_needs_libm=yes],
-                [AC_MSG_WARN(can't find library containing definition of pow)])
+                [AC_MSG_WARN([can't find library containing definition of pow])])
   fi
 fi
 ])