From 3c3a403e0e2c601f8610eff59ebc761fe3e4bab8 Mon Sep 17 00:00:00 2001 From: John Klug Date: Mon, 9 Apr 2018 18:21:43 -0500 Subject: Add autotools configure script. --- util/configure.in | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 util/configure.in (limited to 'util') diff --git a/util/configure.in b/util/configure.in new file mode 100644 index 0000000..32a4e7f --- /dev/null +++ b/util/configure.in @@ -0,0 +1,20 @@ +AC_INIT([mts_util_lora2_reset.c]) +AM_INIT_AUTOMAKE([mts-util-lora2-reset], [0.3.0]) +AM_CONFIG_HEADER([config.h]) + +AC_PROG_CC +AC_PROG_CXX +AC_PROG_INSTALL +AC_PROG_MAKE_SET + +AC_HEADER_STDC + +AC_CHECK_HEADERS([ \ + errno.h fcntl.h getopt.h stdint.h stdio.h stdlib.h string.h unistd.h sys/ioctl.h sys/types.h sys/ioctl.h linux/i2c.h linux/i2c-dev.h +], [],AC_MSG_ERROR([ +required header missing])) + +AC_DEFINE([DEBUG], 0, [set to 1 to enable debug]) + +AC_OUTPUT([Makefile]) + -- cgit v1.2.3