ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/configure.in
Revision: 1.4
Committed: 2000-09-25T12:44:30Z (23 years, 8 months ago) by cebix
Branch: MAIN
Changes since 1.3: +5 -1 lines
Log Message:
- replaced 680x0 and 80x86 disassemblers with the ones from GNU binutils
- 680x0 disassembler shows symbolic MacOS low memory globals

File Contents

# Content
1 dnl Process this file with autoconf to produce a configure script.
2 dnl Written in 2000 by Christian Bauer
3
4 AC_INIT(src/mon.cpp)
5 AC_PREREQ(2.13)
6
7 dnl This defines PACKAGE and VERSION.
8 AM_INIT_AUTOMAKE([mon], [3.0])
9 AM_CONFIG_HEADER(config.h)
10
11 dnl Checks for programs.
12 AC_PROG_CC
13 AC_PROG_CPP
14 AC_PROG_CXX
15 AC_PROG_CXXCPP
16 AC_PROG_INSTALL
17 AC_PROG_RANLIB
18
19 dnl Checks for header files.
20 AC_HEADER_STDC
21 AC_CHECK_HEADERS(unistd.h readline.h history.h readline/readline.h readline/history.h)
22
23 dnl Checks for typedefs, structures, and compiler characteristics.
24 AC_CHECK_SIZEOF(short, 2)
25 AC_CHECK_SIZEOF(int, 4)
26 AC_CHECK_SIZEOF(long, 4)
27
28 dnl Checks for libraries.
29 AC_CHECK_LIB(readline, readline)
30 AC_CHECK_LIB(termcap, tputs)
31
32 dnl Generate Makefile.
33 AC_OUTPUT([
34 Makefile
35 src/Makefile
36 src/disass/Makefile
37 ])
38
39 dnl Print summary.
40 echo "Configuration done. Now type \"make\"."