From owner-svn-src-vendor@FreeBSD.ORG Sun Jan 11 08:40:22 2015 Return-Path: Delivered-To: svn-src-vendor@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EBF8F3A; Sun, 11 Jan 2015 08:40:22 +0000 (UTC) Received: from mail-yk0-x236.google.com (mail-yk0-x236.google.com [IPv6:2607:f8b0:4002:c07::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0BB6D6E6; Sun, 11 Jan 2015 08:40:22 +0000 (UTC) Received: by mail-yk0-f182.google.com with SMTP id 131so7192118ykp.13; Sun, 11 Jan 2015 00:40:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=1UetdXpWI1EYSSfc4CqErtC0l7+n5yuXkGF1rB38h84=; b=uR5rWcFJkGolratN9e0eCFzmaHfIQGI6KPin4ljW4+/k4weym6ypiFolkWpZ4QkBae 3MurOhBkI2IK6gqikBBiZvEECWAE2TvrQKptsV2oLSeWGCpCm0f0TegJ6grq+rhftkJ5 5YryzCEki+nI7eiicENJB/ZSyhp9qA6rzGYpDkRH+EUf9oXQtpONnuR6JEmlUizaCz6l MkRk0bgFRNb4bGvTToBHiBS7W/7gWBlvBcR0A+NncYtQdPx6WWsqur2i2QIo2eK3/fbt 3DWxzMmgLDtTymSbwNsQI9XEL0BHgoX5Cw0dPqFj0+so9Chpq5qRe4NfGcBgvUHj7h0c NMqg== MIME-Version: 1.0 X-Received: by 10.170.205.4 with SMTP id w4mr21299661yke.125.1420965621184; Sun, 11 Jan 2015 00:40:21 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.142.198 with HTTP; Sun, 11 Jan 2015 00:40:21 -0800 (PST) In-Reply-To: <201501100007.t0A07Y8V069453@svn.freebsd.org> References: <201501100007.t0A07Y8V069453@svn.freebsd.org> Date: Sun, 11 Jan 2015 09:40:21 +0100 X-Google-Sender-Auth: KAWJvxIvBkwxVRXKlGTIZs9BDnI Message-ID: Subject: Re: svn commit: r276897 - vendor/xz/dist/src/liblzma From: Antoine Brodin To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 Cc: svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-vendor@freebsd.org X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jan 2015 08:40:22 -0000 On Sat, Jan 10, 2015 at 1:07 AM, Baptiste Daroussin wrote: > Author: bapt > Date: Sat Jan 10 00:07:34 2015 > New Revision: 276897 > URL: https://svnweb.freebsd.org/changeset/base/276897 > > Log: > Import the lzma pc file > > Added: > vendor/xz/dist/src/liblzma/liblzma.pc.in (contents, props changed) > > Added: vendor/xz/dist/src/liblzma/liblzma.pc.in > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ vendor/xz/dist/src/liblzma/liblzma.pc.in Sat Jan 10 00:07:34 2015 (r276897) > @@ -0,0 +1,19 @@ > +# > +# Author: Lasse Collin > +# > +# This file has been put into the public domain. > +# You can do whatever you want with this file. > +# > + > +prefix=@prefix@ > +exec_prefix=@exec_prefix@ > +libdir=@libdir@ > +includedir=@includedir@ > + > +Name: liblzma > +Description: General purpose data compression library > +URL: @PACKAGE_URL@ > +Version: @PACKAGE_VERSION@ > +Cflags: -I${includedir} > +Libs: -L${libdir} -llzma > +Libs.private: @PTHREAD_CFLAGS@ @PTHREAD_LIBS@ > Hi, There is a problem: % grep libdir /usr/libdata/pkgconfig/liblzma.pc libdir=/usr/lib32 Libs: -L${libdir} -llzma Cheers, Antoine