source: trunk/greenstone3-extensions/vishnu/configure.in@ 8286

Last change on this file since 8286 was 8189, checked in by kjdon, 20 years ago

first version of Imperial College's Visualiser code

  • Property svn:keywords set to Author Date Id Revision
File size: 741 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(src/cluster/mysammon.c)
3
4PACKAGE=vishnu
5VERSION=1.0
6
7AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
8AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
9AC_SUBST(PACKAGE)
10AC_SUBST(VERSION)
11
12dnl Checks for programs.
13AC_PROG_CC
14AC_PROG_INSTALL
15
16dnl Checks for libraries.
17dnl Replace `main' with a function in -lm:
18AC_CHECK_LIB(m, main)
19
20dnl Checks for header files.
21AC_HEADER_DIRENT
22AC_HEADER_STDC
23AC_HEADER_SYS_WAIT
24AC_CHECK_HEADERS(fcntl.h unistd.h)
25
26dnl Checks for typedefs, structures, and compiler characteristics.
27AC_C_CONST
28AC_TYPE_SIZE_T
29
30dnl Checks for library functions.
31AC_CHECK_FUNCS(mkdir)
32
33AC_OUTPUT(src/cluster/Makefile src/vishnu/Makefile src/ckindexer/Makefile Makefile)
Note: See TracBrowser for help on using the repository browser.