Added SILC Thread Queue API
[silc.git] / util / robodoc / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT(Source/robodoc.h)
4
5 AM_CONFIG_HEADER(Source/config.h)
6
7 AM_INIT_AUTOMAKE(robodoc, 3.2.3)
8
9 AC_PROG_MAKE_SET
10
11 dnl Checks for programs.
12 AC_PROG_CC
13
14 dnl Checks for libraries.
15
16 dnl Checks for header files.
17 AC_HEADER_STDC
18
19 dnl Checks for typedefs, structures, and compiler characteristics.
20 AC_C_CONST
21 AC_TYPE_SIZE_T
22
23 dnl Checks for library functions.
24 AC_FUNC_STRFTIME
25 AC_FUNC_VPRINTF
26 AC_CHECK_FUNCS(strstr)
27
28 AC_OUTPUT(makefile Docs/makefile Source/makefile)
29