mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 03:03:02 +01: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>
21 lines
374 B
Diff
21 lines
374 B
Diff
---
|
|
libxml.h | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- libxml2-2.6.29.orig/libxml.h
|
|
+++ libxml2-2.6.29/libxml.h
|
|
@@ -11,10 +11,13 @@
|
|
|
|
#ifndef NO_LARGEFILE_SOURCE
|
|
#ifndef _LARGEFILE_SOURCE
|
|
#define _LARGEFILE_SOURCE
|
|
#endif
|
|
+#ifndef _LARGEFILE64_SOURCE
|
|
+#define _LARGEFILE64_SOURCE
|
|
+#endif
|
|
#ifndef _FILE_OFFSET_BITS
|
|
#define _FILE_OFFSET_BITS 64
|
|
#endif
|
|
#endif
|
|
|