public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/svgalib/files: svgalib-1.9.25-linux2.6.patch
@ 2007-12-30 18:06 Mike Frysinger (vapier)
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2007-12-30 18:06 UTC (permalink / raw
  To: gentoo-commits

vapier      07/12/30 18:06:13

  Modified:             svgalib-1.9.25-linux2.6.patch
  Log:
  Fix building with linux-2.6.23 #195632.
  (Portage version: 2.1.4_rc11)

Revision  Changes    Path
1.4                  media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?r1=1.3&r2=1.4

Index: svgalib-1.9.25-linux2.6.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- svgalib-1.9.25-linux2.6.patch	3 Dec 2006 07:08:57 -0000	1.3
+++ svgalib-1.9.25-linux2.6.patch	30 Dec 2007 18:06:12 -0000	1.4
@@ -60,6 +60,28 @@
  #  define my_io_remap_page_range(vma, start, ofs, len, prot) \
  		io_remap_page_range(vma,start,ofs,len,prot)
  # else
+@@ -70,6 +70,7 @@
+ 
+ /* These are also not present in 2.6 kernels ... */
+ #if (!defined _LINUX_DEVFS_FS_KERNEL_H) || (defined KERNEL_2_6)
++#include <linux/fs.h>
+ static inline int devfs_register_chrdev (unsigned int major, const char *name,
+                                          struct file_operations *fops)
+ {
+@@ -77,7 +78,12 @@
+ }
+ static inline int devfs_unregister_chrdev (unsigned int major,const char *name)
+ {
+-    return unregister_chrdev (major, name);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)    
++   return unregister_chrdev (major, name);
++#else
++    unregister_chrdev (major, name);
++    return 0;
++#endif
+ }
+ #endif
+ 
 --- svgalib/kernel/svgalib_helper/main.c
 +++ svgalib/kernel/svgalib_helper/main.c
 @@ -1,5 +1,3 @@



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/svgalib/files: svgalib-1.9.25-linux2.6.patch
@ 2008-01-27 11:31 Mike Frysinger (vapier)
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2008-01-27 11:31 UTC (permalink / raw
  To: gentoo-commits

vapier      08/01/27 11:31:35

  Modified:             svgalib-1.9.25-linux2.6.patch
  Log:
  Fix building with linux-2.6.24 #207594 by Eric Bosch.
  (Portage version: 2.1.4)

Revision  Changes    Path
1.5                  media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?r1=1.4&r2=1.5

Index: svgalib-1.9.25-linux2.6.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- svgalib-1.9.25-linux2.6.patch	30 Dec 2007 18:06:12 -0000	1.4
+++ svgalib-1.9.25-linux2.6.patch	27 Jan 2008 11:31:35 -0000	1.5
@@ -13,7 +13,7 @@
  
  
 -CLASS_SIMPLE := $(shell grep class_simple_create $(KDIR)/include/linux/device.h)
-+CLASS_SIMPLE := $(shell grep class_simple_create $(KDIR)/include/linux/device.h 2>/dev/null)
++CLASS_SIMPLE := $(shell grep -s class_simple_create $(KDIR)/include/linux/device.h)
  
  ifneq ($(CLASS_SIMPLE),)
    CLASS_CFLAGS = -DCLASS_SIMPLE=1
@@ -82,6 +82,14 @@
  }
  #endif
  
+@@ -167,3 +167,7 @@
+ #ifndef PCI_VENDOR_ID_RENDITION 
+ #define PCI_VENDOR_ID_RENDITION               0x1163
+ #endif
++
++#ifndef IRQF_SHARED
++# define IRQF_SHARED SA_SHIRQ
++#endif
 --- svgalib/kernel/svgalib_helper/main.c
 +++ svgalib/kernel/svgalib_helper/main.c
 @@ -1,5 +1,3 @@
@@ -122,6 +130,37 @@
  int num_devices=0;
  
  static char *sdev_id="svgalib_helper";
