]> andersk Git - libfaim.git/blame - configure.in
Fix header installation.
[libfaim.git] / configure.in
CommitLineData
dd60ff8b 1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(src/login.c)
3AM_INIT_AUTOMAKE(libfaim, 0.99.1)
4
5AM_CONFIG_HEADER(include/libfaim_config.h)
6
7dnl Checks for programs.
8AC_PROG_CC
9AC_PROG_CXX
10AC_PROG_INSTALL
11AC_PROG_LN_S
12AC_PROG_MAKE_SET
13AC_PROG_RANLIB
14AM_PROG_LIBTOOL
15
16dnl Checks for libraries.
17dnl Replace `main' with a function in -lfaim:
18AC_CHECK_LIB(faim, aim_sessioninit)
19dnl Replace `main' with a function in -lpcap:
20dnl AC_CHECK_LIB(pcap, main)
21
22dnl Checks for header files.
23AC_HEADER_STDC
24AC_HEADER_SYS_WAIT
25AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h)
26
27dnl Checks for typedefs, structures, and compiler characteristics.
28AC_C_CONST
29AC_C_INLINE
30AC_TYPE_PID_T
31AC_TYPE_SIZE_T
32AC_HEADER_TIME
33AC_STRUCT_TM
34
35dnl Checks for library functions.
36AC_FUNC_MEMCMP
37AC_TYPE_SIGNAL
38AC_FUNC_STRFTIME
39AC_FUNC_VPRINTF
40AC_CHECK_FUNCS(gethostname gettimeofday select socket strdup strstr strtol uname)
41
42AC_OUTPUT([
43 Makefile
44 include/Makefile
45 src/Makefile
46 utils/Makefile
47 utils/faimtest/Makefile
48])
49
This page took 0.853729 seconds and 5 git commands to generate.