Module Name: src
Committed By: he
Date: Fri Nov 5 09:09:01 UTC 2010
Modified Files:
src/external/bsd/pkg_install/sbin: Makefile.inc
Log Message:
New pkg_install requires -llzma, so to support static linking, be
explicit about what libraries are required, and not only depend on
shared library inter-dependencies to pull that in.
Fixes the build for sun2.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/pkg_install/sbin/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/pkg_install/sbin/Makefile.inc
diff -u src/external/bsd/pkg_install/sbin/Makefile.inc:1.2 src/external/bsd/pkg_install/sbin/Makefile.inc:1.3
--- src/external/bsd/pkg_install/sbin/Makefile.inc:1.2 Mon Feb 2 20:47:21 2009
+++ src/external/bsd/pkg_install/sbin/Makefile.inc Fri Nov 5 09:09:01 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.2 2009/02/02 20:47:21 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.3 2010/11/05 09:09:01 he Exp $
.include <bsd.own.mk>
@@ -20,3 +20,6 @@
DPADD+= ${LIBZ} ${LIBBZ2}
LDADD+= -lz -lbz2
+
+DPADD+= ${LIBLZMA}
+LDADD+= -llzma