ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
411 B

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(bwb_cmd.c)
  3. AC_PROG_CC
  4. AC_PROG_CPP
  5. AC_PROG_INSTALL
  6. AC_SIZE_T
  7. AC_HEADER_CHECK(string.h, AC_DEFINE(HAVE_STRING))
  8. AC_HEADER_CHECK(stdlib.h, AC_DEFINE(HAVE_STDLIB))
  9. AC_HEADER_CHECK(unistd.h, AC_DEFINE(HAVE_UNISTD))
  10. AC_COMPILE_CHECK(raise, [#include <sys/types.h>
  11. #include <signal.h>], [raise(1);], AC_DEFINE(HAVE_RAISE))
  12. AC_OUTPUT(Makefile)