[Libreoffice-commits] online.git: configure.ac

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Oct 30 10:51:32 UTC 2018


 configure.ac |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit d5c5a17750c06163b62dc8b04dd78087fdc6917a
Author:     Tor Lillqvist <tml at collabora.com>
AuthorDate: Tue Oct 30 12:37:31 2018 +0200
Commit:     Tor Lillqvist <tml at collabora.com>
CommitDate: Tue Oct 30 12:49:59 2018 +0200

    We can't use shell conditionals to decide whether to run m4 code or not
    
    Put the definition of the PKG_CHECK_MODULES m4 macro (as empty, for
    macOS) inside a m4_if that checks uname, not inside a shell if
    statement.

diff --git a/configure.ac b/configure.ac
index b17257c40..4dbf70409 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,6 +10,9 @@ AM_INIT_AUTOMAKE([1.10 subdir-objects tar-pax -Wno-portability])
 
 AC_CONFIG_MACRO_DIR([m4])
 
+# We don't want to require pkg-config and PKG_CHECK_MODULES on macOS
+m4_if(m4_esyscmd_s([uname -s]),Linux,[],[m4_define([PKG_CHECK_MODULES],[])])
+
 LOOLWSD_VERSION_MAJOR=`echo $VERSION | awk -F. '{print $1}'`
 LOOLWSD_VERSION_MINOR=`echo $VERSION | awk -F. '{print $2}'`
 LOOLWSD_VERSION_MICRO=`echo $VERSION | awk -F. '{print $3}'`
@@ -204,7 +207,6 @@ ENABLE_IOSAPP=
 IOSAPP_NAME="Mobile"
 if test "$enable_iosapp" = "yes"; then
    ENABLE_IOSAPP=true
-   m4_define([PKG_CHECK_MODULES],[])
    if test -n "$with_iosapp_name"; then
       IOSAPP_NAME="$with_iosapp_name"
    fi


More information about the Libreoffice-commits mailing list