mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
dnl
|
|
dnl Check for libogg
|
|
dnl
|
|
AC_CHECK_LIB(ogg, ogg_sync_init,
|
|
[ OGG_LIBS="-logg"
|
|
ogg_found=yes ],
|
|
[ ogg_found=no ],)
|
|
if test "$ogg_found" = "no"; then
|
|
AC_MSG_ERROR([Could not find the Ogg library])
|
|
fi
|
|
AC_CHECK_HEADERS(ogg/ogg.h, , ogg_found=no)
|
|
if test "$ogg_found" = "no"; then
|
|
AC_MSG_ERROR([Could not find the Ogg header files])
|
|
fi
|
|
|
|
AC_SUBST(OGG_LIBS)
|