|
99
|
1 # -*- Autoconf -*-
|
|
|
2 # Process this file with autoconf to produce a configure script.
|
|
|
3
|
|
|
4 AC_PREREQ(2.56)
|
|
|
5 AC_INIT([ARogue],[5.8.2], [yendor@rogueforge.net])
|
|
|
6 AC_CONFIG_HEADERS([config.h])
|
|
|
7 # May not be needed for the documentation
|
|
|
8 AC_CONFIG_FILES([Makefile])
|
|
|
9
|
|
|
10 # Checks for programs.
|
|
|
11 AC_PROG_CC
|
|
|
12 # Checks for libraries.
|
|
|
13 MP_WITH_CURSES
|
|
|
14 # Checks for header files.
|
|
|
15 AC_HEADER_STDC
|
|
122
|
16 AC_CHECK_HEADERS([pwd.h errno.h fcntl.h limits.h nlist.h stdlib.h string.h sys/ioctl.h sys/utsname.h termios.h unistd.h utmp.h term.h ncurses/term.h process.h])
|
|
99
|
17
|
John "Elwin" Edwards
parents:
|