forked from Hill-98/k3screenctrl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
30 lines (23 loc) · 823 Bytes
/
configure.ac
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT(k3screenctrl, 0.10, [email protected])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/signals.c])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([arpa/inet.h fcntl.h stdint.h stdlib.h string.h sys/ioctl.h syslog.h termios.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_TYPE_UINT16_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_MMAP
AC_CHECK_FUNCS([alarm atexit bzero memchr memmove munmap strchr strdup strerror strndup])
AC_CONFIG_FILES([Makefile src/Makefile lib/Makefile])
AC_OUTPUT