rpms/xorg-x11-server/devel xserver-1.3.0-intel-by-default.patch, NONE, 1.1 xorg-x11-server-1.0.1-fpic-libxf86config.patch, 1.3, 1.4 xorg-x11-server.spec, 1.251, 1.252 xserver-1.3.0-randr-updates.patch, 1.1, 1.2

Adam Jackson (ajax) fedora-extras-commits at redhat.com
Wed Sep 26 19:13:25 UTC 2007


Author: ajax

Update of /cvs/pkgs/rpms/xorg-x11-server/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv26359

Modified Files:
	xorg-x11-server-1.0.1-fpic-libxf86config.patch 
	xorg-x11-server.spec xserver-1.3.0-randr-updates.patch 
Added Files:
	xserver-1.3.0-intel-by-default.patch 
Log Message:
* Wed Sep 26 2007 Adam Jackson <ajax at redhat.com> 1.3.0.0-26
- xserver-1.3.0-randr-updates.patch: Default ModeDebug to TRUE, better to
  have too much information than too little.
- xorg-x11-server-1.0.1-fpic-libxf86config.patch: Build the parser library
  with hidden symbols to shrink pyf86config a bit.
- xserver-1.3.0-intel-by-default.patch: Use intel, not i810, when starting
  without a config file.
- Enable maintainer mode when building so I swear at autotools less.


xserver-1.3.0-intel-by-default.patch:

--- NEW FILE xserver-1.3.0-intel-by-default.patch ---
diff -up xorg-server-1.3.0.0/hw/xfree86/common/xf86AutoConfig.c.jx xorg-server-1.3.0.0/hw/xfree86/common/xf86AutoConfig.c
--- xorg-server-1.3.0.0/hw/xfree86/common/xf86AutoConfig.c.jx	2006-11-16 13:01:24.000000000 -0500
+++ xorg-server-1.3.0.0/hw/xfree86/common/xf86AutoConfig.c	2007-09-26 10:08:20.000000000 -0400
@@ -175,7 +175,7 @@ videoPtrToDriverName(pciVideoPtr info)
 	case 0x8086:
 	    if ((info->chipType == 0x00d1) || (info->chipType == 0x7800))
 		return "i740";
-	    else return "i810";
+	    else return "intel";
 	case 0x102b:		    return "mga";
 	case 0x10c8:		    return "neomagic";
 	case 0x105d:		    return "i128";

xorg-x11-server-1.0.1-fpic-libxf86config.patch:

Index: xorg-x11-server-1.0.1-fpic-libxf86config.patch
===================================================================
RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server-1.0.1-fpic-libxf86config.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xorg-x11-server-1.0.1-fpic-libxf86config.patch	14 Jun 2006 02:34:13 -0000	1.3
+++ xorg-x11-server-1.0.1-fpic-libxf86config.patch	26 Sep 2007 19:12:51 -0000	1.4
@@ -5,7 +5,7 @@
  	Extensions.c
  
 -AM_CFLAGS = $(XORG_CFLAGS)
-+AM_CFLAGS = $(XORG_CFLAGS) -fPIC
++AM_CFLAGS = $(XORG_CFLAGS) -fPIC -fvisibility=hidden
  
  EXTRA_DIST = \
  	Configint.h \


Index: xorg-x11-server.spec
===================================================================
RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xorg-x11-server.spec,v
retrieving revision 1.251
retrieving revision 1.252
diff -u -r1.251 -r1.252
--- xorg-x11-server.spec	26 Sep 2007 07:33:55 -0000	1.251
+++ xorg-x11-server.spec	26 Sep 2007 19:12:51 -0000	1.252
@@ -9,7 +9,7 @@
 Summary:   X.Org X11 X server
 Name:      xorg-x11-server
 Version:   1.3.0.0
-Release:   25%{?dist}
+Release:   26%{?dist}
 URL:       http://www.x.org
 License:   MIT/X11
 Group:     User Interface/X
@@ -70,6 +70,7 @@
 Patch2010:  xserver-1.3.0-idletime.patch
 Patch2012:  xserver-1.3.0-add-really-slow-bcopy.patch
 Patch2013:  xserver-1.3.0-document-fontpath-correctly.patch
+Patch2014:  xserver-1.3.0-intel-by-default.patch
 
 # assorted PCI layer shenanigans.  oh the pain.
 Patch2500:  xorg-x11-server-1.2.99-unbreak-domain.patch
@@ -329,6 +330,7 @@
 %patch2010 -p1 -b .idletime
 %patch2012 -p1 -b .slow-bcopy
 %patch2013 -p1 -b .fontpath-doc
+%patch2014 -p1 -b .intel
 
 %patch2500 -p1 -b .unbreak-domains
 %patch2501 -p1 -b .pci-bus-count
@@ -348,7 +350,7 @@
 # --with-rgb-path should be superfluous now ?
 # --with-pie ?
 aclocal ; automake -a ; autoconf
-%configure \
+%configure --enable-maintainer-mode \
 	%{enable_xorg} \
 	--disable-xprint --enable-xvfb --enable-xnest --enable-dmx \
 	--enable-kdrive --enable-xephyr \
@@ -604,6 +606,15 @@
 
 
 %changelog
+* Wed Sep 26 2007 Adam Jackson <ajax at redhat.com> 1.3.0.0-26
+- xserver-1.3.0-randr-updates.patch: Default ModeDebug to TRUE, better to
+  have too much information than too little.
+- xorg-x11-server-1.0.1-fpic-libxf86config.patch: Build the parser library
+  with hidden symbols to shrink pyf86config a bit.
+- xserver-1.3.0-intel-by-default.patch: Use intel, not i810, when starting
+  without a config file.
+- Enable maintainer mode when building so I swear at autotools less.
+
 * Wed Sep 26 2007 Dave Airlie <airlied at redhat.com> 1.3.0.0-25
 - xserver-1.3.0-randr-updates.patch: Backport randr from server git
   This contains a lot of fixes since 1.3.0 went out, and saves

xserver-1.3.0-randr-updates.patch:

Index: xserver-1.3.0-randr-updates.patch
===================================================================
RCS file: /cvs/pkgs/rpms/xorg-x11-server/devel/xserver-1.3.0-randr-updates.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xserver-1.3.0-randr-updates.patch	26 Sep 2007 07:33:55 -0000	1.1
+++ xserver-1.3.0-randr-updates.patch	26 Sep 2007 19:12:51 -0000	1.2
@@ -300,7 +300,7 @@
 +			scrn->options,
 +			config->options);
 +    config->debug_modes = xf86ReturnOptValBool (config->options,
-+						OPTION_MODEDEBUG, FALSE);
++						OPTION_MODEDEBUG, TRUE);
 +
      if (scrn->display->virtualX)
  	width = scrn->display->virtualX;




More information about the fedora-extras-commits mailing list