help - please unsubscribe me
vrushali shinde
vrushali1201 at gmail.com
Sun Dec 13 01:01:19 PST 2009
On Sun, Dec 13, 2009 at 1:30 AM, <xorg-devel-request at lists.x.org> wrote:
> Send xorg-devel mailing list submissions to
> xorg-devel at lists.x.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.x.org/mailman/listinfo/xorg-devel
> or, via email, send a message with subject or body 'help' to
> xorg-devel-request at lists.x.org
>
> You can reach the person managing the list at
> xorg-devel-owner at lists.x.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of xorg-devel digest..."
>
>
> Today's Topics:
>
> 1. [PATCH:randrproto] Use $(docdir) for randrproto.txt install
> path (R?mi Cardona)
> 2. [PATCH:videoproto] require autoconf 2.60 because of $(docdir)
> use (R?mi Cardona)
> 3. Re: Xfake build failure (was Re: Convert kdrive libraries to
> libtool convenience libraries.) (Paulo C?sar Pereira de Andrade)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sat, 12 Dec 2009 10:59:15 +0100
> From: R?mi Cardona <remi at gentoo.org>
> Subject: [PATCH:randrproto] Use $(docdir) for randrproto.txt install
> path
> To: xorg-devel at lists.x.org
> Message-ID: <1260611957-10100-8-git-send-email-remi at gentoo.org>
> Content-Type: text/plain; charset=UTF-8
>
> Signed-off-by: R?mi Cardona <remi at gentoo.org>
> ---
> Makefile.am | 5 ++---
> configure.ac | 2 +-
> 2 files changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/Makefile.am b/Makefile.am
> index e4bf141..5a1ce11 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -6,10 +6,9 @@ randr_HEADERS = \
> pkgconfigdir = $(libdir)/pkgconfig
> pkgconfig_DATA = randrproto.pc
>
> -randrdocdir = $(datadir)/doc/$(PACKAGE)
> -randrdoc_DATA = randrproto.txt
> +dist_doc_DATA = randrproto.txt
>
> -EXTRA_DIST = randrproto.pc.in $(randrdoc_DATA)
> +EXTRA_DIST = randrproto.pc.in
>
> MAINTAINERCLEANFILES = ChangeLog INSTALL
>
> diff --git a/configure.ac b/configure.ac
> index ec7812f..e876c44 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -21,7 +21,7 @@ dnl PERFORMANCE OF THIS SOFTWARE.
> dnl
> dnl Process this file with autoconf to create configure.
>
> -AC_PREREQ([2.57])
> +AC_PREREQ([2.60])
> AC_INIT([RandrProto], [1.3.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
> AM_INIT_AUTOMAKE([foreign dist-bzip2])
> AM_MAINTAINER_MODE
> --
> 1.6.5.5
>
>
>
> ------------------------------
>
> Message: 2
> Date: Sat, 12 Dec 2009 10:59:17 +0100
> From: R?mi Cardona <remi at gentoo.org>
> Subject: [PATCH:videoproto] require autoconf 2.60 because of $(docdir)
> use
> To: xorg-devel at lists.x.org
> Message-ID: <1260611957-10100-10-git-send-email-remi at gentoo.org>
> Content-Type: text/plain; charset=UTF-8
>
> Signed-off-by: R?mi Cardona <remi at gentoo.org>
> ---
> configure.ac | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/configure.ac b/configure.ac
> index 9f706bc..5e128e1 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -1,4 +1,4 @@
> -AC_PREREQ([2.57])
> +AC_PREREQ([2.60])
> AC_INIT([VideoProto], [2.3.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
> AM_INIT_AUTOMAKE([foreign dist-bzip2])
> AM_MAINTAINER_MODE
> --
> 1.6.5.5
>
>
>
> ------------------------------
>
> Message: 3
> Date: Fri, 11 Dec 2009 19:11:30 -0200 (BRST)
> From: Paulo C?sar Pereira de Andrade <pcpa at mandriva.com.br>
> Subject: Re: Xfake build failure (was Re: Convert kdrive libraries to
> libtool convenience libraries.)
> To: "Jeremy Huddleston" <jeremyhu at freedesktop.org>
> Cc: xorg-devel <xorg-devel at lists.x.org>
> Message-ID:
> <33dd31b3d0789dd859fdff18e22d2649.squirrel at webmail.mandriva.com.br>
> Content-Type: text/plain;charset=iso-8859-1
>
> Jeremy Huddleston wrote:
>> Resending due to lack of response. Xfake doesn't build in 1.7 or master
>> due to "-Wl,-undefined=InitExtensions" in LDFLAGS
>
> Hi,
>
> This probably/hopefully is not required anymore.
>
> It was used to "force" linking of the object/library file that
> defined the InitExtensions symbol. Otherwise, it could either
> fail to link or generate a broken binary (I don't remember the
> defails :-)
>
> This was an issue with the large amount of libraries used on
> final linking, where the linker would drop symbols that were only
> reachable from dynamic modules, or possibly just dependency checking
> problems.
>
>> ...
>>
>> Hi Paulo,
>>
>> Last year, you made the following commit.
>>
>> http://cgit.freedesktop.org/xorg/xserver/commit/?id=f7585d020593345e7a61b1fe1a517c38da8f6d79
>>
>> Also correct a link failure due to unresolved symbols. This
>> is arguably a libtool/ranlib/ld bug, that "may" be corrected
>> by linking all convenience libraries in a single one. But in
>> this case, it was preferred to just add a linker option to
>> Xfake_LDFLAGS, to force linkage of all libraries.
>>
>> This corrects #19725.
>>
>> ---
>>
>> As part of that, you introduced "-Wl,-undefined=InitExtensions" to LDFLAGS
>> for Xfake.
>>
>> This is not portable. Based on your commit message, I'm guessing that
>> it's telling ld that InitExtensions being undefined is ok. It links
>> correctly for me without this option on darwin. Is this option still
>> necessary? If so, perhaps it should be conditional for the operating
>> systems that need it and recognize it.
>
> Paulo
>
>
>
> ------------------------------
>
> _______________________________________________
> xorg-devel mailing list
> xorg-devel at lists.x.org
> http://lists.x.org/mailman/listinfo/xorg-devel
>
>
> End of xorg-devel Digest, Vol 11, Issue 50
> ******************************************
>
More information about the xorg-devel
mailing list