[FFmpeg-cvslog] Merge commit '8a6e7a67cb2943f552569801539829a304971302'
James Almer
git at videolan.org
Fri Mar 31 20:35:15 EEST 2017
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Fri Mar 31 14:34:25 2017 -0300| [3795899978cf486c27c3c2001e6f909a210f01dd] | committer: James Almer
Merge commit '8a6e7a67cb2943f552569801539829a304971302'
* commit '8a6e7a67cb2943f552569801539829a304971302':
configure: Use check_cpp in CPP flags tests
Merged-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3795899978cf486c27c3c2001e6f909a210f01dd
---
configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index e23b211..d9185bd 100755
--- a/configure
+++ b/configure
@@ -1018,7 +1018,7 @@ check_code(){
check_cppflags(){
log check_cppflags "$@"
- check_cc "$@" <<EOF && append CPPFLAGS "$@"
+ check_cpp "$@" <<EOF && append CPPFLAGS "$@"
int x;
EOF
}
@@ -1391,7 +1391,7 @@ check_host_cpp(){
check_host_cppflags(){
log check_host_cppflags "$@"
- check_host_cc "$@" <<EOF && append host_cppflags "$@"
+ check_host_cpp "$@" <<EOF && append host_cppflags "$@"
int x;
EOF
}
======================================================================
More information about the ffmpeg-cvslog
mailing list