[Libreoffice-commits] core.git: Branch 'aoo/trunk' - configure.in
Jan Iversen
jani at apache.org
Tue Nov 19 12:07:40 PST 2013
configure.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit b653ed6c9780961aa99cb1fc619355c5d2d94dcc
Author: Jan Iversen <jani at apache.org>
Date: Tue Nov 19 20:00:28 2013 +0000
WITH_STLPORT is set to "NO" but the test later is != "no".
Test is changed to "NO", now it works on ubuntu.
diff --git a/configure.in b/configure.in
index 3df0746..9a3e3c0 100644
--- a/configure.in
+++ b/configure.in
@@ -2694,8 +2694,8 @@ dnl ===================================================================
dnl Checks for what the default STL should be
dnl ===================================================================
AC_MSG_CHECKING([what the default STL should be])
- DEFAULT_TO_STLPORT="no"
-if test "$WITH_STLPORT" != "no"; then
+ DEFAULT_TO_STLPORT="NO"
+if test "$WITH_STLPORT" != "NO"; then
AC_MSG_ERROR([Option --with-stlport is no longer available.])
else
USE_SYSTEM_STL="YES"
More information about the Libreoffice-commits
mailing list