1 |
# -*- Autoconf -*- |
2 |
# Process this file with autoconf to produce a configure script. |
3 |
|
4 |
#AC_PREREQ([2.63]) |
5 |
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) |
6 |
AM_INIT_AUTOMAKE |
7 |
AC_CONFIG_SRCDIR([BPMDetect.h]) |
8 |
|
9 |
# Checks for programs. |
10 |
AC_PROG_CXX |
11 |
AC_PROG_CC |
12 |
AC_PROG_RANLIB |
13 |
|
14 |
CFLAGS= |
15 |
CPPFLAGS= |
16 |
CXXFLAGS= |
17 |
CCASFLAGS= |
18 |
|
19 |
CFLAGS+=" -m32 " |
20 |
CPPFLAGS+=" -m32 " |
21 |
CXXFLAGS+=" -m32 " |
22 |
CCASFLAGS+=" -m32 " |
23 |
|
24 |
# Checks for header files. |
25 |
AC_CHECK_HEADERS([limits.h memory.h stdlib.h string.h]) |
26 |
|
27 |
# Checks for typedefs, structures, and compiler characteristics. |
28 |
AC_C_INLINE |
29 |
AC_C_RESTRICT |
30 |
AC_TYPE_SIZE_T |
31 |
AC_HEADER_STDBOOL |
32 |
|
33 |
# Checks for library functions. |
34 |
AC_CHECK_FUNCS([memmove memset]) |
35 |
|
36 |
AC_CONFIG_FILES([Makefile]) |
37 |
AC_OUTPUT |