-
Notifications
You must be signed in to change notification settings - Fork 10
/
configure.ac
49 lines (42 loc) · 1.31 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT(tapir, 0.0.1, [email protected])
AC_CONFIG_SRCDIR([src/main.c])
AM_INIT_AUTOMAKE([foreign std-options])
AM_CONFIG_HEADER(src/config.h)
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
# Checks for libraries.
PKG_CHECK_MODULES(SDL, [sdl2 SDL2_image SDL2_mixer SDL2_ttf])
PKG_CHECK_MODULES(GL, [gl])
PKG_CHECK_MODULES(FONTCONFIG, [fontconfig])
PKG_CHECK_MODULES(LIBCONFIG, [libconfig])
# Checks for header files.
AC_CHECK_HEADERS([limits.h stdint.h stdlib.h string.h strings.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_PROG_CC_C99
AC_CHECK_HEADER_STDBOOL
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([atexit realpath strchr strdup strerror strrchr strstr])
AC_CONFIG_FILES([Makefile
accordion/Makefile
launcher/Makefile
violin/Makefile
xylophone/Makefile
doc/man/tapir-a.1
doc/man/tapir-v.1
doc/man/tapir-x.1
doc/man/tapir.1])
AC_OUTPUT