1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

[encoding] Rename deflate -> gzip

This commit is contained in:
Witold Filipczyk 2021-12-23 15:39:42 +01:00
parent 4e4f29874b
commit a67c307b03
5 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ include $(top_builddir)/Makefile.config
OBJS-$(CONFIG_BROTLI) += brotli.o
OBJS-$(CONFIG_BZIP2) += bzip2.o
OBJS-$(CONFIG_GZIP) += deflate.o
OBJS-$(CONFIG_GZIP) += gzip.o
OBJS-$(CONFIG_LZMA) += lzma.o
OBJS-$(CONFIG_ZSTD) += zstd.o

View File

@ -85,7 +85,7 @@ static const struct decoding_backend dummy_decoding_backend = {
#include "encoding/brotli.h"
#include "encoding/bzip2.h"
#include "encoding/deflate.h"
#include "encoding/gzip.h"
#include "encoding/lzma.h"
#include "encoding/zstd.h"

View File

@ -14,8 +14,8 @@
#include "elinks.h"
#include "encoding/deflate.h"
#include "encoding/encoding.h"
#include "encoding/gzip.h"
#include "util/memory.h"
/* How many bytes of compressed data to read before decompressing. */

View File

@ -1,5 +1,5 @@
#ifndef EL__ENCODING_DEFLATE_H
#define EL__ENCODING_DEFLATE_H
#ifndef EL__ENCODING_GZIP_H
#define EL__ENCODING_GZIP_H
#include "encoding/encoding.h"

View File

@ -5,7 +5,7 @@ if conf_data.get('CONFIG_BZIP2')
srcs += files('bzip2.c')
endif
if conf_data.get('CONFIG_GZIP')
srcs += files('deflate.c')
srcs += files('gzip.c')
endif
if conf_data.get('CONFIG_LZMA')
srcs += files('lzma.c')