[Xfce4-commits] [xfce/exo] 02/03: Properly quote AC_LANG_SOURCE

noreply at xfce.org noreply at xfce.org
Thu Feb 19 21:08:42 CET 2015


This is an automated email from the git hooks/post-receive script.

hjudt pushed a commit to branch master
in repository xfce/exo.

commit 6bf0410aa03d725eae3462471bcb389215cdfbf0
Author: Harald Judt <h.judt at gmx.at>
Date:   Thu Feb 19 20:35:43 2015 +0100

    Properly quote AC_LANG_SOURCE
    
    Arguments were underquoted, resulting in the following warning:
    AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
---
 configure.ac.in |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index e9aa2cd..9c0b530 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -201,7 +201,7 @@ if test x"$enable_visibility" != x"no"; then
   save_CFLAGS="$CFLAGS"
   CFLAGS="$CFLAGS -Wall -Werror"
   AC_MSG_CHECKING([whether $CC supports the GNUC visibility attribute])
-  AC_COMPILE_IFELSE(AC_LANG_SOURCE(
+  AC_COMPILE_IFELSE([AC_LANG_SOURCE(
   [
     void test_default (void);
     void test_hidden (void);
@@ -210,7 +210,7 @@ if test x"$enable_visibility" != x"no"; then
     void __attribute__ ((visibility("hidden"))) test_hidden (void) {}
 
     int main (int argc, char **argv) { test_default (); test_hidden (); return 0; }
-  ]),
+  ])],
   [
     have_gnuc_visibility=yes
     AC_MSG_RESULT([yes])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list