Mailinglist Archive: opensuse-commit (875 mails)

< Previous Next >
commit xorg-x11-server
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Wed, 09 Jul 2008 02:06:03 +0200
  • Message-id: <20080709000603.A654A678178@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package xorg-x11-server
checked in at Wed Jul 9 02:06:03 CEST 2008.


--------
--- xorg-x11-server/xorg-x11-server.changes 2008-07-04 22:37:05.000000000
+0200
+++ xorg-x11-server/xorg-x11-server.changes 2008-07-08 08:58:02.496239000
+0200
@@ -1,0 +2,10 @@
+Tue Jul 8 08:38:15 CEST 2008 - sndirsch@xxxxxxx
+
+- commit-a18551c.diff
+ * Fix GLX in Xvfb and kdrive.
+ Xvfb could no longer be started: "Xvfb: symbol lookup error:
+ /usr/lib/dri/swrast_dri.so: undefined symbol:
+ _glapi_add_dispatch". This is fixed now.
+- removed no longer appliable patch 'p_xf86Mode.diff'
+
+-------------------------------------------------------------------



Old:
----
p_xf86Mode.diff

New:
----
commit-a18551c.diff

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xorg-x11-server.spec ++++++
--- /var/tmp/diff_new_pack.W18754/_old 2008-07-09 02:04:36.000000000 +0200
+++ /var/tmp/diff_new_pack.W18754/_new 2008-07-09 02:04:36.000000000 +0200
@@ -23,7 +23,7 @@
Url: http://xorg.freedesktop.org/
%define EXPERIMENTAL 0
Version: 7.3
-Release: 114
+Release: 115
License: X11/MIT
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Group: System/X11/Servers/XF86_4
@@ -51,7 +51,6 @@
Patch7: p_mouse_misc.diff
Patch8: p_bug96328.diff
Patch11: ps_showopts.diff
-Patch12: p_xf86Mode.diff
Patch13: p_xorg_acpi.diff
Patch14: p_xkills_wrong_client.diff
Patch16: p_xnest-ignore-getimage-errors.diff
@@ -93,6 +92,7 @@
Patch112: fix-dpi-values.diff
Patch113: no-return-in-nonvoid-function.diff
Patch114: 64bit-portability-issue.diff
+Patch115: commit-a18551c.diff

%description
This package contains the X.Org Server.
@@ -161,7 +161,6 @@
%patch7 -p2
%patch8 -p0
%patch11
-#%patch12 -p2
%patch13
%patch14
%patch16 -p2
@@ -211,6 +210,7 @@
%patch112 -p0
%patch113 -p0
%patch114 -p0
+%patch115 -p1

%build
pushd xorg-docs-*
@@ -530,6 +530,13 @@
%endif

%changelog
+* Tue Jul 08 2008 sndirsch@xxxxxxx
+- commit-a18551c.diff
+ * Fix GLX in Xvfb and kdrive.
+ Xvfb could no longer be started: "Xvfb: symbol lookup error:
+ /usr/lib/dri/swrast_dri.so: undefined symbol:
+ _glapi_add_dispatch". This is fixed now.
+- removed no longer appliable patch 'p_xf86Mode.diff'
* Sat Jul 05 2008 sndirsch@xxxxxxx
- xorg-server-1.4.99.905
* obsolete patches

++++++ commit-a18551c.diff ++++++
commit a18551cad1bf88b30d8466859509fb1fcfd1f2d6
Author: Adam Jackson <ajax@xxxxxxxxxx>
Date: Wed Jul 2 11:25:50 2008 -0400

Fix GLX in Xvfb and kdrive.
(cherry picked from commit 689292e58cc5242cbfeaa29fcf65b6dcd9dfabb9)

diff --git a/hw/kdrive/ephyr/Makefile.am b/hw/kdrive/ephyr/Makefile.am
index 81d3d69..7a56d34 100644
--- a/hw/kdrive/ephyr/Makefile.am
+++ b/hw/kdrive/ephyr/Makefile.am
@@ -85,5 +85,7 @@ Xephyr_DEPENDENCIES = \
$(LIBXEPHYR_HOSTDRI) \
@KDRIVE_LOCAL_LIBS@

+Xephyr_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)
+
relink:
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)
diff --git a/hw/kdrive/fake/Makefile.am b/hw/kdrive/fake/Makefile.am
index 09d179e..76ed9fc 100644
--- a/hw/kdrive/fake/Makefile.am
+++ b/hw/kdrive/fake/Makefile.am
@@ -21,6 +21,8 @@ Xfake_LDADD =
\
@KDRIVE_LIBS@ \
@XSERVER_LIBS@

+Xfake_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)
+
Xfake_DEPENDENCIES = \
libfake.a \
@KDRIVE_LOCAL_LIBS@
diff --git a/hw/kdrive/fbdev/Makefile.am b/hw/kdrive/fbdev/Makefile.am
index 420855b..cb12928 100644
--- a/hw/kdrive/fbdev/Makefile.am
+++ b/hw/kdrive/fbdev/Makefile.am
@@ -22,6 +22,8 @@ Xfbdev_DEPENDENCIES = \
libfbdev.a \
$(KDRIVE_PURE_LIBS)

+Xfbdev_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)
+
relink:
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)
endif
diff --git a/hw/kdrive/sdl/Makefile.am b/hw/kdrive/sdl/Makefile.am
index fe9309e..0973cb4 100644
--- a/hw/kdrive/sdl/Makefile.am
+++ b/hw/kdrive/sdl/Makefile.am
@@ -13,5 +13,7 @@ Xsdl_LDADD = \

Xsdl_DEPENDENCIES = @KDRIVE_LOCAL_LIBS@

+Xsdl_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)
+
relink:
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)
diff --git a/hw/kdrive/vesa/Makefile.am b/hw/kdrive/vesa/Makefile.am
index ac50d2b..4225dcf 100644
--- a/hw/kdrive/vesa/Makefile.am
+++ b/hw/kdrive/vesa/Makefile.am
@@ -27,5 +27,7 @@ Xvesa_DEPENDENCIES = \
libvesa.a \
@KDRIVE_LOCAL_LIBS@

+Xvesa_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)
+
relink:
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)
diff --git a/hw/vfb/Makefile.am b/hw/vfb/Makefile.am
index 9ceeccc..a4a120a 100644
--- a/hw/vfb/Makefile.am
+++ b/hw/vfb/Makefile.am
@@ -26,6 +26,7 @@ XVFB_LIBS = \

Xvfb_LDADD = $(XVFB_LIBS) $(XVFB_SYS_LIBS) $(XSERVER_SYS_LIBS)
Xvfb_DEPENDENCIES = $(XVFB_LIBS)
+Xvfb_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)

# Man page
include $(top_srcdir)/cpprules.in




++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >