Switched from dynamic library loading to standard dynamic library for lwipv6
[vde.git] / vdetelweb / configure.ac
blobddffb0bfe4bf38732770fc16bfb4ca1e334d8c1d
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ(2.60a)
5 AC_INIT([vdetelweb], [1.0], [info@v2.cs.unibo.it])
6 AM_INIT_AUTOMAKE([foreign])
7 AC_CONFIG_SRCDIR([vdetelweb.c])
8 AC_CONFIG_HEADER([config.h])
10 # Checks for programs.
11 AC_PROG_CC
12 AC_PROG_INSTALL
14 # Checks for libraries.
15 AC_CHECK_LIB([dl], [dlopen])
17 # Checks for header files.
18 AC_HEADER_STDC
19 AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h string.h sys/ioctl.h sys/socket.h syslog.h])
21 # Checks for typedefs, structures, and compiler characteristics.
22 AC_C_CONST
24 # Checks for library functions.
25 AC_FUNC_MALLOC
26 AC_TYPE_SIGNAL
27 AC_FUNC_VPRINTF
28 AC_CHECK_FUNCS([atexit bzero getcwd memset socket strdup strerror strndup strstr uname])
30 AC_CONFIG_FILES([Makefile])
31 AC_OUTPUT