diff options
author | Guillem Jover <guillem@debian.org> | 2008-02-04 08:07:40 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2008-02-04 09:18:37 +0200 |
commit | f0325f1a3158f829c784f4e4aaa279550c2e361c (patch) | |
tree | 00fd41d13ec9fa086f3a574572cfef5218dfc028 /dselect | |
parent | 54c6eb9d08ee310cec9604d018a1d496a838827e (diff) | |
download | dpkg-f0325f1a3158f829c784f4e4aaa279550c2e361c.tar.gz |
Use functions from libcompat when those are not provided by the system
Diffstat (limited to 'dselect')
-rw-r--r-- | dselect/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dselect/Makefile.am b/dselect/Makefile.am index 241124cb3..e433dfc34 100644 --- a/dselect/Makefile.am +++ b/dselect/Makefile.am @@ -6,6 +6,7 @@ localedir = $(datadir)/locale INCLUDES = \ -DLOCALEDIR=\"$(localedir)\" \ -DADMINDIR=\"$(admindir)\" -DLIBDIR=\"$(pkglibdir)\" \ + -idirafter $(top_srcdir)/libcompat \ -I$(top_srcdir)/lib @@ -33,7 +34,11 @@ dselect_SOURCES = \ pkgsublist.cc \ pkgtop.cc -dselect_LDADD = $(LIBINTL) ../lib/libdpkg.a $(CURSES_LIBS) +dselect_LDADD = \ + ../libcompat/libcompat.a \ + $(LIBINTL) \ + $(CURSES_LIBS) \ + ../lib/libdpkg.a EXTRA_DIST = keyoverride mkcurkeys.pl |