summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-22 17:59:17 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-22 17:59:17 -0800
commitcdf4b942d6185b50e4d466b9b60524d2db4c2fde (patch)
tree6db9f40c213e311d4f164f5472e9b5976f282546
parente47847d7fb97488f0bab1a704c6f1d0633f9c03b (diff)
Use COMPRESS_FLAGS to improve build reproducibility
Raises required version of font-util from 1.2 to 1.4 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac6
3 files changed, 5 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 259df65..84506a6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,7 +29,7 @@ variables:
# The tag should be updated each time the list of packages is updated.
# Changing a tag forces the associated image to be rebuilt.
# Note: the tag has no meaning, we use a date format purely for readability
- FDO_DISTRIBUTION_TAG: '2023-02-15.0'
+ FDO_DISTRIBUTION_TAG: '2023-02-22.0'
FDO_DISTRIBUTION_PACKAGES: 'git gcc pkgconf autoconf automake make xorg-util-macros xorg-font-util xorg-fonts-encodings xorg-bdftopcf xorg-mkfontscale fontconfig'
diff --git a/Makefile.am b/Makefile.am
index 5a7716b..044673e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -29,7 +29,7 @@ SUFFIXES = .bdf .pcf$(COMPRESS_SUFFIX)
.bdf.pcf$(COMPRESS_SUFFIX):
@rm -f $@
- $(AM_V_GEN)$(BDFTOPCF) -t $< | $(COMPRESS) > $@
+ $(AM_V_GEN)$(BDFTOPCF) -t $< | $(COMPRESS) $(COMPRESS_FLAGS) > $@
fontdir = @FONTDIR@
font_DATA = $(PCF_FILES)
diff --git a/configure.ac b/configure.ac
index 58136b1..7ab94c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,10 +33,10 @@ m4_ifndef([XORG_MACROS_VERSION],
XORG_MACROS_VERSION(1.20)
XORG_DEFAULT_NOCODE_OPTIONS
-# Require X.Org's font util macros 1.2 or later
+# Require X.Org's font util macros 1.4 or later for COMPRESS_FLAGS
m4_ifndef([XORG_FONT_MACROS_VERSION],
- [m4_fatal([must install X.Org font-util 1.2 or later before running autoconf/autogen])])
-XORG_FONT_MACROS_VERSION(1.2)
+ [m4_fatal([must install X.Org font-util 1.4 or later before running autoconf/autogen])])
+XORG_FONT_MACROS_VERSION(1.4)
XORG_FONTDIR([misc])
XORG_FONT_BDF_UTILS