summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAdrien Devresse <adrien.devresse@epfl.ch>2015-07-20 14:00:51 (GMT)
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-07-23 21:31:22 (GMT)
commit35ecfa7b62c1737e7d1edfc5c9ead2ddf692bd08 (patch)
treeeb446c6ebbc84c7e2e7aa7cfbf0f1c68d556e969 /configure.ac
parent3b9e7913a6d14cb09ed91ce8a1110955bda200ef (diff)
downloadpatchelf-35ecfa7b62c1737e7d1edfc5c9ead2ddf692bd08.zip
patchelf-35ecfa7b62c1737e7d1edfc5c9ead2ddf692bd08.tar.gz
patchelf-35ecfa7b62c1737e7d1edfc5c9ead2ddf692bd08.tar.bz2
Configure automatically the page size with a runtime call, solve the issue #53 related to prtability on powerpc64 architecture
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 69e12de..6592493 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,5 +14,7 @@ AC_CHECK_HEADERS([sys/acl.h acl/libacl.h])
AC_SEARCH_LIBS(perm_copy_file, acl)
AC_CHECK_FUNCS([perm_copy_file])
+AC_CHECK_FUNCS([sysconf])
+
AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile patchelf.spec])
AC_OUTPUT