[Libreoffice-commits] .: configure.in
Tor Lillqvist
tml at kemper.freedesktop.org
Wed Apr 25 00:32:11 PDT 2012
configure.in | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
New commits:
commit d6b2189fee1df979dfee53ac3824f101278facdf
Author: Tor Lillqvist <tlillqvist at suse.com>
Date: Wed Apr 25 10:25:29 2012 +0300
Fix test syntax error: integer expression expected
diff --git a/configure.in b/configure.in
index 9fcc1f8..0b0ceda 100644
--- a/configure.in
+++ b/configure.in
@@ -2574,7 +2574,7 @@ HAVE_GCC_FINLINE_LIMIT=
HAVE_GCC_FNO_INLINE=
if test "$GCC" = "yes"; then
AC_MSG_CHECKING([whether $CC supports -ggdb2])
- if test -n "$CLANGVER" -a "$CLANGVER" -le 30100; then
+ if test -n "$CLANGVER" -a 0"$CLANGVER" -le 30100; then
# Option just ignored and silly warning that isn't a real
# warning printed
:
@@ -2591,7 +2591,7 @@ if test "$GCC" = "yes"; then
fi
AC_MSG_CHECKING([whether $CC supports -finline-limit=0])
- if test -n "$CLANGVER" -a "$CLANGVER" -le 30100; then
+ if test -n "$CLANGVER" -a 0"$CLANGVER" -le 30100; then
# As above
:
else
@@ -2607,7 +2607,7 @@ if test "$GCC" = "yes"; then
fi
AC_MSG_CHECKING([whether $CC supports -fno-inline])
- if test -n "$CLANGVER" -a "$CLANGVER" -le 30100; then
+ if test -n "$CLANGVER" -a 0"$CLANGVER" -le 30100; then
# Ditto
:
else
@@ -4784,7 +4784,7 @@ HAVE_GCC_FNO_DEFAULT_INLINE=
HAVE_GCC_FNO_ENFORCE_EH_SPECS=
if test "$GCC" = "yes"; then
AC_MSG_CHECKING([whether $CXX supports -fno-default-inline])
- if test -n "$CLANGVER" -a "$CLANGVER" -le 30100; then
+ if test -n "$CLANGVER" -a 0"$CLANGVER" -le 30100; then
# Option just ignored and silly warning that isn't a real
# warning printed
:
@@ -4803,7 +4803,7 @@ if test "$GCC" = "yes"; then
fi
AC_MSG_CHECKING([whether $CXX supports -fno-enforce-eh-specs])
- if test -n "$CLANGVER" -a "$CLANGVER" -le 30100; then
+ if test -n "$CLANGVER" -a 0"$CLANGVER" -le 30100; then
# As above
:
else
More information about the Libreoffice-commits
mailing list