im/configure.in
author Patrick Cloke <clokep@gmail.com>
Mon, 07 May 2018 17:49:55 -0400
changeset 29282 77e12339f59b8855ca31181df5fcd1fa0b81a007
parent 27854 84893db274a435ec11faa19c102efc9cd4780391
permissions -rw-r--r--
Added tag RELEASE_BASE_20180507 for changeset d1f2c2d881cb a=releasemerge ba=releasemerge DONTBUILD CLOSED TREE

dnl -*- Mode: Autoconf; tab-width: 2; indent-tabs-mode: nil; -*-
dnl vi: set tabstop=2 shiftwidth=2 expandtab:
dnl This Source Code Form is subject to the terms of the Mozilla Public
dnl License, v. 2.0. If a copy of the MPL was not distributed with this
dnl file, You can obtain one at http://mozilla.org/MPL/2.0/.

dnl Things we need to carry from confvars.sh
AC_SUBST(INSTANTBIRD_VERSION)

dnl More things we need to carry from confvars.sh
AC_SUBST(moztopsrcdir)
AC_SUBST(commtopsrcdir)
AC_SUBST(mozreltopsrcdir)
AC_SUBST(commreltopsrcdir)

if test `echo "$MOZ_EXTENSIONS" | grep -c purple` -ne 0; then
    MOZ_PURPLE=1
    AC_SUBST(MOZ_PURPLE)
fi

if test -n "$MOZ_PURPLE"; then
  tmpscript=`$PYTHON -c 'import os, tempfile; print tempfile.mktemp(prefix="subscript.").replace(os.sep, "/")'` || exit 1
  m4 "${srcdir}/build/autoconf/subconfigure.m4" \
   "${srcdir}/build/autoconf/altoptions.m4" \
   "${srcdir}/extensions/purple/configure.in" > $tmpscript
  . $tmpscript
  rm -f $tmpscript
fi