mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-16 06:54:37 +00:00
Enable large file support
Mattias Klose reported that building libabigail in the Debian build system raised an error because the libabigail binaries were built without the Large File Support (LFS), as described by https://lintian.debian.org/tags/binary-file-built-without-LFS-support.html. This just calls the configure macro AC_SYS_LARGEFILE for that. * configure.ac: Call the AC_SYS_LARGEFILE autoconf macro. * config.h.in: Update. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
5b07d709ab
commit
944025e006
11
config.h.in
11
config.h.in
@ -101,6 +101,17 @@
|
||||
/* compile the zip archive support */
|
||||
#undef WITH_ZIP_ARCHIVE
|
||||
|
||||
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||
# define _DARWIN_USE_64_BIT_INODE 1
|
||||
#endif
|
||||
|
||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
#undef _FILE_OFFSET_BITS
|
||||
|
||||
/* Define for large files, on AIX-style hosts. */
|
||||
#undef _LARGE_FILES
|
||||
|
||||
/* Define to 1 if on MINIX. */
|
||||
#undef _MINIX
|
||||
|
||||
|
@ -225,6 +225,9 @@ if test x$HAS_EM_TILEGX = xyes; then
|
||||
[Defined to 1 if elf.h has EM_TILEGX macro defined])
|
||||
fi
|
||||
|
||||
dnl Set large files support
|
||||
AC_SYS_LARGEFILE
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
libabigail.pc
|
||||
include/Makefile
|
||||
|
Loading…
Reference in New Issue
Block a user