+@@ -103,7 +103,11 @@
+ static volatile int vsync=0;
+ static wait_queue_head_t vsync_wait;
+ 
+-static irqreturn_t vsync_interrupt(int irq, void *dev_id, struct pt_regs *regs)
++static irqreturn_t vsync_interrupt(int irq, void *dev_id
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
++, struct pt_regs *regs
++#endif
++)
+ {
+     struct sh_pci_device *dev = (struct sh_pci_device *)dev_id;
+ 
+@@ -360,7 +364,7 @@
+                 vsync=1;
+                 i=0;
+                 while(irqs[i]!=-1)
+-                    request_irq(irqs[i++], vsync_interrupt, SA_SHIRQ, "svgalib_helper", sdev_id);
++                    request_irq(irqs[i++], vsync_interrupt, IRQF_SHARED, "svgalib_helper", sdev_id);
+                 vga_enable_vsync((void *)sdev_id);
+ 				wait_event_interruptible(vsync_wait, !vsync);
+                 i=0;
+@@ -448,7 +452,7 @@
+ 		int i=sh_pci_devs[minor]->dev->irq;
+ 		sh_pci_devs[minor]->opencount++;
+ 		if(sh_pci_devs[minor]->opencount==1 && i!=0 && i!=-1 && i!=255)
+-			request_irq(i, vsync_interrupt, SA_SHIRQ, "svgalib_helper", sh_pci_devs[minor]);
++			request_irq(i, vsync_interrupt, IRQF_SHARED, "svgalib_helper", sh_pci_devs[minor]);
+ 	}
+ 
+ #ifndef KERNEL_2_6
 @@ -770,10 +770,15 @@
  
  }



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/svgalib/files: svgalib-1.9.25-linux2.6.patch
@ 2008-08-16 14:36 Mike Frysinger (vapier)
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Frysinger (vapier) @ 2008-08-16 14:36 UTC (permalink / raw
  To: gentoo-commits

vapier      08/08/16 14:36:09

  Modified:             svgalib-1.9.25-linux2.6.patch
  Log:
  Fix from Brett Mravec for building with linux-2.6.26 #232117 by Marco Leogrande.
  (Portage version: 2.2_rc6/cvs/Linux 2.6.26.1 x86_64)

Revision  Changes    Path
1.6                  media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?r1=1.5&r2=1.6

Index: svgalib-1.9.25-linux2.6.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- svgalib-1.9.25-linux2.6.patch	27 Jan 2008 11:31:35 -0000	1.5
+++ svgalib-1.9.25-linux2.6.patch	16 Aug 2008 14:36:09 -0000	1.6
@@ -82,6 +82,36 @@
  }
  #endif
  
