2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

add --enable-largefile support

This commit is contained in:
Bob Halley 2002-03-08 00:24:00 +00:00
parent 69a0d48478
commit 03f4c76f95

View File

@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.320 $)
AC_REVISION($Revision: 1.321 $)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.13)
@ -742,6 +742,19 @@ fi
# End of pthreads stuff.
#
#
# Large File
#
AC_ARG_ENABLE(largefile, [ --enable-largefile 64-bit file support],
want_largefile="yes", want_largefile="no")
case $want_largefile in
yes)
ALWAYS_DEFINES="$ALWAYS_DEFINES -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
;;
*)
;;
esac
#
# Additional compiler settings.
#