mirror of
https://github.com/curl/curl.git
synced 2026-08-24 14:03:35 +03:00
configure: Prevent link errors with --librtmp.
If --librtmp was specified but pkg-config could not find the librtmp file, we would have undefined symbols when linking curl. We prevent this error by disabling this case as suggested on the mailing list.
This commit is contained in:
parent
4d6c0bdf74
commit
5046dd02b9
1 changed files with 4 additions and 0 deletions
|
|
@ -2066,6 +2066,10 @@ if test X"$OPT_LIBRTMP" != Xno; then
|
|||
CPP_RTMP=`$PKGCONFIG --cflags-only-I librtmp`
|
||||
version=`$PKGCONFIG --modversion librtmp`
|
||||
DIR_RTMP=`echo $LD_RTMP | $SED -e 's/-L//'`
|
||||
else
|
||||
dnl To avoid link errors, we do not allow --librtmp without
|
||||
dnl a pkgconfig file
|
||||
AC_MSG_ERROR([--librtmp was specified but could not find librtmp pkgconfig file.])
|
||||
fi
|
||||
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue