summaryrefslogtreecommitdiff
path: root/i/simulotron/configure.ac
blob: 448cfa5bed3d66fb0ba994c1ef500f088e4fa316 (plain)
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
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT(simulotron, 2006.0.01, APBTeam <si2e@efrei.fr>)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AC_CONFIG_SRCDIR([src/main.cc])
AC_CONFIG_HEADER([src/config.h])


CXXFLAGS=

# Checks for programs
AC_PROG_CXX

# Checks for libraries.

# Checks for header files.
AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h sys/socket.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE

# Checks for library functions.
AC_CHECK_FUNCS([gethostbyaddr gethostbyname inet_ntoa socket strerror])


AC_CONFIG_FILES([Makefile
		 doc/Makefile
                 src/Makefile])
AC_OUTPUT