+@@ -105,7 +109,8 @@
+      class_device_create(svgalib_helper_class,                      	\
+                              MKDEV(SVGALIB_HELPER_MAJOR, _minor),       \
+                              &sh_pci_devs[_minor]->dev->dev, _name);
+-#else /* 2.6.15 changed class_device_create */
++/* 2.6.15 changed class_device_create */
++#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
+ #  define SLH_SYSFS_ADD_CONTROL                                         \
+      class_device_create(svgalib_helper_class, NULL,                	\
+                              MKDEV(SVGALIB_HELPER_MAJOR, 0),            \
+@@ -115,7 +120,18 @@
+      class_device_create(svgalib_helper_class, NULL,                	\
+                              MKDEV(SVGALIB_HELPER_MAJOR, _minor),       \
+                              &sh_pci_devs[_minor]->dev->dev, _name);
+-#endif /* 2.6.15 */
++/* 2.6.26 changed class_device_create to device_create */
++#else
++#  define SLH_SYSFS_ADD_CONTROL                                          \
++     device_create(svgalib_helper_class, NULL,                           \
++                             MKDEV(SVGALIB_HELPER_MAJOR, 0),             \
++                             "svga");
++
++#  define SLH_SYSFS_ADD_DEVICE(_name, _minor)                            \
++     device_create(svgalib_helper_class, &sh_pci_devs[_minor]->dev->dev, \
++                             MKDEV(SVGALIB_HELPER_MAJOR, _minor),        \
++                             _name);
++#endif
+ 
+ #  define SLH_SYSFS_REMOVE_DEVICE(i)                                    \
+      class_destroy(svgalib_helper_class);
 @@ -167,3 +167,7 @@
  #ifndef PCI_VENDOR_ID_RENDITION 
  #define PCI_VENDOR_ID_RENDITION               0x1163






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/svgalib/files: svgalib-1.9.25-linux2.6.patch
@ 2008-10-01 19:17 Stephanie J. Lockwood-Childs (wormo)
  0 siblings, 0 replies; 5+ messages in thread
From: Stephanie J. Lockwood-Childs (wormo) @ 2008-10-01 19:17 UTC (permalink / raw
  To: gentoo-commits

wormo       08/10/01 19:17:25

  Modified:             svgalib-1.9.25-linux2.6.patch
  Log:
  Add lrmi patch to compile with kernels >= 2.6.26 (bug #235401,
  fix posted by reporter pyrophobicman in related bug #235495)
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.7                  media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?r1=1.6&r2=1.7

Index: svgalib-1.9.25-linux2.6.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- svgalib-1.9.25-linux2.6.patch	16 Aug 2008 14:36:09 -0000	1.6
+++ svgalib-1.9.25-linux2.6.patch	1 Oct 2008 19:17:24 -0000	1.7
@@ -5,6 +5,7 @@
 	- use module_param() for 2.6.x and MODULE_PARM() for all others
 	- dont declare all_devices as static since it is exported
 	- dont include <linux/config.h> as the build system does it for us
+	- in lrmi, map old flag names to new names for versions >= 2.6.26
 
 --- svgalib/kernel/svgalib_helper/Makefile
 +++ svgalib/kernel/svgalib_helper/Makefile
@@ -207,4 +208,70 @@
 +
 +MODULE_PARM_DESC(debug, "Debug output level.");
  MODULE_PARM_DESC(all_devices, "Give access to all PCI devices, regardless of class.");
+
+
+--- svgalib/src/lrmi.6.c
++++ svgalib/src/lrmi.6.c
+@@ -169,6 +169,13 @@ LRMI_free_real(void *m)
+ 		}
+ 	}
+ 
++#ifndef TF_MASK
++#define TF_MASK X86_EFLAGS_TF
++#define IF_MASK X86_EFLAGS_IF
++#define IOPL_MASK X86_EFLAGS_IOPL
++#define VIF_MASK X86_EFLAGS_VIF
++#define VIP_MASK X86_EFLAGS_VIP
++#endif
+ 
+ #define DEFAULT_VM86_FLAGS 	(IF_MASK | IOPL_MASK)
+ #define DEFAULT_STACK_SIZE 	0x1000
+--- svgalib/src/lrmi.9.c
++++ svgalib/src/lrmi.9.c
+@@ -206,6 +206,13 @@ LRMI_free_real(void *m)
+ 
+ 
+ #if defined(__linux__)
++#ifndef TF_MASK
++#define TF_MASK X86_EFLAGS_TF
++#define IF_MASK X86_EFLAGS_IF
++#define IOPL_MASK X86_EFLAGS_IOPL
++#define VIF_MASK X86_EFLAGS_VIF
++#define VIP_MASK X86_EFLAGS_VIP
++#endif
+ #define DEFAULT_VM86_FLAGS 	(IF_MASK | IOPL_MASK)
+ #elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
+ #define DEFAULT_VM86_FLAGS  (PSL_I | PSL_IOPL)
+--- svgalib/lrmi-0.6m/lrmi.c
++++ svgalib/lrmi-0.6m/lrmi.c
+@@ -170,6 +170,14 @@ LRMI_free_real(void *m)
+ 	}
+ 
+ 
++#ifndef TF_MASK
++#define TF_MASK X86_EFLAGS_TF
++#define IF_MASK X86_EFLAGS_IF
++#define IOPL_MASK X86_EFLAGS_IOPL
++#define VIF_MASK X86_EFLAGS_VIF
++#define VIP_MASK X86_EFLAGS_VIP
++#endif
++
+ #define DEFAULT_VM86_FLAGS 	(IF_MASK | IOPL_MASK)
+ #define DEFAULT_STACK_SIZE 	0x1000
+ #define RETURN_TO_32_INT 	255
+--- svgalib/lrmi-0.9/lrmi.c
++++ svgalib/lrmi-0.9/lrmi.c
+@@ -203,6 +203,13 @@ LRMI_free_real(void *m)
  
+ 
+ #if defined(__linux__)
++#ifndef TF_MASK
++#define TF_MASK X86_EFLAGS_TF
++#define IF_MASK X86_EFLAGS_IF
++#define IOPL_MASK X86_EFLAGS_IOPL
++#define VIF_MASK X86_EFLAGS_VIF
++#define VIP_MASK X86_EFLAGS_VIP
++#endif
+ #define DEFAULT_VM86_FLAGS 	(IF_MASK | IOPL_MASK)
+ #elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)
+ #define DEFAULT_VM86_FLAGS  (PSL_I | PSL_IOPL)






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/svgalib/files: svgalib-1.9.25-linux2.6.patch
@ 2008-10-28 20:09 Paul de Vrieze (pauldv)
  0 siblings, 0 replies; 5+ messages in thread
