]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/heimdal/cf/largefile.m4
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / heimdal / cf / largefile.m4
1 dnl $Id: largefile.m4 13768 2004-04-24 21:51:32Z joda $
2 dnl
3 dnl Figure out what flags we need for 64-bit file access, and also set
4 dnl them on the command line.
5 dnl
6 AC_DEFUN([rk_SYS_LARGEFILE],[
7 AC_REQUIRE([AC_SYS_LARGEFILE])dnl
8 dnl need to set this on the command line, since it might otherwise break
9 dnl with generated code, such as lex
10 if test "$enable_largefile" != no -a "$ac_cv_sys_large_files" != no; then
11         CPPFLAGS="$CPPFLAGS -D_LARGE_FILES=$ac_cv_sys_large_files"
12 fi
13 if test "$enable_largefile" != no -a "$ac_cv_sys_file_offset_bits" != no; then
14         CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
15 fi
16 ])