Skip to content
Snippets Groups Projects
Commit 283d52ef authored by Leo Ma's avatar Leo Ma
Browse files

Modify x264 configure to activate pthread on NDK


Signed-off-by: default avatarLeo Ma <begeekmyfriend@gmail.com>
parent 4e69fd92
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -999,7 +999,7 @@ elif [ "$thread" != "no" ] ; then
cc_check pthread.h -lc "pthread_create(0,0,0,0);" && thread="posix" && libpthread="-lc"
;;
*)
if cc_check pthread.h -lpthread "pthread_create(0,0,0,0);" ; then
if cc_check pthread.h -lc "pthread_create(0,0,0,0);" ; then
thread="posix"
libpthread="-lpthread"
else
Loading
Loading
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