From owner-cvs-ports@FreeBSD.ORG Wed May 5 15:43:59 2010 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 975) id A15DA1065674; Wed, 5 May 2010 15:43:59 +0000 (UTC) Date: Wed, 5 May 2010 15:43:59 +0000 From: "Sergey A. Osokin" To: Cy Schubert Message-ID: <20100505154359.GC32020@FreeBSD.org> References: <201005051538.o45FcPhV026674@repoman.freebsd.org> <20100505153832.87BD5106577B@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20100505153832.87BD5106577B@hub.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: [ports] cvs commit: ports/sysutils/syslog-ng3 Makefile X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 May 2010 15:43:59 -0000 On Wed, May 05, 2010 at 03:38:32PM +0000, Cy Schubert wrote: > cy 2010-05-05 15:38:25 UTC > > FreeBSD ports repository > > Modified files: > sysutils/syslog-ng3 Makefile > Log: > LIB_DEPENDS= s/b LIB_DEPENDS. > > Thanks to: osa > > Revision Changes Path > 1.26 +1 -1 ports/sysutils/syslog-ng3/Makefile > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > > > Index: ports/sysutils/syslog-ng3/Makefile > diff -u ports/sysutils/syslog-ng3/Makefile:1.25 ports/sysutils/syslog-ng3/Makefile:1.26 > --- ports/sysutils/syslog-ng3/Makefile:1.25 Wed May 5 15:25:23 2010 > +++ ports/sysutils/syslog-ng3/Makefile Wed May 5 15:38:24 2010 > @@ -73,7 +73,7 @@ > > .if defined(WITH_PCRE) > CONFIGURE_ARGS+= --enable-pcre > -LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre > +LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre > .else > CONFIGURE_ARGS+= --disable-pcre > .endif Could you commit following patch. Index: ports/sysutils/syslog-ng3/Makefile =================================================================== RCS file: /home/pcvs/ports/sysutils/syslog-ng3/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- ports/sysutils/syslog-ng3/Makefile 5 May 2010 15:38:24 -0000 1.26 +++ ports/sysutils/syslog-ng3/Makefile 5 May 2010 15:41:26 -0000 @@ -79,7 +79,7 @@ .endif .if defined(WITH_SQL) -LIB_DEPENDS= dbi.0:${PORTSDIR}/databases/libdbi +LIB_DEPENDS+= dbi.0:${PORTSDIR}/databases/libdbi CONFIGURE_ENV+= LIBDBI_LIBS="-ldbi" CONFIGURE_ARGS+= --enable-sql .else -- Sergey A. Osokin osa@FreeBSD.ORG