~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/ac-macros/large_file.m4

  • Committer: Monty Taylor
  • Date: 2008-07-02 15:15:08 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: monty@inaugust.com-20080702151508-6uoftlu175nvindy
Made everything use AS_HELP_STRING (except for charsets, which are dying anyway)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
dnl By default, many hosts won't let programs access large files;
 
2
dnl By default, many hosts wont let programs access large files;
3
3
dnl one must use special compiler options to get large-file access to work.
4
4
dnl For more details about this brain damage please see:
5
5
dnl http://www.sas.com/standards/large.file/x_open.20Mar96.html
80
80
 
81
81
AC_DEFUN([MYSQL_SYS_LARGEFILE],
82
82
  [AC_REQUIRE([AC_CANONICAL_HOST])
83
 
  AC_ARG_ENABLE(largefile,
84
 
     [  --disable-largefile     Omit support for large files])
 
83
      AC_ARG_ENABLE([largefile],
 
84
          [AS_HELP_STRING([--disable-largefile],
 
85
                  [Omit support for large files])])
85
86
   if test "$enable_largefile" != no; then
86
87
     AC_CHECK_TOOL(GETCONF, getconf)
87
88
     AC_SYS_LARGEFILE_FLAGS(CFLAGS)