mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
1575678710
* bzlib/: Include bzip2 code. * configure.ac [W32]: Force use of included bzip2 code. * scripts/autogen.sh <--build-w32>: Do not pass --with-bzip option. * Makefile.am (SUBDIRS): Add bzip. Use it only under W32. -- In the past it happened that we forgot to build against bzip2 which is a standard feature these days. Having the source included makes sure that we will always build with bzip2 support.
24 lines
843 B
Makefile
24 lines
843 B
Makefile
# ------------------------------------------------------------------
|
|
# This file is part of bzip2/libbzip2, a program and library for
|
|
# lossless, block-sorting data compression.
|
|
#
|
|
# bzip2/libbzip2 version 1.0.6 of 6 September 2010
|
|
# Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
|
|
#
|
|
# Please read the WARNING, DISCLAIMER and PATENTS sections in the
|
|
# README file.
|
|
#
|
|
# This program is released under the terms of the license contained
|
|
# in the file LICENSE.
|
|
# ------------------------------------------------------------------
|
|
#
|
|
# Modified by g10 Code on 2010-09-23.
|
|
# Changed to automake by g10 Code on 2012-01-13.
|
|
|
|
EXTRA_DIST = README README.1st CHANGES LICENSE
|
|
|
|
noinst_LIBRARIES = libbz2.a
|
|
|
|
libbz2_a_SOURCES = blocksort.c huffman.c crctable.c randtable.c \
|
|
compress.c decompress.c bzlib.c bzlib.h bzlib_private.h
|