blob: 8670881f690da7ee99362108bfb5fbf51a61ee95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(rrdui, 0.2.1, nielsen@memberwebs.com)
AM_INIT_AUTOMAKE(rrdui, 0.2.1)
AC_CONFIG_SRCDIR([html/index.html])
AM_CONFIG_HEADER([config.h])
dnl Check for programs.
AC_PROG_INSTALL
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_MSG_RESULT()
AC_CONFIG_FILES([Makefile tools/Makefile])
AC_OUTPUT
|