forked from NixOS/patchelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
27 lines (22 loc) · 810 Bytes
/
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
AC_PREREQ([2.62])
AC_INIT([patchelf], m4_esyscmd([printf $(cat ./version)]))
AC_CONFIG_SRCDIR([src/patchelf.cc])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror dist-bzip2 foreign color-tests parallel-tests])
AM_PROG_CC_C_O
AC_PROG_CXX
DEFAULT_PAGESIZE=auto
AC_ARG_WITH([page-size],
AS_HELP_STRING([--with-page-size=SIZE], [Specify default pagesize (default auto)]),
DEFAULT_PAGESIZE=$withval
)
if test "$DEFAULT_PAGESIZE" != auto; then
AC_DEFINE_UNQUOTED(DEFAULT_PAGESIZE, ${DEFAULT_PAGESIZE})
AC_MSG_RESULT([Setting page size to ${DEFAULT_PAGESIZE}])
fi
AC_ARG_WITH([asan],
AS_HELP_STRING([--with-asan], [Link with libasan])
)
AM_CONDITIONAL([WITH_ASAN], [test x"$with_asan" = xyes])
AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile patchelf.spec])
AC_OUTPUT