summaryrefslogtreecommitdiff
path: root/configure.in
blob: be3bba3c01401cf942d501e7bea8a73b20984a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
AC_INIT([src/venus_gps.c])
AM_INIT_AUTOMAKE([venus-gps], [0.0.3])
AM_CONFIG_HEADER([config.h])

AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET

AC_HEADER_STDC

AC_CHECK_HEADERS([unistd.h getopt.h errno.h time.h termios.h sys/types.h \
sys/stat.h fcntl.h stdarg.h asm/byteorder.h netdb.h stdint.h signal.h], [],AC_MSG_ERROR([
required header missing]))

AC_DEFINE([DEBUG], 0, [set to 1 to enable debug])
AC_DEFINE([CONFIG_USE_SYSLOG], 0, [set to 1 to use syslog for logging])

AC_OUTPUT([Makefile src/Makefile])