From: Ivan Maidanski Date: Tue, 6 Jun 2017 22:14:16 +0000 (+0300) Subject: Remove extraneous semicolons after AC_MSG_WARN (configure) X-Git-Tag: v8.0.0~707 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e86915e;p=gc Remove extraneous semicolons after AC_MSG_WARN (configure) * configure.ac (AC_MSG_WARN): Remove trailing ';' symbol. --- diff --git a/configure.ac b/configure.ac index 798bc727..32865b98 100644 --- a/configure.ac +++ b/configure.ac @@ -177,7 +177,7 @@ case "$THREADS" in AC_DEFINE(PARALLEL_MARK) fi AC_DEFINE(THREAD_LOCAL_ALLOC) - AC_MSG_WARN("Explicit GC_INIT() calls may be required."); + AC_MSG_WARN("Explicit GC_INIT() calls may be required.") ;; *-*-hpux11*) AC_MSG_WARN("Only HP/UX 11 POSIX threads are supported.") @@ -187,7 +187,7 @@ case "$THREADS" in AC_DEFINE(PARALLEL_MARK) fi AC_DEFINE(THREAD_LOCAL_ALLOC) - AC_MSG_WARN("Explicit GC_INIT() calls may be required."); + AC_MSG_WARN("Explicit GC_INIT() calls may be required.") THREADDLLIBS="-lpthread -lrt" # HPUX needs REENTRANT for the _r calls. AC_DEFINE(_REENTRANT, 1, [Required define if using POSIX threads.]) @@ -277,7 +277,7 @@ case "$THREADS" in ;; *-*-darwin*) AC_DEFINE(GC_THREADS) - AC_MSG_WARN("Explicit GC_INIT() calls may be required."); + AC_MSG_WARN("Explicit GC_INIT() calls may be required.") # Parallel-mark is not well-tested on Darwin if test "${enable_parallel_mark}" != no; then AC_DEFINE(PARALLEL_MARK) @@ -291,7 +291,7 @@ case "$THREADS" in AC_DEFINE(PARALLEL_MARK) fi AC_DEFINE(THREAD_LOCAL_ALLOC) - AC_MSG_WARN("Explicit GC_INIT() calls may be required."); + AC_MSG_WARN("Explicit GC_INIT() calls may be required.") AM_CFLAGS="$AM_CFLAGS -pthread" THREADDLLIBS="-lpthread -lrt" ;; @@ -336,7 +336,7 @@ case "$THREADS" in AC_DEFINE(PARALLEL_MARK) fi AC_DEFINE(THREAD_LOCAL_ALLOC) - AC_MSG_WARN("Explicit GC_INIT() calls may be required."); + AC_MSG_WARN("Explicit GC_INIT() calls may be required.") AM_CFLAGS="-pthread $AM_CFLAGS" ;; aix)