blob: db732af19e6640e604086e14ca25f6ea015085cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
dnl Process this file with autoconf to produce a configure header
AC_INIT(config.h.in)
dnl Check for and header files
AC_CHECK_HEADERS(sys/endian.h sys/param.h stdint.h inttypes.h)
dnl Check size of pointer for cache size
AC_CHECK_SIZEOF(uintptr_t)
AC_CONFIG_HEADER([config.h])
AC_OUTPUT(config.h)
|