From ab4628e756ab73d8193ed62b591417dad561b298 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 17 Feb 2024 21:13:24 +0100 Subject: Fix optional compilation of lzo compressors - Simple fixup in autoconf.ac - Make compilation of jffsX-utils compr_lzo.c optional. Simply don't compile it if we built without LZO and remove the place holders. They are not used anyway if we build without LZO. Signed-off-by: David Oberhollenzer --- jffsX-utils/compr_lzo.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'jffsX-utils/compr_lzo.c') diff --git a/jffsX-utils/compr_lzo.c b/jffsX-utils/compr_lzo.c index 337ebe9..ddd8d55 100644 --- a/jffsX-utils/compr_lzo.c +++ b/jffsX-utils/compr_lzo.c @@ -24,8 +24,6 @@ #include #include #include - -#ifdef WITH_LZO #include #include #include @@ -121,16 +119,3 @@ void jffs2_lzo_exit(void) free(lzo_compress_buf); free(lzo_mem); } - -#else - -int jffs2_lzo_init(void) -{ - return 0; -} - -void jffs2_lzo_exit(void) -{ -} - -#endif -- cgit v1.2.3