Explorar el Código

* methods/makefile:
- do not link rred against libz anymore as FileFd handles all
this transparently now

David Kalnischkies hace 14 años
padre
commit
771ad84682
Se han modificado 2 ficheros con 5 adiciones y 2 borrados
  1. 4 1
      debian/changelog
  2. 1 1
      methods/makefile

+ 4 - 1
debian/changelog

@@ -19,8 +19,11 @@ apt (0.8.16~exp14) UNRELEASED; urgency=low
     - check return of chdir() as gcc recommends
   * apt-pkg/contrib/netrc.cc:
     - check return of asprintf() as gcc recommends
+  * methods/makefile:
+    - do not link rred against libz anymore as FileFd handles all
+      this transparently now
 
- -- David Kalnischkies <kalnischkies@gmail.com>  Tue, 20 Mar 2012 17:00:14 +0100
+ -- David Kalnischkies <kalnischkies@gmail.com>  Tue, 20 Mar 2012 17:06:08 +0100
 
 apt (0.8.16~exp13) experimental; urgency=low
 

+ 1 - 1
methods/makefile

@@ -67,7 +67,7 @@ include $(PROGRAM_H)
 
 # The rred method
 PROGRAM=rred
-SLIBS = -lapt-pkg -lz $(SOCKETLIBS) $(INTLLIBS)
+SLIBS = -lapt-pkg $(SOCKETLIBS) $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = rred.cc
 include $(PROGRAM_H)