search for: config_klib_zip

Displaying 3 results from an estimated 3 matches for "config_klib_zip".

2013 Dec 03
0
[klibc:master] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP
...el.org/?p=libs/klibc/klibc.git;a=commit;h=c6fc1a4b086a5d6504bc5e1048f039f7a644d73b Author: Anton Blanchard <anton at samba.org> AuthorDate: Tue, 3 Dec 2013 18:15:58 +1100 Committer: H. Peter Anvin <hpa at zytor.com> CommitDate: Tue, 3 Dec 2013 10:53:46 -0800 [klibc] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP We were using CONFIG_KLIB_ZIP in a couple of places where we meant to use CONFIG_KLIBC_ZIP. I also added the option to the defconfig. Signed-off-by: Anton Blanchard <anton at samba.org> Signed-off-by: H. Peter Anvin <hpa at zytor.com> --- defconfig | 1 +...
2013 Dec 03
0
[PATCH] gzip: Fix typo CONFIG_KLIB_ZIP -> CONFIG_KLIBC_ZIP
We were using CONFIG_KLIB_ZIP in a couple of places where we meant to use CONFIG_KLIBC_ZIP. I also added the option to the defconfig. Signed-off-by: Anton Blanchard <anton at samba.org> --- defconfig | 1 + usr/gzip/Kbuild | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/defconfig b/defconf...
2005 Jul 31
0
[patch] kbuild: build all targets in gzip
...zip -gzip-y := gzip.o util.o unzip.o inflate.o +gzip-y := gzip.o util.o unzip.o inflate.o -ifeq (a,b) +# Additional targets +always := gunzip zcat gzip.stripped -Kept for convinience -ZIPSRCS = zip.c deflate.c trees.c bits.c -UNZIPSRCS = unzip.c inflate.c +# Optional ZIP support +gzip-$(CONFIG_KLIB_ZIP) += zip.o deflate.o trees.o bits.o +cflags-$(CONFIG_KLIB_ZIP) += -DSUPPORT_ZIP +EXTRA_USERCFLAGS := $(cflags-y) -SRCS = gzip.c util.c $(UNZIPSRCS) -OBJS = $(SRCS:.c=.o) -HDRS = gzip.h tailor.h revision.h -LIBS = $(KLIBC) $(LIBGCC) +# Additionally linked targets +$(obj)/gunzip $(obj)/zcat: $(obj...