diff options
author | jbj <devnull@localhost> | 2001-11-23 15:49:11 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-11-23 15:49:11 +0000 |
commit | e98018b4d8730a80b2d320e6393f9129b2d13770 (patch) | |
tree | 88e4d57de86d16edfa7d6f9de4692383a69c8153 /rpmio | |
parent | 9d66753a5b99ecd9ae022c5ff42eec58b57d8c13 (diff) | |
download | librpm-tizen-e98018b4d8730a80b2d320e6393f9129b2d13770.tar.gz librpm-tizen-e98018b4d8730a80b2d320e6393f9129b2d13770.tar.bz2 librpm-tizen-e98018b4d8730a80b2d320e6393f9129b2d13770.zip |
- fix a couple dinky memory leaks.
- build with an internal zlib for now.
CVS patchset: 5207
CVS date: 2001/11/23 15:49:11
Diffstat (limited to 'rpmio')
-rw-r--r-- | rpmio/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rpmio/Makefile.am b/rpmio/Makefile.am index 2246021ab..a131fca43 100644 --- a/rpmio/Makefile.am +++ b/rpmio/Makefile.am @@ -11,7 +11,9 @@ INCLUDES = \ -I$(top_srcdir)/build \ -I$(top_srcdir)/lib \ -I$(top_srcdir)/beecrypt \ - -I$(top_srcdir)/popt @INCPATH@ + -I$(top_srcdir)/popt \ + @WITH_ZLIB_INCLUDE@ + @INCPATH@ pkgincdir = $(pkgincludedir) pkginc_HEADERS = \ @@ -19,7 +21,7 @@ pkginc_HEADERS = \ ugid.h noinst_HEADERS = rpmio_internal.h rpmpgp.h -LIBS += -lrt -lpthread +LIBS += @WITH_ZLIB_LIB@ -lrt -lpthread BEECRYPTLOBJS = $(shell cat $(top_builddir)/beecrypt/listobjs) |