summaryrefslogtreecommitdiff
path: root/Build/source/texk/ttfdump/configure.in
blob: 7b5ab86ac915851d15e093e7dcceff19803e7aee (plain)
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
dnl Process this file with autoconf to produce a configure script.
AC_INIT
AC_CONFIG_SRCDIR([include/ttf.h])

dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_MAKE_SET

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC

dnl Checks for typedefs, structures, and compiler characteristics.

AC_C_BIGENDIAN
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
AC_C_INLINE

dnl Checks for library functions.
AC_CHECK_FUNCS(strstr)


AC_CONFIG_HEADER(config.h)
AC_CONFIG_FILES([libttf/Makefile src/Makefile Makefile])
AC_CONFIG_COMMANDS([default],[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h],[])
AC_OUTPUT