ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/configure.in
(Generate patch)

Comparing mon/configure.in (file contents):
Revision 1.5 by cebix, 2000-09-26T12:41:51Z vs.
Revision 1.9 by gbeauche, 2002-07-17T10:00:53Z

# Line 5 | Line 5 | 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])
8 > AM_INIT_AUTOMAKE([cxmon], [3.0])
9   AM_CONFIG_HEADER(config.h)
10  
11   dnl Checks for programs.
# Line 24 | Line 24 | dnl Checks for typedefs, structures, and
24   AC_CHECK_SIZEOF(short, 2)
25   AC_CHECK_SIZEOF(int, 4)
26   AC_CHECK_SIZEOF(long, 4)
27 + AC_CHECK_SIZEOF(long long, 8)
28 + AC_CHECK_SIZEOF(void *, 4)
29  
30   dnl Checks for libraries.
31 < AC_CHECK_LIB(termcap, tputs)
31 > AC_CHECK_LIB(ncurses, tgetent, ,
32 >  AC_CHECK_LIB(termcap, tgetent, ,
33 >    AC_CHECK_LIB(termlib, tgetent, ,
34 >      AC_CHECK_LIB(terminfo, tgetent, ,
35 >        AC_CHECK_LIB(Hcurses, tgetent, ,
36 >          AC_CHECK_LIB(curses, tgetent))))))
37   AC_CHECK_LIB(readline, readline)
38  
39   dnl Generate Makefile.
40   AC_OUTPUT([
41   Makefile
42 + cxmon.spec
43   src/Makefile
44   src/disass/Makefile
45   ])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines