blob: b2f823e110a2d89db7ce45dcc316e511d3fbbdec [file] [log] [blame]
Richard Marian Thomaiyar216f2132018-06-12 19:20:48 +05301# Initialization
2AC_PREREQ([2.69])
3AC_INIT([pam_ipmi], [0.1], [https://github.com/openbmc/pam-ipmi/issues])
4AC_CONFIG_HEADERS([config.h])
5AM_INIT_AUTOMAKE([subdir-objects -Wall foreign dist-xz])
6AM_SILENT_RULES([yes])
7
8AC_SUBST(PACKAGE)
9AC_SUBST(VERSION)
10
11# Checks for programs
12AC_PROG_CC
13AC_PROG_INSTALL
14AC_PROG_MAKE_SET
15
16# Checks for library functions.
17LT_INIT # Removes 'unrecognized options: --with-libtool-sysroot
18
19# Create configured output
20AC_CONFIG_FILES([Makefile])
21AC_OUTPUT