summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2008-10-11 10:00:50 +0200
committerLuca Bruno <lethalman88@gmail.com>2008-10-11 10:00:50 +0200
commit8cd53bd4fe839c3135696ecbdca45909130a2dd9 (patch)
tree3eda70c81a6a397193114ce98b79831b58432f75 /cmdline
parentd320fdc3539f686e690a4ae0cb3f941b0e1a0456 (diff)
* Compilation fixes and portability improvement for compiling APT against non-GNU libc
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/cmdline/makefile b/cmdline/makefile
index 5820c2e0f..3260e375b 100644
--- a/cmdline/makefile
+++ b/cmdline/makefile
@@ -7,42 +7,42 @@ include ../buildlib/defaults.mak
# The apt-cache program
PROGRAM=apt-cache
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
LIB_MAKES = apt-pkg/makefile
SOURCE = apt-cache.cc
include $(PROGRAM_H)
# The apt-get program
PROGRAM=apt-get
-SLIBS = -lapt-pkg -lutil
+SLIBS = -lapt-pkg -lutil $(INTLLIBS)
LIB_MAKES = apt-pkg/makefile
SOURCE = apt-get.cc acqprogress.cc
include $(PROGRAM_H)
# The apt-config program
PROGRAM=apt-config
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
LIB_MAKES = apt-pkg/makefile
SOURCE = apt-config.cc
include $(PROGRAM_H)
# The apt-cdrom program
PROGRAM=apt-cdrom
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
LIB_MAKES = apt-pkg/makefile
SOURCE = apt-cdrom.cc
include $(PROGRAM_H)
# The apt-sortpkgs program
PROGRAM=apt-sortpkgs
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
LIB_MAKES = apt-pkg/makefile
SOURCE = apt-sortpkgs.cc
include $(PROGRAM_H)
# The apt-extracttemplates program
PROGRAM=apt-extracttemplates
-SLIBS = -lapt-pkg -lapt-inst
+SLIBS = -lapt-pkg -lapt-inst $(INTLLIBS)
LIB_MAKES = apt-pkg/makefile
SOURCE = apt-extracttemplates.cc
include $(PROGRAM_H)