diff options
Diffstat (limited to 'g10/Makefile.am')
-rw-r--r-- | g10/Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index cc0192c1b..0c91105fc 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -33,11 +33,18 @@ needed_libs = ../gl/libgnu.a ../common/libcommon.a ../jnlib/libjnlib.a bin_PROGRAMS = gpg2 gpgv2 +if ENABLE_BZIP2_SUPPORT +bzip2_source = compress-bz2.c +else +bzip2_source = +endif + + common_source = \ gpg.h \ build-packet.c \ compress.c \ - compress-bz2.c \ + $(bzip2_source) \ filter.h \ free-packet.c \ getkey.c \ |