mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 02:43:03 +00:00
This resolves an issue where the default freebsd compiler does not include /usr/local/include which contains important headers such as GL/gl.h and results in the check_header function failing to find them. Unfortunately pkg-config/pkgconf will not work here for two reasons. 1. It does not seem able to actually check for gl.h which RetroArch explicitly needs. 2. Not all systems have a pkg-config implementation so we will still have to fall back to checking for gl.h... Fixes https://github.com/libretro/RetroArch/issues/5958