X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=configure.in;h=a7b608e18678df78c6282e54962a2baf6770685b;hb=95c74f382492999827000f544fcb6844150cda81;hp=6f8e57b99a150cdd8fad9212e72af0d6284c811a;hpb=60d46c352087c38c29a690d80b62441028579f35;p=dump.git diff --git a/configure.in b/configure.in index 6f8e57b..a7b608e 100644 --- a/configure.in +++ b/configure.in @@ -129,12 +129,38 @@ AC_ARG_ENABLE([largefile], [ --enable-largefile enable Large File System support (your glibc needs to support it)], if test "$enableval" = "yes" then - AC_DEFINE(_FILE_OFFSET_BITS,64) + AC_DEFINE(USE_LFS) fi , echo "Not enabling Large File System support" ) +dnl +dnl Handle --enable-qfa +dnl +AC_ARG_ENABLE([qfa], +[ --enable-qfa enable Quick File Access support], +if test "$enableval" = "yes" +then + AC_DEFINE(USE_QFA) +fi +, +echo "Not enabling Quick File Access support" +) + +dnl +dnl Handle --enable-qfadebug +dnl +AC_ARG_ENABLE([qfadebug], +[ --enable-qfadebug include Quick File Access debugging code], +if test "$enableval" = "yes" +then + AC_DEFINE(DEBUG_QFA) +fi +, +echo "Not including Quick File Access debugging code" +) + dnl dnl set $(CC) from --with-cc=value dnl