summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoerg <joerg>2008-05-12 15:26:10 +0000
committerjoerg <joerg>2008-05-12 15:26:10 +0000
commitdfb633f4098fd0649365da806d8a2a7800735c2d (patch)
tree68433ba060798af7e7bf07edae54a457e14fa1b4
parentc4b8951b2ab3c488dba020a43000872ab1c3d517 (diff)
downloadpkgsrc-dfb633f4098fd0649365da806d8a2a7800735c2d.tar.gz
Don't include signature stuff if the crypto support is not requested.
-rw-r--r--pkgtools/pkg_install/files/lib/Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/lib/Makefile.in b/pkgtools/pkg_install/files/lib/Makefile.in
index b6ef2e000ed..b961dc7e165 100644
--- a/pkgtools/pkg_install/files/lib/Makefile.in
+++ b/pkgtools/pkg_install/files/lib/Makefile.in
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.in,v 1.21.2.3 2008/05/11 20:20:38 joerg Exp $
+# $NetBSD: Makefile.in,v 1.21.2.4 2008/05/12 15:26:10 joerg Exp $
srcdir= @srcdir@
@@ -28,7 +28,7 @@ LIB= libinstall.a
OBJS= automatic.o conflicts.o decompress.o dewey.o fexec.o file.o \
global.o iterate.o lpkg.o opattern.o \
- parse-config.o path.o pkgdb.o plist.o pkg_signature.o pkcs7.o \
+ parse-config.o path.o pkgdb.o plist.o \
str.o var.o version.o vulnerabilities-file.o
CPPFLAGS+= -DSYSCONFDIR=\"$(sysconfdir)\"
@@ -41,6 +41,7 @@ OBJS+= pkg_io.o
.if !empty(SSL_SUPPORT)
CPPFLAGS+= -DHAVE_SSL
+OBJS+= pkg_signature.o pkcs7.o
.endif
all: $(LIB)