tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 077353d82bf76cd6d74199ef3716cfd85189a227
parent 7d5ae0c50c497e7fbe1a9b29f6d6bb97eab8570c
Author: Julien Cristau <jcristau@mozilla.com>
Date:   Tue, 25 Nov 2025 09:49:16 +0000

Bug 2002193 - clean up autoconf2.13 references. r=firefox-build-system-reviewers,sergesanspaille

We don't use it anymore, so no need to install it in CI.

Differential Revision: https://phabricator.services.mozilla.com/D273962

Diffstat:
Mtaskcluster/docker/android-build/Dockerfile | 1-
Mtaskcluster/docker/android-components/Dockerfile | 1-
Mtaskcluster/docker/android-ui-tests/Dockerfile | 1-
Mtaskcluster/docker/recipes/ubuntu1804-test-system-setup-base.sh | 1-
Mtaskcluster/docker/recipes/ubuntu2404-test-system-setup-base.sh | 1-
Mtaskcluster/docker/static-analysis-build/Dockerfile | 1-
Mtaskcluster/docker/toolchain-build/Dockerfile | 1-
Mtools/sanitizer/docs/asan.rst | 1-
Mtools/sanitizer/docs/memory_sanitizer.rst | 1-
Mtools/sanitizer/docs/tsan.rst | 1-
10 files changed, 0 insertions(+), 10 deletions(-)

diff --git a/taskcluster/docker/android-build/Dockerfile b/taskcluster/docker/android-build/Dockerfile @@ -10,7 +10,6 @@ VOLUME /builds/worker/tooltool-cache # git and openssh-client are used to upload GeckoView javadoc to Github. RUN apt-get update && \ apt-get install \ - autoconf2.13 \ build-essential \ base-files \ ccache \ diff --git a/taskcluster/docker/android-components/Dockerfile b/taskcluster/docker/android-components/Dockerfile @@ -17,7 +17,6 @@ ENV CURL='curl --location --retry 5' \ # yaml required by some ui-test tasks RUN apt-get update && \ apt-get install \ - autoconf2.13 \ build-essential \ base-files \ ccache \ diff --git a/taskcluster/docker/android-ui-tests/Dockerfile b/taskcluster/docker/android-ui-tests/Dockerfile @@ -14,7 +14,6 @@ ENV CURL='curl --location --retry 5' \ RUN apt-get update && \ apt-get install \ - autoconf2.13 \ build-essential \ base-files \ ccache \ diff --git a/taskcluster/docker/recipes/ubuntu1804-test-system-setup-base.sh b/taskcluster/docker/recipes/ubuntu1804-test-system-setup-base.sh @@ -11,7 +11,6 @@ sed -i /APT::Install-Recommends/d /etc/apt/apt.conf.d/99taskcluster # build a list of packages to be installed nad call it in one go. apt_packages=() -apt_packages+=('autoconf2.13') apt_packages+=('bluez-cups') apt_packages+=('build-essential') apt_packages+=('ca-certificates') diff --git a/taskcluster/docker/recipes/ubuntu2404-test-system-setup-base.sh b/taskcluster/docker/recipes/ubuntu2404-test-system-setup-base.sh @@ -18,7 +18,6 @@ if [[ "$ARCH" == "amd64" ]]; then apt_packages+=('gcc-multilib') fi -apt_packages+=('autoconf2.13') apt_packages+=('bluez-cups') apt_packages+=('build-essential') apt_packages+=('ca-certificates') diff --git a/taskcluster/docker/static-analysis-build/Dockerfile b/taskcluster/docker/static-analysis-build/Dockerfile @@ -9,7 +9,6 @@ ENV XZ_OPT=-T0 RUN apt-get update && \ apt-get install \ - autoconf2.13 \ automake \ bison \ bzip2 \ diff --git a/taskcluster/docker/toolchain-build/Dockerfile b/taskcluster/docker/toolchain-build/Dockerfile @@ -14,7 +14,6 @@ RUN /usr/local/sbin/setup_packages.sh $TASKCLUSTER_ROOT_URL $DOCKER_IMAGE_PACKAG RUN apt-get update && \ apt-get install \ autoconf \ - autoconf2.13 \ automake \ bison \ build-essential \ diff --git a/tools/sanitizer/docs/asan.rst b/tools/sanitizer/docs/asan.rst @@ -201,7 +201,6 @@ subdirectory with that name. elif [ -d $1 ] ; then echo "directory $1 already exists" else - autoconf2.13 mkdir $1 cd $1 CC="clang" \ diff --git a/tools/sanitizer/docs/memory_sanitizer.rst b/tools/sanitizer/docs/memory_sanitizer.rst @@ -143,7 +143,6 @@ subdirectory with that name. elif [ -d $1 ] ; then echo "directory $1 already exists" else - autoconf2.13 mkdir $1 cd $1 LLVM_ROOT="/path/to/llvm" diff --git a/tools/sanitizer/docs/tsan.rst b/tools/sanitizer/docs/tsan.rst @@ -197,7 +197,6 @@ subdirectory with that name. elif [ -d $1 ] ; then echo "directory $1 already exists" else - autoconf2.13 mkdir $1 cd $1 CC="/path/to/mozbuild/clang" \