mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 18:49:32 +02:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
20 lines
481 B
Diff
20 lines
481 B
Diff
Unbreak the linux mouse driver by using config.h
|
|
|
|
RP - 4/11/07
|
|
|
|
Index: git/src/lnx_mouse.c
|
|
===================================================================
|
|
--- git.orig/src/lnx_mouse.c 2008-11-04 23:46:05.000000000 +0000
|
|
+++ git/src/lnx_mouse.c 2008-11-04 23:46:15.000000000 +0000
|
|
@@ -3,8 +3,8 @@
|
|
* Copyright 1999 by The XFree86 Project, Inc.
|
|
*/
|
|
|
|
-#ifdef HAVE_XORG_CONFIG_H
|
|
-#include <xorg-config.h>
|
|
+#ifdef HAVE_CONFIG_H
|
|
+#include <config.h>
|
|
#endif
|
|
|
|
#include <X11/X.h>
|