qca-swiss-army-knife/tools/edump/configure.ac
Sujith Manoharan b2faf3e50d qca-swiss-army-knife: Add a tool to dump EEPROM
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
2012-07-23 11:03:12 -07:00

25 lines
582 B
Text

AC_INIT([edump], [1.0], [ath9k-devel@qualcomm.com])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_SRCDIR([src/edump.c])
AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_INSTALL
# Checks for header files.
AC_HEADER_STDC
# Checks for libraries.
PKG_CHECK_MODULES([pciaccess],
[pciaccess >= 0.10.3],
[],
[AC_MSG_ERROR(libpciaccess-0.10.3 is required)])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_CONFIG_FILES([Makefile
src/Makefile])
AC_OUTPUT