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
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT([elfix], [0.1], [blueness@gentoo.org])
AC_CONFIG_SRCDIR([src/fix-gnustack.c])
#AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.11 foreign])
# Checks for programs.
AC_PROG_CC
AC_ARG_ENABLE(
[tests],
AS_HELP_STRING(
[--enable-tests],
[enable tests]
),
[
AS_IF(
[test "x$enable_tests" = "xyes"],
[
AC_CHECK_PROG([has_yasm],[yasm],["yes"],["no"])
AS_IF([test "x$has_yasm" = "xno"],AC_MSG_ERROR(["Missing yasm assembler"]))
]
)
]
)
AM_CONDITIONAL([TEST],[test "x$has_yasm" = "xyes"])
# Checks for libraries.
AC_CHECK_LIB([elf], [elf_begin])
# Checks for header files.
AC_CHECK_HEADERS([fcntl.h stdlib.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_CONFIG_FILES([Makefile
src/Makefile
doc/Makefile
tests/Makefile])
AC_OUTPUT
|