mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-25 20:32:33 +00:00
50b994599b
Works only with programs using the cli_parser_c class. This is only mkvpropedit so far, but the others will follow. Oh, and this only works if ioctl & TIOCGWINSZ are available.
15 lines
400 B
Plaintext
15 lines
400 B
Plaintext
AC_CACHE_CHECK([for ioctl & TIOCGWINSZ], [ac_cv_tiocgwinsz],[
|
|
ac_cv_tiocgwinsz="no"
|
|
AC_LANG_PUSH(C++)
|
|
AC_TRY_COMPILE([
|
|
#include <sys/ioctl.h>
|
|
],[
|
|
struct winsize ws;
|
|
ioctl(0, TIOCGWINSZ, &ws);
|
|
],[ac_cv_tiocgwinsz="yes"])
|
|
AC_LANG_POP
|
|
])
|
|
if test x"$ac_cv_posix_fadvise" = "xyes" ; then
|
|
AC_DEFINE([HAVE_TIOCGWINSZ], 1, [define if ioctl & TIOCGWINSZ are available])
|
|
fi
|