From 4aaa3094a3638c9d9429c1bc3fa567507405d50c Mon Sep 17 00:00:00 2001 From: Jamie Wilkinson Date: Tue, 9 Apr 2002 02:01:36 +0000 Subject: [PATCH] * src/rw*svgalib.c compile fine without src/vt.h, so commented it out in them, and removed from configure test --- bootstrap | 8 ++------ configure.in | 4 ++-- src/rw_in_svgalib.c | 2 ++ src/rw_svgalib.c | 2 ++ 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bootstrap b/bootstrap index 8a11fbf..f2c8139 100755 --- a/bootstrap +++ b/bootstrap @@ -1,13 +1,9 @@ #!/bin/sh -# $Id$ - # bootstrap the build when checking out from CVS # dodgy hack to use gmake if we're on bsd systems -if [ -x /usr/bin/gmake ]; then - MAKE=/usr/bin/gmake -elif [ -x /usr/local/bin/gmake ]; then +if [ -x /usr/local/bin/gmake ]; then MAKE=/usr/local/bin/gmake else MAKE=make @@ -19,7 +15,7 @@ if [ "$1" = "clean" ]; then if [ -f Makefile ]; then $MAKE distclean fi - find . -name Makefile.in -print0 | xargs -0 rm -f + find . -name Makefile.in -print | xargs rm -f rm -f config.h.in aclocal.m4 install-sh missing mkinstalldirs \ stamp-h.in tags configure config.log diff --git a/configure.in b/configure.in index 98dabec..7267aa4 100644 --- a/configure.in +++ b/configure.in @@ -48,8 +48,8 @@ AC_PROG_RANLIB AC_PATH_X AC_HEADER_DIRENT AC_HEADER_STDC -AC_HEADER_SYS_WAIT -AC_CHECK_HEADERS([sys/vt.h]) +dnl AC_HEADER_SYS_WAIT +dnl AC_CHECK_HEADERS([ your header here ]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST diff --git a/src/rw_in_svgalib.c b/src/rw_in_svgalib.c index c22ef21..3cf7b33 100644 --- a/src/rw_in_svgalib.c +++ b/src/rw_in_svgalib.c @@ -32,9 +32,11 @@ #include #include +/* seems to work fine without #ifdef HAVE_SYS_VT_H # include #endif +*/ #include "vga.h" #include "vgakeyboard.h" diff --git a/src/rw_svgalib.c b/src/rw_svgalib.c index fe67b2f..6c27004 100644 --- a/src/rw_svgalib.c +++ b/src/rw_svgalib.c @@ -47,9 +47,11 @@ #include #include +/* seems to work fine without #ifdef HAVE_SYS_VT_H # include #endif +*/ #include "vga.h" #include "vgakeyboard.h"