[Libreoffice-commits] core.git: 2 commits - configure.ac sal/rtl
Tor Lillqvist
tml at collabora.com
Sun Jul 27 23:46:53 PDT 2014
configure.ac | 14 +++++++-------
sal/rtl/strtmpl.cxx | 1 +
2 files changed, 8 insertions(+), 7 deletions(-)
New commits:
commit a1ff2bb9a881da6fa6ea148c0b06e7f23392f5de
Author: Tor Lillqvist <tml at collabora.com>
Date: Mon Jul 28 09:45:06 2014 +0300
Include <algorithm> for std::min
Change-Id: I012027c38a6d2b06a4bb0cb53743d350b124ccf4
diff --git a/sal/rtl/strtmpl.cxx b/sal/rtl/strtmpl.cxx
index 57c98e2..c50309e 100644
--- a/sal/rtl/strtmpl.cxx
+++ b/sal/rtl/strtmpl.cxx
@@ -22,6 +22,7 @@
/* String-Class */
/* ======================================================================= */
+#include <algorithm>
#include <cassert>
#include <limits>
commit 0f89f655c0b08dbeba90c587078e803c0db6c4f9
Author: Tor Lillqvist <tml at collabora.com>
Date: Mon Jul 28 09:22:29 2014 +0300
It's called "GNU Make", not "gnumake"
Change-Id: I54900e077d5325fb6bfad84a2afa37f3adf551bb
diff --git a/configure.ac b/configure.ac
index 20049b3..5ef2401 100644
--- a/configure.ac
+++ b/configure.ac
@@ -183,9 +183,9 @@ cd $BUILDDIR
x_Cygwin=[\#]
dnl ===================================================================
-dnl Search all the common names for GNU make
+dnl Search all the common names for GNU Make
dnl ===================================================================
-AC_MSG_CHECKING([for GNU make])
+AC_MSG_CHECKING([for GNU Make])
# try to use our own make if it is available and GNUMAKE was not already defined
if test -z "$GNUMAKE"; then
@@ -215,10 +215,10 @@ for a in "$MAKE" "$GNUMAKE" make gmake gnumake; do
done
AC_MSG_RESULT($GNUMAKE)
if test -z "$GNUMAKE"; then
- AC_MSG_ERROR([not found. install GNU make.])
+ AC_MSG_ERROR([not found. install GNU Make.])
else
if test "$GNUMAKE_WIN_NATIVE" = "TRUE" ; then
- AC_MSG_NOTICE([Using a native Win32 gnumake version.])
+ AC_MSG_NOTICE([Using a native Win32 GNU Make version.])
fi
fi
@@ -5020,7 +5020,7 @@ AC_SUBST(ENABLE_PCH)
TAB=`printf '\t'`
-AC_MSG_CHECKING([the GNU make version])
+AC_MSG_CHECKING([the GNU Make version])
_make_version=`$GNUMAKE --version | grep GNU | $GREP -v GPL | $SED -e 's@^[[^0-9]]*@@' -e 's@ .*@@' -e 's@,.*@@'`
_make_longver=`echo $_make_version | $AWK -F. '{ print \$1*10000+\$2*100+\$3 }'`
if test "$_make_longver" -ge "038200"; then
@@ -5041,7 +5041,7 @@ elif test "$_make_longver" -ge "038100"; then
elif test "$SHA1SUM" = "openssl"; then
SHA1SUM="openssl sha1"
fi
- AC_MSG_CHECKING([for GNU make bug 20033])
+ AC_MSG_CHECKING([for GNU Make bug 20033])
TESTGMAKEBUG20033=`mktemp -d tmp.XXXXXX`
$SED -e "s/<TAB>/$TAB/g" > $TESTGMAKEBUG20033/Makefile << EOF
A := \$(wildcard *.a)
@@ -5081,7 +5081,7 @@ else
fi
# find if gnumake support file function
-AC_MSG_CHECKING([whether GNU make supports the 'file' function])
+AC_MSG_CHECKING([whether GNU Make supports the 'file' function])
TESTGMAKEFILEFUNC="`mktemp -d -t tst.XXXXXX`"
if test "$GNUMAKE_WIN_NATIVE" = "TRUE" ; then
TESTGMAKEFILEFUNC=`cygpath -m $TESTGMAKEFILEFUNC`
More information about the Libreoffice-commits
mailing list