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