aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar Gediminas Jakutis <gediminas@varciai.lt> 2016-10-31 14:53:40 +0200
committerGravatar Gediminas Jakutis <gediminas@varciai.lt> 2016-10-31 14:53:40 +0200
commitce0841ecfaca463c93dd5551bc5f45cd9365a938 (patch)
tree7dc7bf6942600a96393c83d91fecd0f6cda389e5 /configure.ac
parentfbb41f2290c0eb940bbe8f77fc2afff3974fa264 (diff)
downloadlibrin-ce0841ecfaca463c93dd5551bc5f45cd9365a938.tar.gz
librin-ce0841ecfaca463c93dd5551bc5f45cd9365a938.tar.bz2
librin-ce0841ecfaca463c93dd5551bc5f45cd9365a938.zip
gpio: add initial implementation.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 8241db8..588049b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ AC_PREREQ([2.13])
m4_define(LIBRIN_VERSION, m4_normalize(m4_include(VERSION)))
AC_INIT([librin], [LIBRIN_VERSION], [gediminas@varciai.lt])
-AC_CONFIG_SRCDIR([src/float/float.c])
+AC_CONFIG_SRCDIR([src/dummy.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([m4])
@@ -31,7 +31,7 @@ AM_INIT_AUTOMAKE
LT_INIT
# Checks for header files.
-AC_CHECK_HEADERS([inttypes.h stdio.h stdint.h stdlib.h string.h])
+AC_CHECK_HEADERS([fcntl.h inttypes.h stdio.h stdint.h stdlib.h string.h sys/types.h sys/stat.h time,h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_INT32_T
@@ -46,5 +46,6 @@ AC_CONFIG_FILES([Makefile
src/Makefile
src/diagnostic/Makefile
src/float/Makefile
+ src/gpio/Makefile
test/Makefile])
AC_OUTPUT