[Xfce4-commits] [xfce/libxfce4ui] 01/01: Properly quote AC_LANG_SOURCE
noreply at xfce.org
noreply at xfce.org
Wed Feb 18 19:00:48 CET 2015
This is an automated email from the git hooks/post-receive script.
hjudt pushed a commit to branch master
in repository xfce/libxfce4ui.
commit f991dcbb333a8369f94b4e11c88af6a5aacf1e39
Author: Harald Judt <h.judt at gmx.at>
Date: Wed Feb 18 18:57:40 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 a0745af..e17ad53 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -249,7 +249,7 @@ if test "x$enable_visibility" != "xno"; then
saved_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS $xdt_vis_test_cflags"
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);
@@ -260,7 +260,7 @@ if test "x$enable_visibility" != "xno"; then
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