More consistent configure script detection message (#2409)

This commit is contained in:
sauwming 2020-04-29 15:09:06 +08:00 committed by GitHub
parent 87df84ec12
commit 4f26a6dd3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 15 deletions

View File

@ -7596,8 +7596,8 @@ _ACEOF
if ac_fn_c_try_link "$LINENO"; then :
ac_openh264_cflags="-DPJMEDIA_HAS_OPENH264_CODEC=1 $OPENH264_CFLAGS"
ac_openh264_ldflags="$OPENH264_LDFLAGS $OPENH264_LIBS"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
@ -7682,8 +7682,8 @@ _ACEOF
if ac_fn_c_try_link "$LINENO"; then :
ac_vpx_cflags="-DPJMEDIA_HAS_VPX_CODEC=1 $VPX_CFLAGS"
ac_vpx_ldflags="$VPX_LDFLAGS $VPX_LIBS"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
@ -7845,8 +7845,8 @@ ippStaticInit();
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
@ -7972,8 +7972,8 @@ extern USC_Fxns USC_G729AFP_Fxns;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
@ -8934,8 +8934,8 @@ if ac_fn_c_try_link "$LINENO"; then :
$as_echo "#define PJMEDIA_HAS_BCG729 1" >>confdefs.h
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else

View File

@ -1287,7 +1287,7 @@ AC_ARG_ENABLE(openh264,
)],
[ ac_openh264_cflags="-DPJMEDIA_HAS_OPENH264_CODEC=1 $OPENH264_CFLAGS"
ac_openh264_ldflags="$OPENH264_LDFLAGS $OPENH264_LIBS"
AC_MSG_RESULT(ok)
AC_MSG_RESULT(yes)
],
[
LIBS="$SAVED_LIBS"
@ -1352,7 +1352,7 @@ AC_ARG_ENABLE(vpx,
)],
[ ac_vpx_cflags="-DPJMEDIA_HAS_VPX_CODEC=1 $VPX_CFLAGS"
ac_vpx_ldflags="$VPX_LDFLAGS $VPX_LIBS"
AC_MSG_RESULT(ok)
AC_MSG_RESULT(yes)
],
[
LIBS="$SAVED_LIBS"
@ -1485,7 +1485,7 @@ if test "x$enable_ipp" != "xno"; then
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <ippcore.h>
]],
[ippStaticInit();])],
[AC_MSG_RESULT(ok)],
[AC_MSG_RESULT(yes)],
[AC_MSG_FAILURE([Error: unable to recognize your IPP installation. Make sure the paths and ARCH suffix are set correctly, run with --help for more info])])
CFLAGS="$SAVED_CFLAGS"
@ -1575,7 +1575,7 @@ if test "x$enable_ipp" != "xno"; then
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <usc.h>
]],
[extern USC_Fxns USC_G729AFP_Fxns;])],
[AC_MSG_RESULT(ok)],
[AC_MSG_RESULT(yes)],
[AC_MSG_FAILURE(no)])
CFLAGS="$SAVED_CFLAGS"
@ -2011,7 +2011,7 @@ AC_ARG_ENABLE(bcg729,
)],
[
AC_DEFINE(PJMEDIA_HAS_BCG729,1)
AC_MSG_RESULT(ok)
AC_MSG_RESULT(yes)
],
[
[ac_no_bcg729=1]