-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.ac
More file actions
35 lines (26 loc) · 798 Bytes
/
configure.ac
File metadata and controls
35 lines (26 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([elogger], [0.2.0], [dev@famic.de])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/measurement.cpp])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_INSTALL
AC_CHECK_PROG([diff_var],[diff],[diff])
AC_CHECK_PROG([wdiff_var],[wdiff],[wdiff -3],[diff])
diff_var=${wdiff_var}
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
# Checks for library functions.
AC_FUNC_MKTIME
AC_CHECK_FUNCS([memset])
AC_SUBST([SHELL], [/bin/bash])
AC_SUBST([TZ], [CET])
AC_CONFIG_FILES([Makefile
src/Makefile])
AC_OUTPUT