I because of a conflict with "clone" used in xrandr.c and sched.h from uclibc, xrandr does not build against uclibc. Here is a small patch to fix this issue:<br><br>diff --git a/xrandr.c b/xrandr.c<br>index e2a657f..e7c3d61 100644<br>
--- a/xrandr.c<br>+++ b/xrandr.c<br>@@ -189,7 +189,7 @@ reflection_name (Rotation rotation)<br><br> #if HAS_RANDR_1_2<br> typedef enum _policy {<br>- clone, extend<br>+ _clone, extend<br> } policy_t;<br><br> typedef enum _relation {<br>
@@ -1622,7 +1622,7 @@ main (int argc, char **argv)<br> int ret = 0;<br> #if HAS_RANDR_1_2<br> output_t *output = NULL;<br>- policy_t policy = clone;<br>+ policy_t policy = _clone;<br> Bool setit_1_2 = False;<br>
Bool query_1_2 = False;<br> Bool modeit = False;<br>@@ -1886,7 +1886,7 @@ main (int argc, char **argv)<br> continue;<br> }<br> if (!strcmp ("--clone", argv[i])) {<br>
- policy = clone;<br>+ policy = _clone;<br> setit_1_2 = True;<br> continue;<br> }<br>