xrandr: fix uclibc build (from Poky)
authorMarcin Juszkiewicz <hrw@openembedded.org>
Wed, 30 May 2007 10:03:42 +0000 (10:03 +0000)
committerMarcin Juszkiewicz <hrw@openembedded.org>
Wed, 30 May 2007 10:03:42 +0000 (10:03 +0000)
packages/xorg-app/xrandr/.mtn2git_empty [new file with mode: 0644]
packages/xorg-app/xrandr/resolve_symbol_clash.patch [new file with mode: 0644]
packages/xorg-app/xrandr_1.2.0.bb

diff --git a/packages/xorg-app/xrandr/.mtn2git_empty b/packages/xorg-app/xrandr/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/xorg-app/xrandr/resolve_symbol_clash.patch b/packages/xorg-app/xrandr/resolve_symbol_clash.patch
new file mode 100644 (file)
index 0000000..80d8960
--- /dev/null
@@ -0,0 +1,35 @@
+---
+ xrandr.c |    6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+Index: xrandr-1.2.0/xrandr.c
+===================================================================
+--- xrandr-1.2.0.orig/xrandr.c 2007-02-19 05:26:50.000000000 +0000
++++ xrandr-1.2.0/xrandr.c      2007-05-28 19:22:30.000000000 +0100
+@@ -163,7 +163,7 @@ reflection_name (Rotation rotation)
+ #if HAS_RANDR_1_2
+ typedef enum _policy {
+-    clone, extend
++    policy_clone, extend
+ } policy_t;
+ typedef enum _relation {
+@@ -1398,7 +1398,7 @@ main (int argc, char **argv)
+ #if HAS_RANDR_1_2
+     output_t  *output = NULL;
+     char      *crtc;
+-    policy_t  policy = clone;
++    policy_t  policy = policy_clone;
+     Bool      setit_1_2 = False;
+     Bool      query_1_2 = False;
+     Bool      query_1 = False;
+@@ -1634,7 +1634,7 @@ main (int argc, char **argv)
+           continue;
+       }
+       if (!strcmp ("--clone", argv[i])) {
+-          policy = clone;
++          policy = policy_clone;
+           setit_1_2 = True;
+           continue;
+       }
index 57bd51f..f876ba6 100644 (file)
@@ -5,4 +5,6 @@ LICENSE= "BSD-X"
 
 DEPENDS += " libxrandr libxrender virtual/libx11"
 PE = "1"
+PR = "r1"
 
+SRC_URI += "file://resolve_symbol_clash.patch;patch=1"
\ No newline at end of file