You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pe...@apache.org on 2013/02/20 00:22:14 UTC

svn commit: r1447959 - /openoffice/trunk/main/configure.in

Author: pescetti
Date: Tue Feb 19 23:22:14 2013
New Revision: 1447959

URL: http://svn.apache.org/r1447959
Log:
Allow --without-system-serf to override --with-system-libs

Modified:
    openoffice/trunk/main/configure.in

Modified: openoffice/trunk/main/configure.in
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/configure.in?rev=1447959&r1=1447958&r2=1447959&view=diff
==============================================================================
--- openoffice/trunk/main/configure.in (original)
+++ openoffice/trunk/main/configure.in Tue Feb 19 23:22:14 2013
@@ -4597,7 +4597,8 @@ SYSTEM_SERF=NO
 SERF_CFLAGS=
 SERF_LIBS=
 AC_MSG_CHECKING([which libserf to use])
-if test "x$with_system_serf" = "xyes" -o -n "$with_system_libs"; then
+if test -n "$with_system_serf" -o -n "$with_system_libs" && \
+  test "$with_system_serf" != "no"; then
     AC_MSG_RESULT([system])
     PKG_CHECK_MODULES([SERF], [serf-1 >= 1.1])
     SYSTEM_SERF=YES