mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-03 05:10:03 +02:00
Merge commit '0ce3761c781f2c2de40a5a8a99563878804f47cc'
* commit '0ce3761c781f2c2de40a5a8a99563878804f47cc': configure: Add stdlib.h #include to CPPFLAGS check helper functions Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
407a7547da
4
configure
vendored
4
configure
vendored
@ -1040,7 +1040,7 @@ check_code(){
|
|||||||
check_cppflags(){
|
check_cppflags(){
|
||||||
log check_cppflags "$@"
|
log check_cppflags "$@"
|
||||||
check_cpp "$@" <<EOF && append CPPFLAGS "$@"
|
check_cpp "$@" <<EOF && append CPPFLAGS "$@"
|
||||||
int x;
|
#include <stdlib.h>
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1424,7 +1424,7 @@ check_host_cpp(){
|
|||||||
check_host_cppflags(){
|
check_host_cppflags(){
|
||||||
log check_host_cppflags "$@"
|
log check_host_cppflags "$@"
|
||||||
check_host_cpp "$@" <<EOF && append host_cppflags "$@"
|
check_host_cpp "$@" <<EOF && append host_cppflags "$@"
|
||||||
int x;
|
#include <stdlib.h>
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user