Files
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

29 lines
926 B
Diff

*** libxml.orig 2018-10-28 14:37:07.007164889 +0100
--- libxml 2019-02-14 22:19:29.994771110 +0100
***************
*** 118,124 ****
fabs
configure.ac:
! gl_LIBXML
Makefile.am:
if INCLUDED_LIBXML
--- 118,133 ----
fabs
configure.ac:
! # In libtextstyle, we don't want to use an external libxml, because its
! # dependencies and their dynamic relocations have an impact on the startup
! # time of a program that is linked with it. As you can see by using
! # 'readelf -r ... | wc -l' and 'readelf -d ... | grep NEEDED':
! # - libxml2.so has more than 3300 relocations and depends on libicuuc.
! # - libicuuc.so has more than 4900 relocations and depends on libstdc++.
! # - libstdc++.so has more than 4600 relocations.
! # These are more than 12800 relocations, to perform at program startup.
! # So, force the use of the included libxml part.
! gl_LIBXML([yes])
Makefile.am:
if INCLUDED_LIBXML