You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
812 log_msg "x264 configure script"
813 if [ -n "$*" ]; then
814 msg="Command line options:"
815 for i in $@; do
816 msg="$msg \"$i\""
817 if cc_check '' -std=gnu99 'for( int i = 0; i < 9; i++ );' ; then
818 CFLAGS="$CFLAGS -std=gnu99 -D_GNU_SOURCE"
819 elif cc_check '' -std=c99 'for( int i = 0; i < 9; i++ );' ; then
820 CFLAGS="$CFLAGS -std=c99 -D_POSIX_C_SOURCE=200112L -D_BSD_SOURCE"
821 elif ! cc_check '' '' 'for( int i = 0; i < 9; i++ );' ; then
822 die "C99 compiler is needed for compilation."
823 fi
824 fi
The text was updated successfully, but these errors were encountered:
configure
, line 815: nodone
keywordThe text was updated successfully, but these errors were encountered: