configure.ac |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit ca8201ef54cd58e41504dc04101aa76c97a78733
Author: Lionel Elie Mamane <lio...@mamane.lu>
Date:   Mon May 13 07:53:52 2013 +0200

    configure.ac: fix error message on non-MacOS X builds
    
    Change-Id: I33c0b7218054d8d879d72a2a47899b39ae8458ca

diff --git a/configure.ac b/configure.ac
index 0a2f142..efa1b77 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8646,7 +8646,7 @@ DISABLE_OPENSSL="NO"
 AC_MSG_CHECKING([whether to disable OpenSSL usage])
 if test "$enable_openssl" = "yes"; then
     AC_MSG_RESULT([no])
-    if test $_os = Darwin -a $MAC_OS_X_VERSION_MIN_REQUIRED -ge 1070; then
+    if test "$_os" = Darwin -a "${MAC_OS_X_VERSION_MIN_REQUIRED:-0}" -ge 1070; 
then
         # OpenSSL is deprecated when building for 10.7 or later.
         #
         # 
http://stackoverflow.com/questions/7406946/why-is-apple-deprecating-openssl-in-macos-10-7-lion
commit 4af1a4a0865d91494c3197fc862bf3b7c49f3990
Author: Lionel Elie Mamane <lio...@mamane.lu>
Date:   Mon May 13 07:53:23 2013 +0200

    configure.ac: remove duplicate "no" AC_MSG_RESULT
    
    AC_PATH_PROG already says no
    
    Change-Id: Ib920492c89eeb5113474b834ca00882cf47bd322

diff --git a/configure.ac b/configure.ac
index 8ba6974..0a2f142 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7030,7 +7030,6 @@ else
         if test "$with_doxygen" = yes; then
             AC_PATH_PROG([DOXYGEN], [doxygen])
             if test -z "$DOXYGEN"; then
-                AC_MSG_RESULT([no])
                 if test "$enable_odk" = "" ; then
                     enable_odk="no"
                 else
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to