Lines Matching refs:compression
248 # Offer a --with-compression flag to control what compression method is
250 # by libXfont, including no compression.
252 # If COMPRESS_FLAGS is not set, and the compression method has flags needed
257 AC_MSG_CHECKING([font compression method])
258 AC_ARG_WITH(compression,
259 [AS_HELP_STRING([--with-compression=<no|compress|gzip|bzip2>],
260 [compression method to use on pcf fonts])],
261 [compression="$withval"], [compression="yes"])
262 if test x"$compression" = "xyes" ; then
263 compression="gzip"
265 AC_MSG_RESULT([${compression}])
266 case ${compression} in
272 *) AC_MSG_ERROR([${compression} is not a supported compression method]) ;;
275 XORG_FONT_REQUIRED_PROG(COMPRESS, ${compression})
277 AC_MSG_CHECKING([options to font compression command])