From: Paul de Vrieze (pauldv) @ 2008-10-28 20:09 UTC (permalink / raw
  To: gentoo-commits

pauldv      08/10/28 20:09:27

  Modified:             svgalib-1.9.25-linux2.6.patch
  Log:
  Fix compilation on 2.6.27
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27.1 i686)

Revision  Changes    Path
1.8                  media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch?r1=1.7&r2=1.8

Index: svgalib-1.9.25-linux2.6.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/svgalib/files/svgalib-1.9.25-linux2.6.patch,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- svgalib-1.9.25-linux2.6.patch	1 Oct 2008 19:17:24 -0000	1.7
+++ svgalib-1.9.25-linux2.6.patch	28 Oct 2008 20:09:27 -0000	1.8
@@ -1,11 +1,11 @@
-	- get rid of warning when linux/device.h doesnt exist
-	- touch up the Makefile to let the ebuild handle the module details
-	- fix support with io remap stuff in newer kernels
-	- dont include headers that dont exist in 2.4.x kernels
-	- use module_param() for 2.6.x and MODULE_PARM() for all others
-	- dont declare all_devices as static since it is exported
-	- dont include <linux/config.h> as the build system does it for us
-	- in lrmi, map old flag names to new names for versions >= 2.6.26
+        - get rid of warning when linux/device.h doesnt exist
+        - touch up the Makefile to let the ebuild handle the module details
+        - fix support with io remap stuff in newer kernels
+        - dont include headers that dont exist in 2.4.x kernels
+        - use module_param() for 2.6.x and MODULE_PARM() for all others
+        - dont declare all_devices as static since it is exported
+        - dont include <linux/config.h> as the build system does it for us
+        - in lrmi, map old flag names to new names for versions >= 2.6.26
 
 --- svgalib/kernel/svgalib_helper/Makefile
 +++ svgalib/kernel/svgalib_helper/Makefile
@@ -83,7 +83,7 @@
  }
  #endif
  
-@@ -105,7 +109,8 @@
+@@ -99,7 +105,8 @@
       class_device_create(svgalib_helper_class,                      	\
                               MKDEV(SVGALIB_HELPER_MAJOR, _minor),       \
                               &sh_pci_devs[_minor]->dev->dev, _name);
