Files
RedBear-OS/recipes/dev/fontconfig/source/src/makealias
T
vasilito ff4ff35918 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

39 lines
1022 B
Bash
Executable File

#!/bin/sh
SRCDIR=$1
shift
HEAD=$1
shift
TAIL=$1
shift
rm -f $HEAD $TAIL
echo "#if HAVE_GNUC_ATTRIBUTE" >> $TAIL
cat "$@" | grep '^Fc[^ ]* *(' | sed -e 's/ *(.*$//' |
while read name; do
case $name in
FcCacheDir|FcCacheSubdir)
;;
*)
alias="IA__$name"
hattr='FC_ATTRIBUTE_VISIBILITY_HIDDEN'
echo "extern __typeof ($name) $alias $hattr;" >> $HEAD
echo "#define $name $alias" >> $HEAD
ifdef=`grep -l '^'$name'[ (]' "$SRCDIR"/*.c | sed -n 1p | sed -e 's/^.*\/\([^.]*\)\.c/__\1__/'`
if [ -z "$ifdef" ] ; then
echo "error: could not locate $name in src/*.c" 1>&2
exit 1
fi
if [ "$ifdef" != "$last" ] ; then
[ -n "$last" ] && echo "#endif /* $last */" >> $TAIL
echo "#ifdef $ifdef" >> $TAIL
last=$ifdef
fi
echo "# undef $name" >> $TAIL
cattr='__attribute((alias("'$alias'"))) FC_ATTRIBUTE_VISIBILITY_EXPORT'
echo "extern __typeof ($name) $name $cattr;" >> $TAIL
;;
esac
done
[ $? -ne 0 ] && exit 1
echo "#endif /* $ifdef */" >> $TAIL
echo "#endif /* HAVE_GNUC_ATTRIBUTE */" >> $TAIL