Merge pull request #5639 from orbea/raspian

Fix https://github.com/libretro/RetroArch/issues/5636
This commit is contained in:
Twinaphex 2017-11-02 00:19:35 +01:00 committed by GitHub
commit c96a9dbf76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,12 +15,12 @@ add_define_make()
add_include_dirs()
{ while [ "$1" ]; do INCLUDE_DIRS="$INCLUDE_DIRS -I$1"; shift; done
INCLUDE_DIRS="${INCLUDE_DIRS#* }"
INCLUDE_DIRS="${INCLUDE_DIRS# }"
}
add_library_dirs()
{ while [ "$1" ]; do LIBRARY_DIRS="$LIBRARY_DIRS -L$1"; shift; done
LIBRARY_DIRS="${LIBRARY_DIRS#* }"
LIBRARY_DIRS="${LIBRARY_DIRS# }"
}
check_lib() # $1 = language $2 = HAVE_$2 $3 = lib $4 = function in lib $5 = extralibs $6 = headers $7 = critical error message [checked only if non-empty]