Rémi Verschelde 0919ee69ce certs: Sync with Mozilla bundle as of Oct 19, 2024 hai 1 semana
..
b2d_convexdecomp 6cf507f004 Move other lone thirdparty files to thirdparty/misc %!s(int64=7) %!d(string=hai) anos
certs 0919ee69ce certs: Sync with Mozilla bundle as of Oct 19, 2024 hai 1 semana
fonts 30f4a16cdf Use Noto fonts for Arabic, Hebrew and Thai %!s(int64=7) %!d(string=hai) anos
freetype 438175dd2b Update freetype to 2.8.1 %!s(int64=7) %!d(string=hai) anos
glew e04ec9565b glew: Split thirdparty files and isolate env %!s(int64=8) %!d(string=hai) anos
jpeg-compressor ea1e180e4a jpg: Make it a module and split jpgd thirdparty files %!s(int64=8) %!d(string=hai) anos
libmpcdec c8a97c3678 mpc: Move to a module and split thirdparty libmpcdec %!s(int64=8) %!d(string=hai) anos
libogg 96e5d9430b libogg: Update to pristine version 1.3.3 %!s(int64=6) %!d(string=hai) anos
libpng 5df893613e libpng: Update to upstream 1.6.37 %!s(int64=5) %!d(string=hai) anos
libtheora 82e8721715 theora: Move to a module and split thirdparty lib %!s(int64=8) %!d(string=hai) anos
libvorbis 8009fe22df Update libvorbis to 1.3.6 %!s(int64=5) %!d(string=hai) anos
libwebp 8bd68b4b49 Update libwebp to 1.1.0 %!s(int64=4) %!d(string=hai) anos
minizip 26e0dddb6c Update minizip to 1.2.11 %!s(int64=6) %!d(string=hai) anos
misc 0f436f10d0 FastLZ: Update to upstream version 0.5.0 %!s(int64=4) %!d(string=hai) anos
openssl 1394bbd443 openssl: Update to pristine 1.0.2u (security update) %!s(int64=4) %!d(string=hai) anos
opus 75a6e0f65a opus: Update to upstream version 1.1.5 %!s(int64=7) %!d(string=hai) anos
pvrtccompressor 819ccdd340 dds/etc1/pbm/pvr: Make those modules and split thirdparty files %!s(int64=8) %!d(string=hai) anos
rg-etc1 819ccdd340 dds/etc1/pbm/pvr: Make those modules and split thirdparty files %!s(int64=8) %!d(string=hai) anos
rtaudio 4ff4177acc rtaudio: Split thirdparty files %!s(int64=8) %!d(string=hai) anos
speex 995dcb610c ogg/vorbis/opus/speex: Make them modules and unbundle thirdparty libs %!s(int64=8) %!d(string=hai) anos
squish 20d1a28341 squish: Update to upstream version 1.15 %!s(int64=7) %!d(string=hai) anos
zlib b351d4cbc1 zlib: Update to upstream version 1.2.11 %!s(int64=7) %!d(string=hai) anos
README.md 0919ee69ce certs: Sync with Mozilla bundle as of Oct 19, 2024 hai 1 semana

README.md

Third party libraries

b2d_convexdecomp

The files were adapted to Godot by removing the dependency on b2Math (replacing it by b2Glue.h) and commenting out some verbose printf calls. Upstream code has not changed in 10 years, no need to keep track of changes.

certs

Files extracted from upstream source:

  • ca-bundle.crt renamed to ca-certificates.crt

fonts

Noto Sans

Use UI font if exists, because it has tight vertial metrix and good for UI.

Adobe Source Code Pro Regular

DroidSans*.ttf

freetype

Files extracted from upstream source:

  • the src/ folder, stripped of the Jamfile files
  • the include/ folder
  • docs/{FTL.TXT,LICENSE.TXT}

glew

Files extracted from upstream source:

  • src/glew.c
  • include/GL/ as GL/
  • LICENSE.txt

jpeg-compressor

Files extracted from upstream source:

  • jpgd.{c,h}

libmpcdec

Files extracted from upstream source:

  • all .c and .h files in libmpcdec/
  • include/mpc as mpc/
  • COPYING from libmpcdec/

libogg

Files extracted from upstream source:

  • src/*.c
  • include/ogg/*.h in ogg/
  • COPYING

libpng

Files extracted from upstream source:

  • all .c and .h files of the main directory, except from example.c and pngtest.c
  • the arm/ folder
  • scripts/pnglibconf.h.prebuilt as pnglibconf.h
  • LICENSE

libtheora

Files extracted from upstream source:

  • all .c, .h in lib/
  • all .h files in include/theora/ as theora/
  • COPYING and LICENSE

libvorbis

Files extracted from upstream source:

  • src/* except from: lookups.pl, Makefile.*
  • include/vorbis/*.h as vorbis/
  • COPYING

libwebp

Files extracted from upstream source:

  • src/* except from: .am, .rc and .in files
  • AUTHORS, COPYING, PATENTS

Important: The files utils/bit_reader_utils.{c,h} have Godot-made changes to ensure they build for Javascript/HTML5. Those changes are marked with // -- GODOT -- comments.

minizip

Files extracted from the upstream source:

  • contrib/minizip/{crypt.h,ioapi.{c,h},zip.{c,h},unzip.{c,h}}

Important: Some files have Godot-made changes for use in core/io. They are marked with /* GODOT start */ and /* GODOT end */ comments and a patch is provided in the minizip/ folder.

misc

Collection of single-file libraries used in Godot components.

core

modules

scene

openssl

Files extracted from the upstream source:

  • Our openssl/: contains the headers installed in /usr/include/openssl; gather them in the source tarball with make links and cp -f include/openssl/*.h ../openssl/openssl/
  • Our crypto/: copy of upstream crypto/, with some cleanup (see below).
  • Our ssl/: copy of upstream ssl/, with some cleanup (see below).
  • Cleanup: find \( -name "Makefile" -o -name "*.S" -o -name "*.bat" -o -name "*.bc" \ -o -name "*.com" -o -name "*.cnf" -o -name "*.ec" -o -name "*.fre" \ -o -name "*.gcc" -o -name "*.in" -o -name "*.lnx" -o -name "*.m4" \ -o -name "*.pl" -o -name "*.pod" -o -name "*.s" -o -name "*.sh" \ -o -name "*.sol" -o -name "*test*" \) -delete cd openssl; for file in *.h; do find ../{crypto,ssl} -name "$file" -delete; done For the rest check the git status and decide.
  • e_os.h
  • MacOS/buildinf.h
  • LICENSE
  • Apply the Godot-specific patches in the patches/ folder (make sure not to commit .orig/.rej files generated by patch).
  • Review openssl/opensslconf.h changes and make sure they make sense for our "one size fits all" config.

opus

Files extracted from upstream source:

  • all .c and .h files in src/ (both opus and opusfile), except opus_demo.c
  • all .h files in include/ (both opus and opusfile) as opus/
  • celt/ and silk/ subfolders
  • COPYING

pvrtccompressor

Files extracted from upstream source:

  • all .cpp and .h files apart from main.cpp
  • LICENSE.TXT

rg-etc1

Files extracted from upstream source:

  • rg_etc1.{cpp,h}

rtaudio

Files extracted from upstream source:

  • RtAudio.{cpp,h}

speex

squish

Files extracted from upstream source:

  • all .cpp, .h and .inl files

zlib

Files extracted from upstream source:

  • all .c and .h files