Sat Feb 14 03:02:58 2009 UTC ()
Need to define SSL_SUPPORT before using it :)


(obache)
diff -r1.18 -r1.19 pkgsrc/pkgtools/pkg_install/files/info/Makefile.in

cvs diff -r1.18 -r1.19 pkgsrc/pkgtools/pkg_install/files/info/Makefile.in (expand / switch to unified diff)

--- pkgsrc/pkgtools/pkg_install/files/info/Makefile.in 2009/02/13 14:13:58 1.18
+++ pkgsrc/pkgtools/pkg_install/files/info/Makefile.in 2009/02/14 03:02:58 1.19
@@ -1,27 +1,28 @@ @@ -1,27 +1,28 @@
1# $NetBSD: Makefile.in,v 1.18 2009/02/13 14:13:58 joerg Exp $ 1# $NetBSD: Makefile.in,v 1.19 2009/02/14 03:02:58 obache Exp $
2 2
3srcdir= @srcdir@ 3srcdir= @srcdir@
4 4
5prefix= @prefix@ 5prefix= @prefix@
6exec_prefix= @exec_prefix@ 6exec_prefix= @exec_prefix@
7sbindir= @sbindir@ 7sbindir= @sbindir@
8mandir= @mandir@ 8mandir= @mandir@
9datarootdir= @datarootdir@ 9datarootdir= @datarootdir@
10 10
11man1dir= $(mandir)/man1 11man1dir= $(mandir)/man1
12cat1dir= $(mandir)/cat1 12cat1dir= $(mandir)/cat1
13 13
14BOOTSTRAP= @bootstrap@ 14BOOTSTRAP= @bootstrap@
 15SSL_SUPPORT= @ssl_support@
15 16
16CC= @CC@ 17CC= @CC@
17CCLD= $(CC) 18CCLD= $(CC)
18.if empty(BOOTSTRAP) 19.if empty(BOOTSTRAP)
19LIBS= -linstall -larchive -lfetch -lbz2 -lz @LIBS@ 20LIBS= -linstall -larchive -lfetch -lbz2 -lz @LIBS@
20.if !empty(SSL_SUPPORT) 21.if !empty(SSL_SUPPORT)
21LIBS+= -lcrypto 22LIBS+= -lcrypto
22.endif 23.endif
23CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir) -I../lib 24CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir) -I../lib
24.else 25.else
25LIBS= -linstall @LIBS@ 26LIBS= -linstall @LIBS@
26CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir) -I../lib -DBOOTSTRAP 27CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir) -I../lib -DBOOTSTRAP
27.endif 28.endif