From: Behdad Esfahbod Date: Sun, 13 May 2012 11:03:44 +0000 (+0200) Subject: Remove ioctl checks X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=50f630c17ced1bd59b4da4f27728dcfbb876400a;p=platform%2Fupstream%2FlibHarfBuzzSharp.git Remove ioctl checks Ended up not using terminal size after all. --- diff --git a/configure.ac b/configure.ac index 6c5959a..853d083 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,7 @@ dnl GTK_DOC_CHECK([1.15],[--flavour no-tmpl]) # Functions and headers AC_CHECK_FUNCS(mprotect sysconf getpagesize mmap _setmode isatty) -AC_CHECK_HEADERS(unistd.h sys/mman.h io.h sys/ioctl.h) +AC_CHECK_HEADERS(unistd.h sys/mman.h io.h) # Compiler flags AC_CANONICAL_HOST diff --git a/util/ansi-print.cc b/util/ansi-print.cc index 3e418cf..1451819 100644 --- a/util/ansi-print.cc +++ b/util/ansi-print.cc @@ -40,9 +40,6 @@ #ifdef HAVE_UNISTD_H #include /* for isatty() */ #endif -#ifdef HAVE_SYS_IOCTL_H -#include -#endif #define MIN(a,b) ((a) < (b) ? (a) : (b)) @@ -377,14 +374,6 @@ ansi_print_image_rgb24 (const uint32_t *data, unsigned int height, unsigned int stride) { - /* Get screen size */ - struct winsize w; - if (ioctl(1, TIOCGWINSZ, &w)) /* Ought to be stdout, right? */ - { - w.ws_row = 25; - w.ws_col = 80; - } - image_t image (width, height, data, stride); unsigned int rows = (height + CELL_H - 1) / CELL_H;