@@ -93,13 +93,13 @@
  #  define SLH_SYSFS_ADD_CONTROL                                         \
       class_device_create(svgalib_helper_class, NULL,                	\
                               MKDEV(SVGALIB_HELPER_MAJOR, 0),            \
-@@ -115,7 +120,18 @@
+@@ -109,7 +116,30 @@
       class_device_create(svgalib_helper_class, NULL,                	\
                               MKDEV(SVGALIB_HELPER_MAJOR, _minor),       \
                               &sh_pci_devs[_minor]->dev->dev, _name);
 -#endif /* 2.6.15 */
 +/* 2.6.26 changed class_device_create to device_create */
-+#else
++#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27)
 +#  define SLH_SYSFS_ADD_CONTROL                                          \
 +     device_create(svgalib_helper_class, NULL,                           \
 +                             MKDEV(SVGALIB_HELPER_MAJOR, 0),             \
@@ -109,11 +109,23 @@
 +     device_create(svgalib_helper_class, &sh_pci_devs[_minor]->dev->dev, \
 +                             MKDEV(SVGALIB_HELPER_MAJOR, _minor),        \
 +                             _name);
++/* 2.6.27 changed device_create to device_create_drvdata */
++#else
++#  define SLH_SYSFS_ADD_CONTROL                                          \
++     device_create_drvdata(svgalib_helper_class, NULL,                   \
++                           MKDEV(SVGALIB_HELPER_MAJOR, 0),               \
++                           "%s%d", "svga", 0);
++
++#  define SLH_SYSFS_ADD_DEVICE(_name, _minor)                            \
++     device_create_drvdata(svgalib_helper_class,                         \
++                           &sh_pci_devs[_minor]->dev->dev,               \
++                           MKDEV(SVGALIB_HELPER_MAJOR, _minor),          \
++                           "%s%d", _name, _minor);
 +#endif
  
  #  define SLH_SYSFS_REMOVE_DEVICE(i)                                    \
       class_destroy(svgalib_helper_class);
-@@ -167,3 +167,7 @@
+@@ -161,3 +191,7 @@
  #ifndef PCI_VENDOR_ID_RENDITION 
  #define PCI_VENDOR_ID_RENDITION               0x1163
  #endif
@@ -129,7 +141,7 @@
  #if defined (CONFIG_MODVERSIONS) && !defined (MODVERSIONS)
  # define MODVERSIONS
  #endif
-@@ -19,15 +19,22 @@
+@@ -17,15 +15,22 @@
  #include <linux/ioport.h>
  #include <linux/interrupt.h>
  #include <linux/pci.h>
@@ -152,7 +164,7 @@
  
  #define __KERNEL_SYSCALLS__
  #include <linux/unistd.h>
-@@ -55,7 +55,7 @@
+@@ -50,7 +55,7 @@
  #include "displaystart.h"
  
  int debug=0;
@@ -161,7 +173,7 @@
  int num_devices=0;
  
  static char *sdev_id="svgalib_helper";
-@@ -103,7 +103,11 @@
+@@ -98,7 +103,11 @@
  static volatile int vsync=0;
  static wait_queue_head_t vsync_wait;
  
@@ -174,7 +186,7 @@
  {
      struct sh_pci_device *dev = (struct sh_pci_device *)dev_id;
  
-@@ -360,7 +364,7 @@
+@@ -355,7 +364,7 @@
                  vsync=1;
                  i=0;
                  while(irqs[i]!=-1)
@@ -183,7 +195,7 @@
                  vga_enable_vsync((void *)sdev_id);
  				wait_event_interruptible(vsync_wait, !vsync);
                  i=0;
-@@ -448,7 +452,7 @@
+@@ -443,7 +452,7 @@
  		int i=sh_pci_devs[minor]->dev->irq;
  		sh_pci_devs[minor]->opencount++;
  		if(sh_pci_devs[minor]->opencount==1 && i!=0 && i!=-1 && i!=255)
@@ -192,7 +204,7 @@
  	}
  
  #ifndef KERNEL_2_6
-@@ -770,10 +770,15 @@
+@@ -763,10 +772,15 @@
  
  }
  
@@ -208,11 +220,11 @@
 +
 +MODULE_PARM_DESC(debug, "Debug output level.");
  MODULE_PARM_DESC(all_devices, "Give access to all PCI devices, regardless of class.");
-
+ 
 
 --- svgalib/src/lrmi.6.c
 +++ svgalib/src/lrmi.6.c
-@@ -169,6 +169,13 @@ LRMI_free_real(void *m)
+@@ -169,6 +169,13 @@
  		}
  	}
  
@@ -228,7 +240,7 @@
  #define DEFAULT_STACK_SIZE 	0x1000
 --- svgalib/src/lrmi.9.c
 +++ svgalib/src/lrmi.9.c
-@@ -206,6 +206,13 @@ LRMI_free_real(void *m)
+@@ -206,6 +206,13 @@
  
  
  #if defined(__linux__)
@@ -244,7 +256,7 @@
  #define DEFAULT_VM86_FLAGS  (PSL_I | PSL_IOPL)
 --- svgalib/lrmi-0.6m/lrmi.c
 +++ svgalib/lrmi-0.6m/lrmi.c
-@@ -170,6 +170,14 @@ LRMI_free_real(void *m)
+@@ -170,6 +170,14 @@
  	}
  
  
@@ -261,7 +273,7 @@
  #define RETURN_TO_32_INT 	255
 --- svgalib/lrmi-0.9/lrmi.c
 +++ svgalib/lrmi-0.9/lrmi.c
-@@ -203,6 +203,13 @@ LRMI_free_real(void *m)
+@@ -203,6 +203,13 @@
  
  
  #if defined(__linux__)






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-10-28 20:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-28 20:09 [gentoo-commits] gentoo-x86 commit in media-libs/svgalib/files: svgalib-1.9.25-linux2.6.patch Paul de Vrieze (pauldv)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-01 19:17 Stephanie J. Lockwood-Childs (wormo)
2008-08-16 14:36 Mike Frysinger (vapier)
2008-01-27 11:31 Mike Frysinger (vapier)
2007-12-30 18:06 Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox