Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-10 Thread Adrian Bunk
On Wed, Sep 08, 2010 at 05:01:25PM -0400, Trevor Woerner wrote: From: Trevor Woerner twoer...@gmail.com Change search for libtalloc so a build which includes it in a non pkg-config'ized form will succeed. Signed-off-by: Trevor Woerner twoer...@gmail.com --- My system includes libtalloc

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-10 Thread Trevor Woerner
On Fri, Sep 10, 2010 at 8:23 AM, Adrian Bunk b...@stusta.de wrote: My system includes libtalloc and libtalloc-devel in a way that is not pkg-config'ized. How/Why does that happen? I think it is simply the choice of the person responsible for providing libtalloc in the particular distribution

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-10 Thread Adrian Bunk
On Fri, Sep 10, 2010 at 08:41:49AM -0400, Trevor Woerner wrote: On Fri, Sep 10, 2010 at 8:23 AM, Adrian Bunk b...@stusta.de wrote: My system includes libtalloc and libtalloc-devel in a way that is not pkg-config'ized. How/Why does that happen? I think it is simply the choice of the

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-10 Thread Trevor Woerner
On Fri, Sep 10, 2010 at 8:49 AM, Adrian Bunk b...@stusta.de wrote: Which distribution are you using? openSUSE 11.3 ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info:

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-10 Thread Adrian Bunk
On Fri, Sep 10, 2010 at 09:48:15AM -0400, Trevor Woerner wrote: On Fri, Sep 10, 2010 at 8:49 AM, Adrian Bunk b...@stusta.de wrote: Which distribution are you using? openSUSE 11.3 openSUSE bug for this including link to fixed packages: https://bugzilla.novell.com/show_bug.cgi?id=632770 cu

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-10 Thread Trevor Woerner
On Fri, Sep 10, 2010 at 9:59 AM, Adrian Bunk b...@stusta.de wrote: openSUSE bug for this including link to fixed packages: https://bugzilla.novell.com/show_bug.cgi?id=632770 Thank you. I've updated the wiki: http://xorg.freedesktop.org/wiki/RequiredPackages#openSUSE

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-09 Thread Rémi Cardona
Le 09/09/2010 02:55, Trevor Woerner a écrit : On Wed, Sep 8, 2010 at 6:41 PM, Eric Anholt e...@anholt.net wrote: You should be able to make your build succeed with the TALLOC_LIBS and TALLOC_CFLAGS environment variables already. See ./configure --help. Thanks. I'm not all that familiar with

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-09 Thread Trevor Woerner
On Thu, Sep 9, 2010 at 3:22 AM, Rémi Cardona r...@gentoo.org wrote: Le 09/09/2010 02:55, Trevor Woerner a écrit : On Wed, Sep 8, 2010 at 6:41 PM, Eric Anholt e...@anholt.net wrote: You should be able to make your build succeed with the TALLOC_LIBS and TALLOC_CFLAGS environment variables

[PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-08 Thread Trevor Woerner
From: Trevor Woerner twoer...@gmail.com Change search for libtalloc so a build which includes it in a non pkg-config'ized form will succeed. Signed-off-by: Trevor Woerner twoer...@gmail.com --- My system includes libtalloc and libtalloc-devel in a way that is not pkg-config'ized. I'm hoping

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-08 Thread Eric Anholt
On Wed, 8 Sep 2010 17:01:25 -0400, Trevor Woerner twoer...@gmail.com wrote: From: Trevor Woerner twoer...@gmail.com Change search for libtalloc so a build which includes it in a non pkg-config'ized form will succeed. Signed-off-by: Trevor Woerner twoer...@gmail.com --- My system

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-08 Thread Trevor Woerner
On Wed, Sep 8, 2010 at 6:41 PM, Eric Anholt e...@anholt.net wrote: You should be able to make your build succeed with the TALLOC_LIBS and TALLOC_CFLAGS environment variables already.  See ./configure --help. Thanks. I'm not all that familiar with pkg-config. Unfortunately the following doesn't

[PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-08 Thread Trevor Woerner
From: Trevor Woerner twoer...@gmail.com Signed-off-by: Trevor Woerner twoer...@gmail.com --- configure.ac |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index a7ee0f5..f4202e9 100644 --- a/configure.ac +++ b/configure.ac @@ -486,7 +486,9

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-08 Thread Mikhail Gusarov
Twas brillig at 17:01:25 08.09.2010 UTC-04 when twoer...@gmail.com did gyre and gimble: TW -PKG_CHECK_MODULES([TALLOC], [talloc]) TW +AC_SEARCH_LIBS([talloc_version_major], [talloc], TW +[TALLOC_LIBS=-ltalloc TW +AC_CHECK_HEADERS([talloc.h], [TALLOC_CFLAGS=])], TW +

Re: [PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-08 Thread Mikhail Gusarov
Twas brillig at 00:22:38 09.09.2010 UTC-04 when twoer...@gmail.com did gyre and gimble: TW From: Trevor Woerner twoer...@gmail.com TW Signed-off-by: Trevor Woerner twoer...@gmail.com TW --- TW configure.ac |4 +++- TW 1 files changed, 3 insertions(+), 1 deletions(-) TW diff --git

[PATCH mesa] Include search for non pkg-config libtalloc.

2010-09-05 Thread Trevor Woerner
From: Trevor Woerner twoer...@gmail.com Change search for libtalloc so a build which includes it in a non pkg-config'ized form will succeed. Signed-off-by: Trevor Woerner twoer...@gmail.com --- My system includes libtalloc and libtalloc-devel in a way that is not pkg-config'ized. I'm hoping