jettero / mrsh

Mr Shell executes commands concurrently on multiple hosts

This URL has Read+Write access

mrsh / configure.in
100644 38 lines (25 sloc) 0.651 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
dnl Process this file with autoconf to produce a configure script.
AC_INIT(file.h)
 
# $Id: configure.in,v 1.5 2001/12/20 16:25:41 jettero Exp $
 
if test -z $CCC; then
    CCC=g++
fi
 
dnl Checks for programs.
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_MAKE_SET
 
dnl Checks for libraries.
 
dnl Checks for header files.
AC_CHECK_HEADERS(sys/ioctl.h)
 
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
 
AC_SUBST(CCC)
 
if test "$with_regex" = "no"; then
    CFLAGS="$CFLAGS -DNOREGEXP"
fi
 
if test "$with_regexp" = "no"; then
    CFLAGS="$CFLAGS -DNOREGEXP"
fi
 
AC_SUBST(CFLAGS)
 
dnl Checks for library functions.
 
AC_OUTPUT(Makefile)