diff options
| author | Brad Smith <brad@comstyle.com> | 2012-02-10 15:59:38 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-17 09:58:21 -0600 |
| commit | 4dcc3f5876fa638d5c35bd47be3b717ea74cc2e7 (patch) | |
| tree | fe5f7eed955f701c408507405c5c7da812474b39 | |
| parent | ad4cf3f6b72b736ab3a41a8f4ed7c0bd4c32352f (diff) | |
| download | focaccia-qemu-4dcc3f5876fa638d5c35bd47be3b717ea74cc2e7.tar.gz focaccia-qemu-4dcc3f5876fa638d5c35bd47be3b717ea74cc2e7.zip | |
configure: Remove OpenBSD workaround for curses probe
Remove the OpenBSD workaround for the curses probe. This has not been necessary for 5 releases now. Signed-off-by: Brad Smith <brad@comstyle.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
| -rwxr-xr-x | configure | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure b/configure index 9e0fdfb967..037f7f7b3b 100755 --- a/configure +++ b/configure @@ -1900,9 +1900,6 @@ if test "$curses" != "no" ; then curses_found=no cat > $TMPC << EOF #include <curses.h> -#ifdef __OpenBSD__ -#define resize_term resizeterm -#endif int main(void) { const char *s = curses_version(); resize_term(0, 0); |