diff options
author | Wichert Akkerman <wakkerma@debian.org> | 2000-12-09 01:51:21 +0000 |
---|---|---|
committer | Wichert Akkerman <wakkerma@debian.org> | 2000-12-09 01:51:21 +0000 |
commit | 7bf6e0be806edfcd6accef52cb98cda61c347fd4 (patch) | |
tree | ddab3e53e6d5e8893af6634c67ec40a76cf7fb00 /Makefile.conf.in | |
parent | 59cc4f725afc21043a1165660f733f5815017127 (diff) | |
download | dpkg-7bf6e0be806edfcd6accef52cb98cda61c347fd4.tar.gz |
add support for using libz
Diffstat (limited to 'Makefile.conf.in')
-rw-r--r-- | Makefile.conf.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.conf.in b/Makefile.conf.in index 651c8ad2e..edfbbbece 100644 --- a/Makefile.conf.in +++ b/Makefile.conf.in @@ -54,15 +54,18 @@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ -SSD_LIBS = @SSD_LIBS@ - DEFS = @DEFS@ INCLUDE_CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir) -I$(srcdir) -I../include -I.. -I. NLS_CFLAGS = -DLOCALEDIR=\"$(localedir)\" -I$(top_srcdir)/intl -I../intl NLS_LIBS = @INTLLIBS@ -ALL_CFLAGS = $(CFLAGS) $(DEFS) $(NLS_CFLAGS) $(INCLUDE_CFLAGS) +SSD_LIBS = @SSD_LIBS@ + +ZLIB_CFLAGS = @ZLIBCFLAGS@ +ZLIB_LIBS = @ZLIBLIBS@ + +ALL_CFLAGS = $(CFLAGS) $(DEFS) $(NLS_CFLAGS) $(INCLUDE_CFLAGS) $(ZLIB_CFLAGS) ALL_CXXFLAGS = $(ALL_CFLAGS) $(CXXFLAGS) .c.o: |