diff options
| author | Victor Kareh <[email protected]> | 2026-02-11 15:55:14 -0500 |
|---|---|---|
| committer | Victor Kareh <[email protected]> | 2026-02-12 08:44:19 -0500 |
| commit | 8b5aa899f81e65dbf20fd2d1191916cd4248b0c4 (patch) | |
| tree | 882faee3da73840de66444bf245cd55e90640649 /configure.ac | |
| parent | 636cd88ac33b7e54fad01b616e6dc8875b0e32ea (diff) | |
| download | libmateweather-drop-xml-compression.tar.bz2 libmateweather-drop-xml-compression.tar.xz | |
locations: remove compression supportdrop-xml-compression
libxml2 is removing built-in zlib support, which breaks reading
compressed Locations.xml.gz files. Instead of implementing our own
decompression, drop compression entirely.
Fixes: #144
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac index 9d7de3b..c00115d 100644 --- a/configure.ac +++ b/configure.ac @@ -45,18 +45,6 @@ AC_ARG_ENABLE(all-translations-in-one-xml, [enable_big_xml=no]) AM_CONDITIONAL(USE_ONE_BIG_XML, test "x$enable_big_xml" = "xyes") -AC_ARG_ENABLE(locations-compression, - [AS_HELP_STRING([--enable-locations-compression], - [Compress Locations.xml files])], - [enable_locations_compression=$enableval], - [enable_locations_compression=no]) -if test "x$enable_locations_compression" = "xyes"; then - COMPRESS_EXT=.gz -else - COMPRESS_EXT= -fi -AC_SUBST(COMPRESS_EXT) - MATE_COMPILE_WARNINGS dnl -- Check for GTK+ (required) ------------------------------------------ @@ -203,5 +191,4 @@ Configure summary: Compiler flags: ${CFLAGS} Warning flags: ${WARN_CFLAGS} Locations.xml translations: ${LOCATIONS_XML_TRANSLATIONS} - Locations.xml compression: ${enable_locations_compression} " >&2 |
