41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
From b2e3171e935be3c4b79657aebf4175ef3be403b1 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Matej=20Mu=C5=BEila?= <mmuzila@redhat.com>
|
|
Date: Mon, 18 Jul 2022 13:40:10 +0200
|
|
Subject: [PATCH] Back off the minimum required automake version to 1.11.
|
|
There isn't anything in libtiff currently that actually requires 1.12, and
|
|
changing this allows the package to be built on pre-F18 machines for easier
|
|
testing.
|
|
|
|
This patch can go away once we no longer care about testing on pre-F18.
|
|
---
|
|
Makefile.am | 2 +-
|
|
test/Makefile.am | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index aaabf4d1..66e13dd8 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -25,7 +25,7 @@
|
|
|
|
docdir = $(LIBTIFF_DOCDIR)
|
|
|
|
-AUTOMAKE_OPTIONS = 1.12 dist-zip foreign
|
|
+AUTOMAKE_OPTIONS = 1.11 dist-zip foreign
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
docfiles = \
|
|
diff --git a/test/Makefile.am b/test/Makefile.am
|
|
index b5823198..949667ee 100644
|
|
--- a/test/Makefile.am
|
|
+++ b/test/Makefile.am
|
|
@@ -23,7 +23,7 @@
|
|
|
|
# Process this file with automake to produce Makefile.in.
|
|
|
|
-AUTOMAKE_OPTIONS = 1.12 color-tests parallel-tests foreign
|
|
+AUTOMAKE_OPTIONS = 1.11 color-tests parallel-tests foreign
|
|
|
|
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
|
|