Changeset 158 for ttyvaders/trunk/configure.ac
- Timestamp:
- Nov 12, 2003, 7:41:02 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ttyvaders/trunk/configure.ac
r156 r158 15 15 AC_PROG_RANLIB 16 16 17 dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right 18 dnl now otherwise it might be set in an obscure if statement. 19 AC_EGREP_CPP(foo,foo) 20 17 21 AC_ARG_ENABLE(slang, 18 22 [ --enable-slang slang graphics support (default enabled)]) … … 27 31 if test "${enable_conio}" = "yes"; then 28 32 AC_CHECK_HEADER(conio.h,:,AC_MSG_ERROR([cannot find conio.h header])) 33 AC_MSG_CHECKING(for ScreenUpdate in pc.h) 34 AC_EGREP_HEADER(ScreenUpdate,pc.h,[ 35 AC_MSG_RESULT(yes) 36 AC_DEFINE(SCREENUPDATE_IN_PC_H, 1, 37 Define if <pc.h> defines ScreenUpdate.)],[ 38 AC_MSG_RESULT(no)]) 29 39 AC_DEFINE(USE_CONIO, 1, Define if the backend driver is conio.h) 30 40 USE_CONIO=:
Note: See TracChangeset
for help on using the changeset viewer.