Index: configure.in =================================================================== RCS file: /opt/htdig/cvs/htdig3/configure.in,v retrieving revision 1.60.2.22 retrieving revision 1.60.2.23 diff -c -3 -p -r1.60.2.22 -r1.60.2.23 *** configure.in 2000/08/30 04:40:52 1.60.2.22 --- configure.in 2000/09/03 21:57:17 1.60.2.23 *************** 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: configure =================================================================== RCS file: /opt/htdig/cvs/htdig3/configure,v retrieving revision 1.59.2.26 retrieving revision 1.59.2.27 diff -c -3 -p -r1.59.2.26 -r1.59.2.27 *** configure 2000/08/30 04:40:51 1.59.2.26 --- configure 2000/09/03 21:57:16 1.59.2.27 *************** 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: db/acinclude.m4 =================================================================== RCS file: /opt/htdig/cvs/htdig3/db/Attic/acinclude.m4,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -c -3 -p -r1.1.2.2 -r1.1.2.3 *** db/acinclude.m4 2000/05/12 14:19:49 1.1.2.2 --- db/acinclude.m4 2000/09/03 21:57:17 1.1.2.3 *************** 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) *************** dnl #ifdef HAVE_LIBZ *** 619,625 **** dnl #include dnl #endif /* HAVE_LIBZ */ dnl ! dnl @version $Id: acinclude.m4,v 1.1.2.2 2000/05/12 14:19:49 loic Exp $ dnl @author Loic Dachary dnl --- 619,625 ---- dnl #include dnl #endif /* HAVE_LIBZ */ dnl ! dnl @version $Id: acinclude.m4,v 1.1.2.3 2000/09/03 21:57:17 ghutchis Exp $ dnl @author Loic Dachary dnl *************** dnl Currently supports g++ and gcc. *** 688,694 **** dnl This macro must be put after AC_PROG_CC and AC_PROG_CXX in dnl configure.in dnl ! dnl @version $Id: acinclude.m4,v 1.1.2.2 2000/05/12 14:19:49 loic Exp $ dnl @author Loic Dachary dnl --- 688,694 ---- dnl This macro must be put after AC_PROG_CC and AC_PROG_CXX in dnl configure.in dnl ! dnl @version $Id: acinclude.m4,v 1.1.2.3 2000/09/03 21:57:17 ghutchis Exp $ dnl @author Loic Dachary dnl Index: db/aclocal.m4 =================================================================== RCS file: /opt/htdig/cvs/htdig3/db/Attic/aclocal.m4,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -c -3 -p -r1.1.2.3 -r1.1.2.4 *** db/aclocal.m4 2000/05/12 14:19:49 1.1.2.3 --- db/aclocal.m4 2000/09/03 21:57:17 1.1.2.4 *************** 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) *************** dnl #ifdef HAVE_LIBZ *** 631,637 **** dnl #include dnl #endif /* HAVE_LIBZ */ dnl ! dnl @version $Id: aclocal.m4,v 1.1.2.3 2000/05/12 14:19:49 loic Exp $ dnl @author Loic Dachary dnl --- 631,637 ---- dnl #include dnl #endif /* HAVE_LIBZ */ dnl ! dnl @version $Id: aclocal.m4,v 1.1.2.4 2000/09/03 21:57:17 ghutchis Exp $ dnl @author Loic Dachary dnl *************** dnl Currently supports g++ and gcc. *** 700,706 **** dnl This macro must be put after AC_PROG_CC and AC_PROG_CXX in dnl configure.in dnl ! dnl @version $Id: aclocal.m4,v 1.1.2.3 2000/05/12 14:19:49 loic Exp $ dnl @author Loic Dachary dnl --- 700,706 ---- dnl This macro must be put after AC_PROG_CC and AC_PROG_CXX in dnl configure.in dnl ! dnl @version $Id: aclocal.m4,v 1.1.2.4 2000/09/03 21:57:17 ghutchis Exp $ dnl @author Loic Dachary dnl Index: db/configure.in =================================================================== RCS file: /opt/htdig/cvs/htdig3/db/Attic/configure.in,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -c -3 -p -r1.1.2.1 -r1.1.2.2 *** db/configure.in 2000/05/05 17:09:33 1.1.2.1 --- db/configure.in 2000/09/03 21:57:18 1.1.2.2 *************** 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) Index: db/configure =================================================================== RCS file: /opt/htdig/cvs/htdig3/db/Attic/configure,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -c -3 -p -r1.1.2.2 -r1.1.2.3 *** db/configure 2000/05/12 14:19:49 1.1.2.2 --- db/configure 2000/09/03 21:57:18 1.1.2.3 *************** echo "configure:1903: checking if --enab *** 1903,1909 **** # 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 --- 1903,1909 ---- # 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 *************** else *** 2418,2424 **** int main() { /* Ultrix mips cc rejects this. */ ! typedef int charset[2]; const charset x; /* SunOS 4.1.1 cc rejects this. */ char const *const *ccp; char **p; --- 2418,2424 ---- int main() { /* Ultrix mips cc rejects this. */ ! typedef int charset[2]; const charset x={0,0}; /* SunOS 4.1.1 cc rejects this. */ char const *const *ccp; char **p; *************** EOF *** 4638,4644 **** fi ! 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 --- 4638,4644 ---- fi ! 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