Re: [Mesa3d-dev] [PATCH 1/2] ac: Fix AIX shared library builds.

2009-10-13 Thread Brian Paul
tom fogal wrote:
> Brian Paul  writes:
>> tom fogal wrote:
>>> Sorry, should have used an intro comment mail.
>>>
>>> (Assuming all's well,) It would be great if these two could make it
>>> onto a branch (e.g. 7.6) in addition to master.
>> Both look good to me.  You can commit, right?
> 
> In theory, but it hasn't gone through yet:
> 
>   https://bugs.freedesktop.org/show_bug.cgi?id=23311

OK, I've committed them to the 7.6 branch.

-Brian


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev


Re: [Mesa3d-dev] [PATCH 1/2] ac: Fix AIX shared library builds.

2009-10-13 Thread tom fogal
Brian Paul  writes:
> tom fogal wrote:
> > Sorry, should have used an intro comment mail.
> >
> > (Assuming all's well,) It would be great if these two could make it
> > onto a branch (e.g. 7.6) in addition to master.
>
> Both look good to me.  You can commit, right?

In theory, but it hasn't gone through yet:

  https://bugs.freedesktop.org/show_bug.cgi?id=23311

-tom

--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev


Re: [Mesa3d-dev] [PATCH 1/2] ac: Fix AIX shared library builds.

2009-10-13 Thread Brian Paul
tom fogal wrote:
> Sorry, should have used an intro comment mail.
> 
> (Assuming all's well,) It would be great if these two could make it
> onto a branch (e.g. 7.6) in addition to master.

Both look good to me.  You can commit, right?

-Brian


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev


Re: [Mesa3d-dev] [PATCH 1/2] ac: Fix AIX shared library builds.

2009-10-13 Thread tom fogal
Sorry, should have used an intro comment mail.

(Assuming all's well,) It would be great if these two could make it
onto a branch (e.g. 7.6) in addition to master.

-tom

Tom Fogal  writes:
> AIX uses ".a" for both static and shared library extensions.
> ---
>  configure.ac |2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)

--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev


[Mesa3d-dev] [PATCH 1/2] ac: Fix AIX shared library builds.

2009-10-13 Thread Tom Fogal
AIX uses ".a" for both static and shared library extensions.
---
 configure.ac |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7518976..44fb779 100644
--- a/configure.ac
+++ b/configure.ac
@@ -230,6 +230,8 @@ else
 LIB_EXTENSION='dylib' ;;
 cygwin* )
 LIB_EXTENSION='dll' ;;
+aix* )
+LIB_EXTENSION='a' ;;
 * )
 LIB_EXTENSION='so' ;;
 esac
-- 
1.6.3.3


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
___
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev