Added the float type.
[portablexdr.git] / configure.ac
1 AC_INIT(portablexdr, 4.9.2)
2 AM_INIT_AUTOMAKE
3
4 AC_CONFIG_HEADERS([config.h])
5
6 AC_CONFIG_MACRO_DIR([m4])
7
8 AC_CANONICAL_HOST
9 AC_PROG_CC
10 AM_PROG_CC_C_O
11
12 AC_PROG_INSTALL
13 AC_PROG_LIBTOOL
14
15 AC_PROG_LEX
16 AC_PROG_YACC
17
18 AC_CHECK_PROGS(AR, ar)
19
20 dnl Look for an external 'cpp' program which can run on a file with any
21 dnl extension.  The normal CPP can only run on files with a '.c'
22 dnl extension, therefore we prefer to use /usr/bin/cpp if it exists.
23 AC_PATH_PROG([EXTCPP], [cpp], [no])
24 if test "x$EXTCPP" = "xno"; then
25   AC_MSG_FAILURE([Cannot find a working 'cpp' (C preprocessor) program])
26 fi
27 AC_DEFINE_UNQUOTED([EXTCPP], ["$EXTCPP"],
28         [The C preprocessor command (may include command line options).])
29
30 MINGW_EXTRA_LDFLAGS=
31 case "$host" in
32  *-*-mingw*)
33    MINGW_EXTRA_LDFLAGS="-no-undefined"
34    ;;
35 esac
36 AC_SUBST(MINGW_EXTRA_LDFLAGS)
37
38 AC_CHECK_HEADERS([arpa/inet.h sys/param.h])
39 AC_CHECK_FUNCS([ntohl htonl ntohs htons])
40
41 AC_OUTPUT(Makefile)
42