summaryrefslogtreecommitdiff
path: root/Ports/SDL2_ttf
AgeCommit message (Collapse)Author
2021-06-05Ports: Specify missing library when linking SDL2_ttfGunnar Beutner
2021-04-25Ports: Update checksums to use the SHA256 algorithmGunnar Beutner
2021-04-25Ports: Build shared libraries with -Wl,-sonameGunnar Beutner
Without a SONAME gcc will put the whole library path into executables which link against these libraries: $ readelf -d Root/usr/local/games/openttd Dynamic section at offset 0xf0747c contains 32 entries: Tag Type Name/Value 0x00000001 (NEEDED) [libgcc_s.so] 0x00000001 (NEEDED) [/serenity/Build/i686/Root/usr/local/lib/libpng.so] 0x00000001 (NEEDED) [/serenity/Build/i686/Root/usr/local/lib/libz.so] 0x00000001 (NEEDED) [/serenity/Build/i686/Root/usr/local/lib/liblzma.so] 0x00000001 (NEEDED) [libSDL2-2.0.so.1] 0x00000001 (NEEDED) [libicui18n.so.69] 0x00000001 (NEEDED) [libicuuc.so.69] 0x00000001 (NEEDED) [libicudata.so.69] 0x00000001 (NEEDED) [libpthread.so] 0x00000001 (NEEDED) [libm.so] 0x00000001 (NEEDED) [libc.so] This causes the executable to fail because the dynamic linker tries to find the library in the incorrect path.
2021-04-20Ports: Improve consistency and quality of portsPanagiotis Vasilopoulos
- Replaced /Root with - Improved documentation. - Removed a few typos. - Replaced with - Added brackets in some cases. Most of the changes were reviewed and applied manually.
2021-04-16Ports: Add auth_type verification to all package.sh filesBrendan Coles
2021-04-16Ports: Build shared libraries for a few more portsGunnar Beutner
This manually builds shared libraries for a bunch of ports. Using libtool would be preferable but that's currently broken so I'm linking the shared libraries manually.
2021-04-16Ports: Make sure ports are installed into /usr/localGunnar Beutner
2021-04-14Ports: Fix building SDL2_ttf when X11 headers are installed on the host systemGunnar Beutner
2021-04-04Ports: Set freetype2 include path for SDL2_ttfLinus Groh
It tried to use some headers from my host machine and failed to build.
2021-03-13Ports: Remove redundant 'workdir' entriesLinus Groh
2021-03-11Ports: Replace hardcoded Build/ paths with SERENITY_BUILD_DIRLinus Groh
Fixes #5710.
2021-03-07LibCompress: Rename libcompression.so to libcompress.soJelle Raaijmakers
2021-03-07Ports: Add SDL2_ttfAndreas Kling