From: Sam Hocevar Date: Thu, 13 Feb 2003 17:31:11 +0000 (+0000) Subject: * ./configure.ac.in: we should look for -lxvidcore, not -lxvid. X-Git-Tag: 0.5.1~37 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b33829d8eb20c4de70729ec9a36970829cb8d900;p=vlc * ./configure.ac.in: we should look for -lxvidcore, not -lxvid. --- diff --git a/configure.ac.in b/configure.ac.in index 3fc9ae2ed4..a00b5951c3 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -1625,9 +1625,9 @@ then LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xvid}" AC_CHECK_HEADERS(xvid.h, , [ AC_MSG_ERROR([Cannot find development headers for libxvidcore...]) ]) - AC_CHECK_LIB(xvid, xvid_init, [ + AC_CHECK_LIB(xvidcore, xvid_init, [ PLUGINS="${PLUGINS} xvid" - LDFLAGS_xvid="${LDFLAGS_xvid} -lxvid" ], + LDFLAGS_xvid="${LDFLAGS_xvid} -lxvidcore" ], [ AC_MSG_ERROR([Cannot find libxvidcore library...]) ]) LDFLAGS="${LDFLAGS_save}" CPPFLAGS="${CPPFLAGS_save}"