mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
12 lines
240 B
Plaintext
12 lines
240 B
Plaintext
dnl
|
|
dnl Check for libgnurx on mingw
|
|
dnl
|
|
if test "x$ac_cv_mingw32" = "xyes"; then
|
|
AC_CHECK_LIB(gnurx, regexec, [ gnurx_found=yes ], [ gnurx_found=no ])
|
|
fi
|
|
|
|
if test "x$gnurx_found" = xyes ; then
|
|
GNURX_LIBS=-lgnurx
|
|
fi
|
|
AC_SUBST(GNURX_LIBS)
|