diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
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 |