diff options
| author | John Ogness <john.ogness@linutronix.de> | 2018-02-20 15:20:47 +0100 |
|---|---|---|
| committer | John Ogness <john.ogness@linutronix.de> | 2018-02-20 15:20:47 +0100 |
| commit | ffce744d7d8a0f7a6846164bfc16fc0753683127 (patch) | |
| tree | c8fd231f4dc43cf52de4d830356090bfd5032e23 /schulung_tools/ipc_dbus/configure.ac | |
| parent | 021b32acd3cec8e255dd47681939797ec64b8206 (diff) | |
tools: add ipc dbus example
Diffstat (limited to 'schulung_tools/ipc_dbus/configure.ac')
| -rw-r--r-- | schulung_tools/ipc_dbus/configure.ac | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/schulung_tools/ipc_dbus/configure.ac b/schulung_tools/ipc_dbus/configure.ac new file mode 100644 index 0000000..bf99b42 --- /dev/null +++ b/schulung_tools/ipc_dbus/configure.ac @@ -0,0 +1,24 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ([2.69]) +AC_INIT([dbus-example], [1.0], [manut@linutronix.de]) +AC_CONFIG_SRCDIR([ping-server.c]) +AM_INIT_AUTOMAKE([dist-bzip2]) +AC_CONFIG_HEADERS([config.h]) + +# Checks for programs. +AC_PROG_CC + +# Checks for libraries. +PKG_CHECK_MODULES([DBUS], [dbus-glib-1]) +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. + +# Checks for library functions. +AC_CHECK_FUNCS([clock_gettime]) + +AC_CONFIG_FILES([Makefile]) + +AC_OUTPUT |
