Skip to content
Snippets Groups Projects
Commit 52ccc4a0 authored by Diego Biurrun's avatar Diego Biurrun Committed by Luca Barbato
Browse files

configure: Support preprocessor macros as header names


New versions of FreeType have moved the location of their API
header(s) and hide the location behind a macro.

Since the location changes between versions and no other way
to know the location exists, this workaround becomes necessary.

Signed-off-by: default avatarLuca Barbato <lu_zero@gentoo.org>
parent 82b9799b
No related branches found
No related tags found
No related merge requests found
...@@ -763,6 +763,13 @@ check_ld(){ ...@@ -763,6 +763,13 @@ check_ld(){
check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
} }
print_include(){
hdr=$1
test "${hdr%.h}" = "${hdr}" &&
echo "#include $hdr" ||
echo "#include <$hdr>"
}
check_code(){ check_code(){
log check_code "$@" log check_code "$@"
check=$1 check=$1
...@@ -771,7 +778,7 @@ check_code(){ ...@@ -771,7 +778,7 @@ check_code(){
shift 3 shift 3
{ {
for hdr in $headers; do for hdr in $headers; do
echo "#include <$hdr>" print_include $hdr
done done
echo "int main(void) { $code; return 0; }" echo "int main(void) { $code; return 0; }"
} | check_$check "$@" } | check_$check "$@"
...@@ -866,7 +873,7 @@ check_func_headers(){ ...@@ -866,7 +873,7 @@ check_func_headers(){
shift 2 shift 2
{ {
for hdr in $headers; do for hdr in $headers; do
echo "#include <$hdr>" print_include $hdr
done done
for func in $funcs; do for func in $funcs; do
echo "long check_$func(void) { return (long) $func; }" echo "long check_$func(void) { return (long) $func; }"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment