diff options
author | martin@piware.de <> | 2010-06-09 14:08:20 +0200 |
---|---|---|
committer | martin@piware.de <> | 2010-06-09 14:08:20 +0200 |
commit | a3a03f5d7436c870edac9c0eb92e85e1fcaf6bca (patch) | |
tree | 652d78aff1b666164f8a3c1cd0f1f2eb7ab687fb /apt-pkg/makefile | |
parent | 3000cb123abe00418ccc2e388b6f93b76fe5514d (diff) |
* apt-pkg/contrib/fileutl.{h,cc}:
- Add support for transparent reading of gzipped files.
- Link against zlib (in apt-pkg/makefile) and add zlib build dependency.
Diffstat (limited to 'apt-pkg/makefile')
-rw-r--r-- | apt-pkg/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/makefile b/apt-pkg/makefile index bdd49c089..4cf07f3a8 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -14,7 +14,7 @@ include ../buildlib/libversion.mak LIBRARY=apt-pkg MAJOR=$(LIBAPTPKG_MAJOR) MINOR=$(LIBAPTPKG_RELEASE) -SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl +SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl -lz APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR) # Source code for the contributed non-core things |