Index: configure =================================================================== RCS file: /opt/htdig/cvs/htdig3/configure,v retrieving revision 1.59.2.26 diff -c -3 -p -r1.59.2.26 configure *** configure 2000/08/30 04:40:51 1.59.2.26 --- configure 2000/09/01 04:53:00 *************** echo "configure:4183: checking if --enab *** 4183,4196 **** # Check whether --enable-bigfile or --disable-bigfile was given. if test "${enable_bigfile+set}" = set; then enableval="$enable_bigfile" ! db_cv_bigfile="no" else db_cv_bigfile="yes" fi echo "$ac_t""$db_cv_bigfile" 1>&6 ! if test "$db_cv_bigfile" = no; then case "$host_os" in bsdi*|aix*|hpux*|solaris*) cat >> confdefs.h <<\EOF #define HAVE_FILE_OFFSET_BITS 1 --- 4183,4196 ---- # Check whether --enable-bigfile or --disable-bigfile was given. if test "${enable_bigfile+set}" = set; then enableval="$enable_bigfile" ! db_cv_bigfile="$enable_bigfile" else db_cv_bigfile="yes" fi echo "$ac_t""$db_cv_bigfile" 1>&6 ! if test "$db_cv_bigfile" = yes; then case "$host_os" in bsdi*|aix*|hpux*|solaris*) cat >> confdefs.h <<\EOF #define HAVE_FILE_OFFSET_BITS 1 Index: configure.in =================================================================== RCS file: /opt/htdig/cvs/htdig3/configure.in,v retrieving revision 1.60.2.22 diff -c -3 -p -r1.60.2.22 configure.in *** configure.in 2000/08/30 04:40:52 1.60.2.22 --- configure.in 2000/09/01 04:53:02 *************** AC_SUBST(LTLIBOBJS) *** 164,176 **** AC_MSG_CHECKING(if --enable-bigfile option specified) AC_ARG_ENABLE(bigfile, [ --enable-bigfile Enable Linux, AIX, HP/UX, Solaris big files.], ! [db_cv_bigfile="no"], [db_cv_bigfile="yes"]) AC_MSG_RESULT($db_cv_bigfile) dnl Vendors are doing 64-bit lseek in different ways. dnl Linux, AIX, HP/UX and Solaris all use _FILE_OFFSET_BITS to specify a "big-file" dnl environment. ! if test "$db_cv_bigfile" = no; then case "$host_os" in bsdi*|aix*|hpux*|solaris*) AC_DEFINE(HAVE_FILE_OFFSET_BITS);; linux*) AC_DEFINE(HAVE_FILE_OFFSET_BITS) --- 164,176 ---- AC_MSG_CHECKING(if --enable-bigfile option specified) AC_ARG_ENABLE(bigfile, [ --enable-bigfile Enable Linux, AIX, HP/UX, Solaris big files.], ! [db_cv_bigfile="$enable_bigfile"], [db_cv_bigfile="yes"]) AC_MSG_RESULT($db_cv_bigfile) dnl Vendors are doing 64-bit lseek in different ways. dnl Linux, AIX, HP/UX and Solaris all use _FILE_OFFSET_BITS to specify a "big-file" dnl environment. ! if test "$db_cv_bigfile" = yes; then case "$host_os" in bsdi*|aix*|hpux*|solaris*) AC_DEFINE(HAVE_FILE_OFFSET_BITS);; linux*) AC_DEFINE(HAVE_FILE_OFFSET_BITS) Index: db/acinclude.m4 =================================================================== RCS file: /opt/htdig/cvs/htdig3/db/Attic/acinclude.m4,v retrieving revision 1.1.2.2 diff -c -3 -p -r1.1.2.2 acinclude.m4 *** db/acinclude.m4 2000/05/12 14:19:49 1.1.2.2 --- db/acinclude.m4 2000/09/01 04:53:14 *************** AC_DEFUN(AM_OPTIONS_SET, [ *** 360,366 **** AC_MSG_CHECKING(if --enable-bigfile option specified) AC_ARG_ENABLE(bigfile, [ --enable-bigfile Enable Linux, AIX, HP/UX, Solaris big files.], ! [db_cv_bigfile="no"], [db_cv_bigfile="yes"]) AC_MSG_RESULT($db_cv_bigfile) AC_MSG_CHECKING(if --enable-debug option specified) --- 360,366 ---- AC_MSG_CHECKING(if --enable-bigfile option specified) AC_ARG_ENABLE(bigfile, [ --enable-bigfile Enable Linux, AIX, HP/UX, Solaris big files.], ! [db_cv_bigfile="$enable_bigfile"], [db_cv_bigfile="yes"]) AC_MSG_RESULT($db_cv_bigfile) AC_MSG_CHECKING(if --enable-debug option specified) Index: db/aclocal.m4 =================================================================== RCS file: /opt/htdig/cvs/htdig3/db/Attic/aclocal.m4,v retrieving revision 1.1.2.3 diff -c -3 -p -r1.1.2.3 aclocal.m4 *** db/aclocal.m4 2000/05/12 14:19:49 1.1.2.3 --- db/aclocal.m4 2000/09/01 04:53:18 *************** AC_DEFUN(AM_OPTIONS_SET, [ *** 372,378 **** AC_MSG_CHECKING(if --enable-bigfile option specified) AC_ARG_ENABLE(bigfile, [ --enable-bigfile Enable Linux, AIX, HP/UX, Solaris big files.], ! [db_cv_bigfile="no"], [db_cv_bigfile="yes"]) AC_MSG_RESULT($db_cv_bigfile) AC_MSG_CHECKING(if --enable-debug option specified) --- 372,378 ---- AC_MSG_CHECKING(if --enable-bigfile option specified) AC_ARG_ENABLE(bigfile, [ --enable-bigfile Enable Linux, AIX, HP/UX, Solaris big files.], ! [db_cv_bigfile="$enable_bigfile"], [db_cv_bigfile="yes"]) AC_MSG_RESULT($db_cv_bigfile) AC_MSG_CHECKING(if --enable-debug option specified) Index: db/configure.in =================================================================== RCS file: /opt/htdig/cvs/htdig3/db/Attic/configure.in,v retrieving revision 1.1.2.1 diff -c -3 -p -r1.1.2.1 configure.in *** db/configure.in 2000/05/05 17:09:33 1.1.2.1 --- db/configure.in 2000/09/01 04:53:20 *************** fi *** 172,178 **** dnl Vendors are doing 64-bit lseek in different ways. dnl Linux, AIX, HP/UX and Solaris all use _FILE_OFFSET_BITS to specify a "big-file" dnl environment. ! if test "$db_cv_bigfile" = no; then case "$host_os" in bsdi*|aix*|hpux*|solaris*) AC_DEFINE(HAVE_FILE_OFFSET_BITS);; linux*) AC_DEFINE(HAVE_FILE_OFFSET_BITS) --- 172,178 ---- dnl Vendors are doing 64-bit lseek in different ways. dnl Linux, AIX, HP/UX and Solaris all use _FILE_OFFSET_BITS to specify a "big-file" dnl environment. ! if test "$db_cv_bigfile" = yes; then case "$host_os" in bsdi*|aix*|hpux*|solaris*) AC_DEFINE(HAVE_FILE_OFFSET_BITS);; linux*) AC_DEFINE(HAVE_FILE_OFFSET_BITS)