bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: stdint_.h tweak


From: Mark D. Baushke
Subject: Re: stdint_.h tweak
Date: Sat, 17 Jun 2006 14:40:13 -0700

The CVS project continues to have some problesm using stdint on an SGI
box. I updated from GNULIB prior to these last two changes:

| 2006-06-17  Bruno Haible  <address@hidden>
| 
|         * stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
|         problem on Solaris 2.5.1.
| 
|         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
|         <sys/inttypes.h>.
|         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.

and had Larry give it a whirl on his test SGI box.

Some basic problems... the lib/Makefile gets a rule that looks like
this:

stdint.h: stdint_.h
        sed -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \
            -e 's|@''FULL_PATH_STDINT_H''@|$(FULL_PATH_STDINT_H)|g' \
            -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \
            -e 's|@''FULL_PATH_INTTYPES_H''@|$(FULL_PATH_INTTYPES_H)|g' \
... more -e options elided...

FULL_PATH_INTTYPES_H = /usr/include/inttypes.h
FULL_PATH_STDINT_H = /usr/include/stdint.h

which means that stdint.h has this:

...other conditionals that probably do not lead to this block being
...used, even though it really should be included as this is where SGI
...puts all of the types we need.
# if 1
#  include /usr/include/inttypes.h
# endif

...

#if 1
  /* Other systems may have an incomplete <stdint.h>.  */
# include /usr/include/stdint.h
#endif

Of course, the other problem is that stdint.h exists, but is broken
for the default c89 compiler.

I suspect that it would be better to ensure that config.h is included
and then just use

# if @HAVE_INTTYPES_H@
#  include FULL_PATH_INTTYPES_H
# endif

and

#if @HAVE_STDINT_H@
  /* Other systems may have an incomplete <stdint.h>.  */
# include FULL_PATH_STDINT_H
#endif

and let the more correct definition of the macro in the config.h file be
used.

Below find config.log, config.h and nightlySGI.log to help you diagnose
better what to do.

        Thanks,
        -- Mark

 ------- archive message -------
Subject: Re: [Cvs-dev] GNULIB update patch
To: address@hidden (Mark D. Baushke)
Date: Sat, 17 Jun 2006 17:01:02 -0400 (EDT)
Cc: address@hidden
From: address@hidden (Larry Jones)
X-Mailer: ELM [version 2.5 PL3]


--%--multipart-mixed-boundary-1.4383.1150578062--%
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Mark D. Baushke writes:
> 
> Rather than just committing this change, it would
> be great if we could get a quick smoke test for
> the SGI and windows-NT builds.

Unfortunately, there's a *lot* of smoke, since it crashed and burned. 
On the other hand, it looks like it should be easy to fix.  I've
attached the interesting files.

-Larry Jones

I don't need to improve!  Everyone ELSE does! -- Calvin

--%--multipart-mixed-boundary-1.4383.1150578062--%
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Content-Description: English text
Content-Disposition: attachment; filename="config.log"

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by Concurrent Versions System (CVS) configure 1.12.13.1, which 
was
generated by GNU Autoconf 2.59.  Invocation command line was

  $ /u/scjones/cvs-nightly/configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = sgcpu24
uname -m = IP27
uname -r = 6.5
uname -s = IRIX64
uname -v = 07141529

/usr/bin/uname -p = mips
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
hostinfo               = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/sbin
PATH: /usr/bsd
PATH: /sbin
PATH: /usr/bin
PATH: /usr/bin/X11
PATH: .
PATH: /u/scjones/bin
PATH: /usr/local/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1573: checking for a BSD-compatible install
configure:1628: result: /u/scjones/cvs-nightly/build-aux/install-sh -c
configure:1639: checking whether build environment is sane
configure:1682: result: yes
configure:1747: checking for gawk
configure:1763: found /usr/local/bin/gawk
configure:1773: result: gawk
configure:1783: checking whether make sets $(MAKE)
configure:1803: result: yes
configure:1968: checking for cvs
configure:2001: result: no
configure:2035: checking whether to enable maintainer-specific portions of 
Makefiles
configure:2044: result: no
configure:2101: checking for ranlib
configure:2117: found /usr/local/bin/ranlib
configure:2128: result: ranlib
configure:2158: checking for style of include used by make
configure:2186: result: GNU
configure:2257: checking for gcc
configure:2283: result: cc -mips3
configure:2527: checking for C compiler version
configure:2530: cc -mips3 --version </dev/null >&5
cc ERROR:  -- not allowed in non XPG4 environment
cc ERROR parsing --version:  unknown flag
MIPSpro Compilers: Version 7.4.2m
configure:2533: $? = 0
configure:2535: cc -mips3 -v </dev/null >&5
MIPSpro Compilers: Version 7.4.2m
configure:2538: $? = 0
configure:2540: cc -mips3 -V </dev/null >&5
cc WARNING:  -V is ignored
cc ERROR:  no source or object file given
configure:2543: $? = 2
configure:2566: checking for C compiler default output file name
configure:2569: cc -mips3    conftest.c  >&5
configure:2572: $? = 0
configure:2618: result: a.out
configure:2623: checking whether the C compiler works
configure:2629: ./a.out
configure:2632: $? = 0
configure:2649: result: yes
configure:2656: checking whether we are cross compiling
configure:2658: result: no
configure:2661: checking for suffix of executables
configure:2663: cc -mips3 -o conftest    conftest.c  >&5
configure:2666: $? = 0
configure:2691: result: 
configure:2697: checking for suffix of object files
configure:2718: cc -mips3 -c   conftest.c >&5
configure:2721: $? = 0
configure:2743: result: o
configure:2747: checking whether we are using the GNU C compiler
configure:2771: cc -mips3 -c   conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 15
  The identifier "choke" is undefined.

         choke me
         ^

cc-1174 cc: WARNING File = conftest.c, Line = 15
  The variable "me" was declared but never referenced.

         choke me
               ^

1 error detected in the compilation of "conftest.c".
configure:2777: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| #ifndef __GNUC__
|        choke me
| #endif
| 
|   ;
|   return 0;
| }
configure:2803: result: no
configure:2809: checking whether cc -mips3 accepts -g
configure:2830: cc -mips3 -c -g  conftest.c >&5
configure:2836: $? = 0
configure:2840: test -z 
                         || test ! -s conftest.err
configure:2843: $? = 0
configure:2846: test -s conftest.o
configure:2849: $? = 0
configure:2860: result: yes
configure:2877: checking for cc -mips3 option to accept ANSI C
configure:2947: cc -mips3  -c -g  conftest.c >&5
configure:2953: $? = 0
configure:2957: test -z 
                         || test ! -s conftest.err
configure:2960: $? = 0
configure:2963: test -s conftest.o
configure:2966: $? = 0
configure:2984: result: none needed
configure:3002: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 2
  The identifier "choke" is undefined.

    choke me
    ^

cc-1065 cc: ERROR at end of source
  A semicolon is expected at this point.


2 errors detected in the compilation of "conftest.c".
configure:3008: $? = 2
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3143: checking dependency style of cc -mips3
configure:3233: result: sgi
configure:3256: checking how to run the C preprocessor
configure:3291: cc -mips3 -E  conftest.c
configure:3297: $? = 0
configure:3329: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 10
  The source file "ac_nonexistent.h" is unavailable.

  #include <ac_nonexistent.h>
                             ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:3335: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3374: result: cc -mips3 -E
configure:3398: cc -mips3 -E  conftest.c
configure:3404: $? = 0
configure:3436: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 10
  The source file "ac_nonexistent.h" is unavailable.

  #include <ac_nonexistent.h>
                             ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:3442: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3486: checking for egrep
configure:3496: result: grep -E
configure:3502: checking for AIX
configure:3524: result: no
configure:3530: checking for ANSI C header files
configure:3555: cc -mips3 -c -g  conftest.c >&5
configure:3561: $? = 0
configure:3565: test -z 
                         || test ! -s conftest.err
configure:3568: $? = 0
configure:3571: test -s conftest.o
configure:3574: $? = 0
configure:3663: cc -mips3 -o conftest -g   conftest.c  >&5
configure:3666: $? = 0
configure:3668: ./conftest
configure:3671: $? = 0
configure:3686: result: yes
configure:3710: checking for sys/types.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for sys/stat.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for stdlib.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for string.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for memory.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for strings.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for inttypes.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for stdint.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3710: checking for unistd.h
configure:3726: cc -mips3 -c -g  conftest.c >&5
configure:3732: $? = 0
configure:3736: test -z 
                         || test ! -s conftest.err
configure:3739: $? = 0
configure:3742: test -s conftest.o
configure:3745: $? = 0
configure:3756: result: yes
configure:3778: checking minix/config.h usability
configure:3790: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 54
  The source file "minix/config.h" is unavailable.

  #include <minix/config.h>
                           ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:3796: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:3819: result: no
configure:3823: checking minix/config.h presence
configure:3833: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 20
  The source file "minix/config.h" is unavailable.

  #include <minix/config.h>
                           ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:3839: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:3859: result: no
configure:3894: checking for minix/config.h
configure:3901: result: no
configure:3940: checking whether it is safe to define __EXTENSIONS__
configure:3963: cc -mips3 -c -g  conftest.c >&5
configure:3969: $? = 0
configure:3973: test -z 
                         || test ! -s conftest.err
configure:3976: $? = 0
configure:3979: test -s conftest.o
configure:3982: $? = 0
configure:3993: result: yes
configure:4057: checking for gcc
configure:4083: result: cc -mips3
configure:4327: checking for C compiler version
configure:4330: cc -mips3 --version </dev/null >&5
cc ERROR:  -- not allowed in non XPG4 environment
cc ERROR parsing --version:  unknown flag
MIPSpro Compilers: Version 7.4.2m
configure:4333: $? = 0
configure:4335: cc -mips3 -v </dev/null >&5
MIPSpro Compilers: Version 7.4.2m
configure:4338: $? = 0
configure:4340: cc -mips3 -V </dev/null >&5
cc WARNING:  -V is ignored
cc ERROR:  no source or object file given
configure:4343: $? = 2
configure:4346: checking whether we are using the GNU C compiler
configure:4402: result: no
configure:4408: checking whether cc -mips3 accepts -g
configure:4459: result: yes
configure:4476: checking for cc -mips3 option to accept ANSI C
configure:4583: result: none needed
configure:4601: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 2
  The identifier "choke" is undefined.

    choke me
    ^

cc-1065 cc: ERROR at end of source
  A semicolon is expected at this point.


2 errors detected in the compilation of "conftest.c".
configure:4607: $? = 2
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:4742: checking dependency style of cc -mips3
configure:4832: result: sgi
configure:4850: checking whether cc -mips3 and cc understand -c and -o together
configure:4880: cc -mips3 -c conftest.c -o conftest.o >&5
configure:4883: $? = 0
configure:4885: cc -mips3 -c conftest.c -o conftest.o >&5
configure:4888: $? = 0
configure:4895: cc -c conftest.c >&5
configure:4898: $? = 0
configure:4901: cc -c conftest.c -o conftest.o >&5
configure:4904: $? = 0
configure:4906: cc -c conftest.c -o conftest.o >&5
configure:4909: $? = 0
configure:4927: result: yes
configure:4954: checking for library containing strerror
configure:4984: cc -mips3 -o conftest -g   conftest.c  >&5
configure:4990: $? = 0
configure:4994: test -z 
                         || test ! -s conftest.err
configure:4997: $? = 0
configure:5000: test -s conftest
configure:5003: $? = 0
configure:5073: result: none required
configure:5123: checking for ranlib
configure:5150: result: ranlib
configure:5162: checking whether ln -s works
configure:5166: result: yes
configure:5180: checking for special C compiler options needed for large files
configure:5215: cc -mips3 -c -g  conftest.c >&5
configure:5221: $? = 0
configure:5225: test -z 
                         || test ! -s conftest.err
configure:5228: $? = 0
configure:5231: test -s conftest.o
configure:5234: $? = 0
configure:5279: result: no
configure:5285: checking for _FILE_OFFSET_BITS value needed for large files
configure:5316: cc -mips3 -c -g  conftest.c >&5
configure:5322: $? = 0
configure:5326: test -z 
                         || test ! -s conftest.err
configure:5329: $? = 0
configure:5332: test -s conftest.o
configure:5335: $? = 0
configure:5400: result: no
configure:5410: checking for _LARGE_FILES value needed for large files
configure:5441: cc -mips3 -c -g  conftest.c >&5
configure:5447: $? = 0
configure:5451: test -z 
                         || test ! -s conftest.err
configure:5454: $? = 0
configure:5457: test -s conftest.o
configure:5460: $? = 0
configure:5525: result: no
configure:5541: checking for perl
configure:5559: found /usr/sbin/perl
configure:5572: result: /usr/sbin/perl
configure:5581: checking for csh
configure:5599: found /sbin/csh
configure:5612: result: /sbin/csh
configure:5622: checking for mktemp
configure:5653: result: mktemp
configure:5669: checking for sendmail
configure:5688: found /usr/lib/sendmail
configure:5701: result: /usr/lib/sendmail
configure:5711: checking for pr
configure:5729: found /usr/bin/pr
configure:5742: result: /usr/bin/pr
configure:5759: checking for gpg
configure:5790: result: gpg
configure:5842: checking for groff
configure:5860: found /usr/local/bin/groff
configure:5872: result: /usr/local/bin/groff
configure:5885: checking for ps2pdf
configure:5916: result: /u/scjones/cvs-nightly/build-aux/missing ps2pdf
configure:5925: checking for texi2dvi
configure:5943: found /usr/local/bin/texi2dvi
configure:5956: result: /usr/local/bin/texi2dvi
configure:5964: checking whether #! works in shell scripts
configure:5981: result: yes
configure:5993: checking for BSD VPATH bug in make
configure:6000: mkdir ac_test_dir
configure:6003: $? = 0
configure:6019: make -f conftestmake 2>&1 >/dev/null |grep ^BSD\ VPATH\ bug\ 
present$ >/dev/null
configure:6022: $? = 1
configure:6029: rm -rf ac_test_dir ac_test_target conftestmake
configure:6032: $? = 0
configure:6035: result: no
configure:6059: checking for dirent.h that defines DIR
configure:6083: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 32
  The controlling expression is constant.

  if ((DIR *) 0)
      ^

configure:6089: $? = 0
configure:6093: test -z 
                         || test ! -s conftest.err
configure:6096: $? = 0
configure:6099: test -s conftest.o
configure:6102: $? = 0
configure:6113: result: yes
configure:6126: checking for library containing opendir
configure:6156: cc -mips3 -o conftest -g   conftest.c  >&5
configure:6162: $? = 0
configure:6166: test -z 
                         || test ! -s conftest.err
configure:6169: $? = 0
configure:6172: test -s conftest
configure:6175: $? = 0
configure:6245: result: none required
configure:6381: checking for ANSI C header files
configure:6537: result: yes
configure:6547: checking for sys/wait.h that is POSIX.1 compatible
configure:6578: cc -mips3 -c -g  conftest.c >&5
configure:6584: $? = 0
configure:6588: test -z 
                         || test ! -s conftest.err
configure:6591: $? = 0
configure:6594: test -s conftest.o
configure:6597: $? = 0
configure:6608: result: yes
configure:6658: checking direct.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 63
  The source file "direct.h" is unavailable.

  #include <direct.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:6676: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <direct.h>
configure:6699: result: no
configure:6703: checking direct.h presence
configure:6713: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 29
  The source file "direct.h" is unavailable.

  #include <direct.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:6719: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| /* end confdefs.h.  */
| #include <direct.h>
configure:6739: result: no
configure:6774: checking for direct.h
configure:6781: result: no
configure:6658: checking fcntl.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking fcntl.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for fcntl.h
configure:6781: result: yes
configure:6658: checking io.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 64
  The source file "io.h" is unavailable.

  #include <io.h>
                 ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:6676: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <io.h>
configure:6699: result: no
configure:6703: checking io.h presence
configure:6713: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 30
  The source file "io.h" is unavailable.

  #include <io.h>
                 ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:6719: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| /* end confdefs.h.  */
| #include <io.h>
configure:6739: result: no
configure:6774: checking for io.h
configure:6781: result: no
configure:6649: checking for memory.h
configure:6654: result: yes
configure:6658: checking ndbm.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking ndbm.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for ndbm.h
configure:6781: result: yes
configure:6649: checking for stdint.h
configure:6654: result: yes
configure:6658: checking syslog.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking syslog.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for syslog.h
configure:6781: result: yes
configure:6658: checking sys/bsdtypes.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 68
  The source file "sys/bsdtypes.h" is unavailable.

  #include <sys/bsdtypes.h>
                           ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:6676: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/bsdtypes.h>
configure:6699: result: no
configure:6703: checking sys/bsdtypes.h presence
configure:6713: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 34
  The source file "sys/bsdtypes.h" is unavailable.

  #include <sys/bsdtypes.h>
                           ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:6719: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| /* end confdefs.h.  */
| #include <sys/bsdtypes.h>
configure:6739: result: no
configure:6774: checking for sys/bsdtypes.h
configure:6781: result: no
configure:6658: checking sys/file.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking sys/file.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for sys/file.h
configure:6781: result: yes
configure:6658: checking sys/param.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking sys/param.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for sys/param.h
configure:6781: result: yes
configure:6658: checking sys/resource.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking sys/resource.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for sys/resource.h
configure:6781: result: yes
configure:6658: checking sys/select.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking sys/select.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for sys/select.h
configure:6781: result: yes
configure:6658: checking utime.h usability
configure:6670: cc -mips3 -c -g  conftest.c >&5
configure:6676: $? = 0
configure:6680: test -z 
                         || test ! -s conftest.err
configure:6683: $? = 0
configure:6686: test -s conftest.o
configure:6689: $? = 0
configure:6699: result: yes
configure:6703: checking utime.h presence
configure:6713: cc -mips3 -E  conftest.c
configure:6719: $? = 0
configure:6739: result: yes
configure:6774: checking for utime.h
configure:6781: result: yes
configure:6794: checking whether stat file-mode macros are broken
configure:6842: result: no
configure:6853: checking for an ANSI C-conforming const
configure:6920: cc -mips3 -c -g  conftest.c >&5
cc-1551 cc: WARNING File = conftest.c, Line = 68
  The variable "t" is used before its value is set.

      *t++ = 0;
       ^

cc-1174 cc: WARNING File = conftest.c, Line = 66
  The variable "s" was declared but never referenced.

      char const *s = 0 ? (char *) 0 : (char const *) 0;
                  ^

cc-1551 cc: WARNING File = conftest.c, Line = 83
  The variable "b" is used before its value is set.

      struct s *b; b->j = 5;
                   ^

cc-1174 cc: WARNING File = conftest.c, Line = 86
  The variable "foo" was declared but never referenced.

      const int foo = 10;
                ^

cc-1174 cc: WARNING File = conftest.c, Line = 47
  The variable "x" was declared but never referenced.

    const charset x;
                  ^

cc-1174 cc: WARNING File = conftest.c, Line = 53
  The variable "zero" was declared but never referenced.

    static struct point const zero = {0,0};
                              ^

configure:6926: $? = 0
configure:6930: test -z 
                         || test ! -s conftest.err
configure:6933: $? = 0
configure:6936: test -s conftest.o
configure:6939: $? = 0
configure:6950: result: yes
configure:6960: checking for uid_t in sys/types.h
configure:6983: result: yes
configure:6998: checking for mode_t
configure:7022: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 76
  The controlling expression is constant.

  if ((mode_t *) 0)
      ^

configure:7028: $? = 0
configure:7032: test -z 
                         || test ! -s conftest.err
configure:7035: $? = 0
configure:7038: test -s conftest.o
configure:7041: $? = 0
configure:7052: result: yes
configure:7064: checking for pid_t
configure:7088: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 76
  The controlling expression is constant.

  if ((pid_t *) 0)
      ^

configure:7094: $? = 0
configure:7098: test -z 
                         || test ! -s conftest.err
configure:7101: $? = 0
configure:7104: test -s conftest.o
configure:7107: $? = 0
configure:7118: result: yes
configure:7130: checking return type of signal handlers
configure:7161: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 53
  The variable "i" was declared but never referenced.

  int i;
      ^

configure:7167: $? = 0
configure:7171: test -z 
                         || test ! -s conftest.err
configure:7174: $? = 0
configure:7177: test -s conftest.o
configure:7180: $? = 0
configure:7191: result: void
configure:7200: checking for struct stat.st_blksize
configure:7223: cc -mips3 -c -g  conftest.c >&5
configure:7229: $? = 0
configure:7233: test -z 
                         || test ! -s conftest.err
configure:7236: $? = 0
configure:7239: test -s conftest.o
configure:7242: $? = 0
configure:7299: result: yes
configure:7310: checking for struct stat.st_rdev
configure:7333: cc -mips3 -c -g  conftest.c >&5
configure:7339: $? = 0
configure:7343: test -z 
                         || test ! -s conftest.err
configure:7346: $? = 0
configure:7349: test -s conftest.o
configure:7352: $? = 0
configure:7409: result: yes
configure:7421: checking for _LARGEFILE_SOURCE value needed for large files
configure:7444: cc -mips3 -c -g  conftest.c >&5
configure:7450: $? = 0
configure:7454: test -z 
                         || test ! -s conftest.err
configure:7457: $? = 0
configure:7460: test -s conftest.o
configure:7463: $? = 0
configure:7520: result: no
configure:7534: checking for fseeko
configure:7555: cc -mips3 -o conftest -g   conftest.c  >&5
configure:7561: $? = 0
configure:7565: test -z 
                         || test ! -s conftest.err
configure:7568: $? = 0
configure:7571: test -s conftest
configure:7574: $? = 0
configure:7586: result: yes
configure:7622: checking for waitpid
configure:7679: cc -mips3 -o conftest -g   conftest.c  >&5
configure:7685: $? = 0
configure:7689: test -z 
                         || test ! -s conftest.err
configure:7692: $? = 0
configure:7695: test -s conftest
configure:7698: $? = 0
configure:7710: result: yes
configure:7740: checking for fcntl.h
configure:7745: result: yes
configure:7885: checking whether select hangs on /dev/null fd when timeout is 
NULL
configure:7929: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1070 cc: ERROR File = conftest.c, Line = 58
  The indicated type is incomplete.

    struct timeval timeout;
                   ^

1 error detected in the compilation of "conftest.c".
configure:7932: $? = 2
configure: program exited with status 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| /* end confdefs.h.  */
| 
| #include <stdio.h>
| #include <sys/select.h>
| #ifdef HAVE_FCNTL_H
| # include <fcntl.h>
| #endif
| #include <errno.h>
| int
| main ()
| {
| 
|   int numfds;
|   fd_set readfds;
|   struct timeval timeout;
|   int fd = open ("/dev/null", O_RDONLY);
| 
|   FD_ZERO (&readfds);
|   FD_SET (fd, &readfds);
|   timeout.tv_sec = 0;
|   timeout.tv_usec = 1;
| 
|   while ((numfds = select (fd + 1, &readfds, NULL, NULL, &timeout)) < 0
|        && errno == EINTR);
|   return (numfds <= 0);
| 
|   ;
|   return 0;
| }
configure:7952: result: yes
configure:7962: checking for fcntl.h
configure:7967: result: yes
configure:7962: checking for unistd.h
configure:7967: result: yes
configure:8132: checking for working alloca.h
configure:8153: cc -mips3 -o conftest -g   conftest.c  >&5
configure:8159: $? = 0
configure:8163: test -z 
                         || test ! -s conftest.err
configure:8166: $? = 0
configure:8169: test -s conftest
configure:8172: $? = 0
configure:8184: result: yes
configure:8194: checking for alloca
configure:8235: cc -mips3 -o conftest -g   conftest.c  >&5
configure:8241: $? = 0
configure:8245: test -z 
                         || test ! -s conftest.err
configure:8248: $? = 0
configure:8251: test -s conftest
configure:8254: $? = 0
configure:8266: result: yes
configure:8495: checking for stdlib.h
configure:8500: result: yes
configure:8640: checking for GNU libc compatible malloc
configure:8669: cc -mips3 -o conftest -g   conftest.c  >&5
configure:8672: $? = 0
configure:8674: ./conftest
configure:8677: $? = 0
configure:8691: result: yes
configure:8707: checking for long long
configure:8729: cc -mips3 -o conftest -g   conftest.c  >&5
configure:8735: $? = 0
configure:8739: test -z 
                         || test ! -s conftest.err
configure:8742: $? = 0
configure:8745: test -s conftest
configure:8748: $? = 0
configure:8760: result: yes
configure:8771: checking for long double
configure:8800: cc -mips3 -c -g  conftest.c >&5
configure:8806: $? = 0
configure:8810: test -z 
                         || test ! -s conftest.err
configure:8813: $? = 0
configure:8816: test -s conftest.o
configure:8819: $? = 0
configure:8831: result: yes
configure:8841: checking for inline
configure:8862: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 56
  The identifier "inline" is undefined.

  static inline foo_t static_foo () {return 0; }
         ^

cc-1101 cc: ERROR File = conftest.c, Line = 56
  "foo_t" has already been declared in the current scope.

  static inline foo_t static_foo () {return 0; }
                ^

cc-1065 cc: ERROR File = conftest.c, Line = 56
  A semicolon is expected at this point.

  static inline foo_t static_foo () {return 0; }
                      ^

cc-1012 cc: WARNING at end of source
  Parsing restarts here after previous syntax error.


cc-1174 cc: WARNING File = conftest.c, Line = 56
  The variable "foo_t" was declared but never referenced.

  static inline foo_t static_foo () {return 0; }
                ^

3 errors detected in the compilation of "conftest.c".
configure:8868: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| /* end confdefs.h.  */
| #ifndef __cplusplus
| typedef int foo_t;
| static inline foo_t static_foo () {return 0; }
| inline foo_t foo () {return 0; }
| #endif
| 
configure:8862: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 56
  The identifier "__inline__" is undefined.

  static __inline__ foo_t static_foo () {return 0; }
         ^

cc-1101 cc: ERROR File = conftest.c, Line = 56
  "foo_t" has already been declared in the current scope.

  static __inline__ foo_t static_foo () {return 0; }
                    ^

cc-1065 cc: ERROR File = conftest.c, Line = 56
  A semicolon is expected at this point.

  static __inline__ foo_t static_foo () {return 0; }
                          ^

cc-1012 cc: WARNING at end of source
  Parsing restarts here after previous syntax error.


cc-1174 cc: WARNING File = conftest.c, Line = 56
  The variable "foo_t" was declared but never referenced.

  static __inline__ foo_t static_foo () {return 0; }
                    ^

3 errors detected in the compilation of "conftest.c".
configure:8868: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| /* end confdefs.h.  */
| #ifndef __cplusplus
| typedef int foo_t;
| static __inline__ foo_t static_foo () {return 0; }
| __inline__ foo_t foo () {return 0; }
| #endif
| 
configure:8862: cc -mips3 -c -g  conftest.c >&5
configure:8868: $? = 0
configure:8872: test -z 
                         || test ! -s conftest.err
configure:8875: $? = 0
configure:8878: test -s conftest.o
configure:8881: $? = 0
configure:8893: result: __inline
configure:8912: checking for C/C++ restrict keyword
configure:8930: cc -mips3 -c -g  conftest.c >&5
cc-1065 cc: ERROR File = conftest.c, Line = 57
  A semicolon is expected at this point.

  float * restrict x;
                   ^

1 error detected in the compilation of "conftest.c".
configure:8936: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| /* end confdefs.h.  */
| float * restrict x;
configure:8930: cc -mips3 -c -g  conftest.c >&5
configure:8936: $? = 0
configure:8940: test -z 
                         || test ! -s conftest.err
configure:8943: $? = 0
configure:8946: test -s conftest.o
configure:8949: $? = 0
configure:8961: result: __restrict
configure:8977: checking for IPv4 sockets
configure:9000: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 64
  The variable "x" was declared but never referenced.

  int x = AF_INET; struct in_addr y; struct sockaddr_in z;
      ^

cc-1174 cc: WARNING File = conftest.c, Line = 64
  The variable "y" was declared but never referenced.

  int x = AF_INET; struct in_addr y; struct sockaddr_in z;
                                  ^

cc-1174 cc: WARNING File = conftest.c, Line = 64
  The variable "z" was declared but never referenced.

  int x = AF_INET; struct in_addr y; struct sockaddr_in z;
                                                        ^

configure:9006: $? = 0
configure:9010: test -z 
                         || test ! -s conftest.err
configure:9013: $? = 0
configure:9016: test -s conftest.o
configure:9019: $? = 0
configure:9031: result: yes
configure:9041: checking for IPv6 sockets
configure:9064: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 65
  The variable "x" was declared but never referenced.

  int x = AF_INET6; struct in6_addr y; struct sockaddr_in6 z;
      ^

cc-1174 cc: WARNING File = conftest.c, Line = 65
  The variable "y" was declared but never referenced.

  int x = AF_INET6; struct in6_addr y; struct sockaddr_in6 z;
                                    ^

cc-1174 cc: WARNING File = conftest.c, Line = 65
  The variable "z" was declared but never referenced.

  int x = AF_INET6; struct in6_addr y; struct sockaddr_in6 z;
                                                           ^

configure:9070: $? = 0
configure:9074: test -z 
                         || test ! -s conftest.err
configure:9077: $? = 0
configure:9080: test -s conftest.o
configure:9083: $? = 0
configure:9095: result: yes
configure:9123: checking sys/socket.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking sys/socket.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for sys/socket.h
configure:9246: result: yes
configure:9123: checking netinet/in.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking netinet/in.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for netinet/in.h
configure:9246: result: yes
configure:9123: checking netdb.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking netdb.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for netdb.h
configure:9246: result: yes
configure:9123: checking sys/time.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking sys/time.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for sys/time.h
configure:9246: result: yes
configure:9114: checking for unistd.h
configure:9119: result: yes
configure:9114: checking for sys/param.h
configure:9119: result: yes
configure:9123: checking stdio_ext.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 100
  The source file "stdio_ext.h" is unavailable.

  #include <stdio_ext.h>
                        ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:9141: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <stdio_ext.h>
configure:9164: result: no
configure:9168: checking stdio_ext.h presence
configure:9178: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 66
  The source file "stdio_ext.h" is unavailable.

  #include <stdio_ext.h>
                        ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:9184: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| /* end confdefs.h.  */
| #include <stdio_ext.h>
configure:9204: result: no
configure:9239: checking for stdio_ext.h
configure:9246: result: no
configure:9123: checking termios.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking termios.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for termios.h
configure:9246: result: yes
configure:9123: checking sys/cdefs.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking sys/cdefs.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for sys/cdefs.h
configure:9246: result: yes
configure:9114: checking for inttypes.h
configure:9119: result: yes
configure:9123: checking wchar.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking wchar.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for wchar.h
configure:9246: result: yes
configure:9123: checking wctype.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking wctype.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for wctype.h
configure:9246: result: yes
configure:9114: checking for sys/select.h
configure:9119: result: yes
configure:9123: checking locale.h usability
configure:9135: cc -mips3 -c -g  conftest.c >&5
configure:9141: $? = 0
configure:9145: test -z 
                         || test ! -s conftest.err
configure:9148: $? = 0
configure:9151: test -s conftest.o
configure:9154: $? = 0
configure:9164: result: yes
configure:9168: checking locale.h presence
configure:9178: cc -mips3 -E  conftest.c
configure:9184: $? = 0
configure:9204: result: yes
configure:9239: checking for locale.h
configure:9246: result: yes
configure:9114: checking for stdint.h
configure:9119: result: yes
configure:9443: checking how to do getaddrinfo
configure:9446: checking for library containing getaddrinfo
configure:9476: cc -mips3 -o conftest -g   conftest.c  >&5
configure:9482: $? = 0
configure:9486: test -z 
                         || test ! -s conftest.err
configure:9489: $? = 0
configure:9492: test -s conftest
configure:9495: $? = 0
configure:9565: result: none required
configure:9576: checking for getaddrinfo
configure:9633: cc -mips3 -o conftest -g   conftest.c  >&5
configure:9639: $? = 0
configure:9643: test -z 
                         || test ! -s conftest.err
configure:9646: $? = 0
configure:9649: test -s conftest
configure:9652: $? = 0
configure:9664: result: yes
configure:9757: checking for gai_strerror
configure:9814: cc -mips3 -o conftest -g   conftest.c  >&5
configure:9820: $? = 0
configure:9824: test -z 
                         || test ! -s conftest.err
configure:9827: $? = 0
configure:9830: test -s conftest
configure:9833: $? = 0
configure:9845: result: yes
configure:9866: checking for library containing gethostbyname
configure:9896: cc -mips3 -o conftest -g   conftest.c  >&5
configure:9902: $? = 0
configure:9906: test -z 
                         || test ! -s conftest.err
configure:9909: $? = 0
configure:9912: test -s conftest
configure:9915: $? = 0
configure:9985: result: none required
configure:9992: checking for library containing getservbyname
configure:10022: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10028: $? = 0
configure:10032: test -z 
                         || test ! -s conftest.err
configure:10035: $? = 0
configure:10038: test -s conftest
configure:10041: $? = 0
configure:10111: result: none required
configure:10133: checking whether getaddrinfo is declared
configure:10173: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 97
  The variable "p" was declared but never referenced.

    char *p = (char *) getaddrinfo;
          ^

configure:10179: $? = 0
configure:10183: test -z 
                         || test ! -s conftest.err
configure:10186: $? = 0
configure:10189: test -s conftest.o
configure:10192: $? = 0
configure:10203: result: yes
configure:10219: checking whether freeaddrinfo is declared
configure:10259: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 98
  The variable "p" was declared but never referenced.

    char *p = (char *) freeaddrinfo;
          ^

configure:10265: $? = 0
configure:10269: test -z 
                         || test ! -s conftest.err
configure:10272: $? = 0
configure:10275: test -s conftest.o
configure:10278: $? = 0
configure:10289: result: yes
configure:10305: checking whether gai_strerror is declared
configure:10345: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 99
  The variable "p" was declared but never referenced.

    char *p = (char *) gai_strerror;
          ^

configure:10351: $? = 0
configure:10355: test -z 
                         || test ! -s conftest.err
configure:10358: $? = 0
configure:10361: test -s conftest.o
configure:10364: $? = 0
configure:10375: result: yes
configure:10393: checking for struct addrinfo
configure:10430: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 96
  The controlling expression is constant.

  if ((struct addrinfo *) 0)
      ^

configure:10436: $? = 0
configure:10440: test -z 
                         || test ! -s conftest.err
configure:10443: $? = 0
configure:10446: test -s conftest.o
configure:10449: $? = 0
configure:10460: result: yes
configure:10473: checking for stdbool.h that conforms to C99
configure:10561: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdbool.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1166 cc: ERROR File = conftest.c, Line = 83
  Expected a declaration.

           "error: bool is not defined"
           ^

cc-1012 cc: WARNING File = conftest.c, Line = 101
  Parsing restarts here after previous syntax error.

          struct s { _Bool s: 1; _Bool t; } s;
                                             ^

cc-1020 cc: ERROR File = conftest.c, Line = 103
  The identifier "true" is undefined.

          char a[true == 1 ? 1 : -1];
                 ^

cc-1020 cc: ERROR File = conftest.c, Line = 104
  The identifier "false" is undefined.

          char b[false == 0 ? 1 : -1];
                 ^

cc-1020 cc: ERROR File = conftest.c, Line = 105
  The identifier "__bool_true_false_are_defined" is undefined.

          char c[__bool_true_false_are_defined == 1 ? 1 : -1];
                 ^

cc-1020 cc: ERROR File = conftest.c, Line = 106
  The identifier "bool" is undefined.

          char d[(bool) 0.5 == true ? 1 : -1];
                  ^

cc-1017 cc: ERROR File = conftest.c, Line = 106
  An unmatched left bracket ("[") appears in an expression.

          char d[(bool) 0.5 == true ? 1 : -1];
                        ^

cc-3193 cc: ERROR File = conftest.c, Line = 107
  The "bool" is not a type name.

          bool e = &s;
          ^

cc-1020 cc: ERROR File = conftest.c, Line = 107
  The identifier "s" is undefined.

          bool e = &s;
                    ^

cc-1020 cc: ERROR File = conftest.c, Line = 108
  The identifier "_Bool" is undefined.

          char f[(_Bool) 0.0 == false ? 1 : -1];
                  ^

cc-1017 cc: ERROR File = conftest.c, Line = 108
  An unmatched left bracket ("[") appears in an expression.

          char f[(_Bool) 0.0 == false ? 1 : -1];
                         ^

cc-3193 cc: ERROR File = conftest.c, Line = 113
  The "_Bool" is not a type name.

          _Bool n[m];
          ^

cc-1017 cc: ERROR File = conftest.c, Line = 115
  An unmatched left bracket ("[") appears in an expression.

          char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1];
                              ^

cc-3193 cc: ERROR File = conftest.c, Line = 139
  The "_Bool" is not a type name.

          _Bool q = true;
          ^

cc-3193 cc: ERROR File = conftest.c, Line = 140
  The "_Bool" is not a type name.

          _Bool *pq = &q;
          ^

14 errors detected in the compilation of "conftest.c".
configure:10567: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| /* end confdefs.h.  */
| 
|         #include <stdbool.h>
|         #ifndef bool
|          "error: bool is not defined"
|         #endif
|         #ifndef false
|          "error: false is not defined"
|         #endif
|         #if false
|          "error: false is not 0"
|         #endif
|         #ifndef true
|          "error: true is not defined"
|         #endif
|         #if true != 1
|          "error: true is not 1"
|         #endif
|         #ifndef __bool_true_false_are_defined
|          "error: __bool_true_false_are_defined is not defined"
|         #endif
| 
|         struct s { _Bool s: 1; _Bool t; } s;
| 
|         char a[true == 1 ? 1 : -1];
|         char b[false == 0 ? 1 : -1];
|         char c[__bool_true_false_are_defined == 1 ? 1 : -1];
|         char d[(bool) 0.5 == true ? 1 : -1];
|         bool e = &s;
|         char f[(_Bool) 0.0 == false ? 1 : -1];
|         char g[true];
|         char h[sizeof (_Bool)];
|         char i[sizeof s.t];
|         enum { j = false, k = true, l = false * true, m = true * 256 };
|         _Bool n[m];
|         char o[sizeof n == m * sizeof n[0] ? 1 : -1];
|         char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1];
|         #if defined __xlc__ || defined __GNUC__
|          /* Catch a bug in IBM AIX xlc compiler version 6.0.0.0
|             reported by James Lemley on 2005-10-05; see
|             
http://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html
|             This test is not quite right, since xlc is allowed to
|             reject this program, as the initializer for xlcbug is
|             not one of the forms that C requires support for.
|             However, doing the test right would require a run-time
|             test, and that would make cross-compilation harder.
|             Let us hope that IBM fixes the xlc bug, and also adds
|             support for this kind of constant expression.  In the
|             meantime, this test will reject xlc, which is OK, since
|             our stdbool.h substitute should suffice.  We also test
|             this with GCC, where it should work, to detect more
|             quickly whether someone messes up the test in the
|             future.  */
|          char digs[] = "0123456789";
|          int xlcbug = 1 / (&(digs + 5)[-2 + (bool) 1] == &digs[4] ? 1 : -1);
|         #endif
|         /* Catch a bug in an HP-UX C compiler.  See
|            http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html
|            
http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html
|          */
|         _Bool q = true;
|         _Bool *pq = &q;
| 
| int
| main ()
| {
| 
|         *pq |= q;
|         *pq |= ! q;
|         /* Refer to every declared value, to avoid compiler optimizations.  */
|         return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l
|                 + !m + !n + !o + !p + !q + !pq);
| 
|   ;
|   return 0;
| }
configure:10591: result: no
configure:10593: checking for _Bool
configure:10617: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 117
  The identifier "_Bool" is undefined.

  if ((_Bool *) 0)
       ^

cc-1029 cc: ERROR File = conftest.c, Line = 117
  An expression is expected at this point.

  if ((_Bool *) 0)
              ^

cc-1018 cc: ERROR File = conftest.c, Line = 117
  An unmatched left parentheses "(" appears in an expression.

  if ((_Bool *) 0)
                ^

3 errors detected in the compilation of "conftest.c".
configure:10623: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if ((_Bool *) 0)
|   return 0;
| if (sizeof (_Bool))
|   return 0;
|   ;
|   return 0;
| }
configure:10647: result: no
configure:10673: checking for fdopendir
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "fdopendir" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:10736: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| /* end confdefs.h.  */
| /* Define fdopendir to an innocuous variant, in case <limits.h> declares 
fdopendir.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define fdopendir innocuous_fdopendir
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char fdopendir (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef fdopendir
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char fdopendir ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_fdopendir) || defined (__stub___fdopendir)
| choke me
| #else
| char (*f) () = fdopendir;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != fdopendir;
|   ;
|   return 0;
| }
configure:10761: result: no
configure:10673: checking for fchdir
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for mempcpy
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "mempcpy" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:10736: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| /* end confdefs.h.  */
| /* Define mempcpy to an innocuous variant, in case <limits.h> declares 
mempcpy.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define mempcpy innocuous_mempcpy
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char mempcpy (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef mempcpy
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char mempcpy ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_mempcpy) || defined (__stub___mempcpy)
| choke me
| #else
| char (*f) () = mempcpy;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != mempcpy;
|   ;
|   return 0;
| }
configure:10761: result: no
configure:10673: checking for isascii
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for __fsetlocking
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "__fsetlocking" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:10736: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| /* end confdefs.h.  */
| /* Define __fsetlocking to an innocuous variant, in case <limits.h> declares 
__fsetlocking.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define __fsetlocking innocuous___fsetlocking
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char __fsetlocking (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef __fsetlocking
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char __fsetlocking ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub___fsetlocking) || defined (__stub_____fsetlocking)
| choke me
| #else
| char (*f) () = __fsetlocking;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != __fsetlocking;
|   ;
|   return 0;
| }
configure:10761: result: no
configure:10673: checking for tcgetattr
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for tcsetattr
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for gettimeofday
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for nanotime
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "nanotime" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:10736: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| /* end confdefs.h.  */
| /* Define nanotime to an innocuous variant, in case <limits.h> declares 
nanotime.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define nanotime innocuous_nanotime
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char nanotime (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef nanotime
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char nanotime ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_nanotime) || defined (__stub___nanotime)
| choke me
| #else
| char (*f) () = nanotime;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != nanotime;
|   ;
|   return 0;
| }
configure:10761: result: no
configure:10673: checking for getlogin_r
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for getpwnam_r
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for mbsinit
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for alarm
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for siginterrupt
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for posix_memalign
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "posix_memalign" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:10736: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| /* end confdefs.h.  */
| /* Define posix_memalign to an innocuous variant, in case <limits.h> declares 
posix_memalign.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define posix_memalign innocuous_posix_memalign
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char posix_memalign (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef posix_memalign
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char posix_memalign ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_posix_memalign) || defined (__stub___posix_memalign)
| choke me
| #else
| char (*f) () = posix_memalign;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != posix_memalign;
|   ;
|   return 0;
| }
configure:10761: result: no
configure:10673: checking for iswprint
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for isblank
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for mbrtowc
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for wcrtomb
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for wcscoll
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for mblen
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for mbrlen
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10673: checking for tzset
configure:10730: cc -mips3 -o conftest -g   conftest.c  >&5
configure:10736: $? = 0
configure:10740: test -z 
                         || test ! -s conftest.err
configure:10743: $? = 0
configure:10746: test -s conftest
configure:10749: $? = 0
configure:10761: result: yes
configure:10801: checking whether memrchr is declared
configure:10825: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 136
  The identifier "memrchr" is undefined.

    char *p = (char *) memrchr;
                       ^

1 error detected in the compilation of "conftest.c".
configure:10831: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef memrchr
|   char *p = (char *) memrchr;
| #endif
| 
|   ;
|   return 0;
| }
configure:10855: result: no
configure:10875: checking whether system is Windows or MSDOS
configure:10899: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 104
  The identifier "neither" is undefined.

  neither MSDOS nor Windows
  ^

cc-1065 cc: ERROR File = conftest.c, Line = 104
  A semicolon is expected at this point.

  neither MSDOS nor Windows
                ^

cc-1174 cc: WARNING File = conftest.c, Line = 104
  The variable "MSDOS" was declared but never referenced.

  neither MSDOS nor Windows
          ^

2 errors detected in the compilation of "conftest.c".
configure:10905: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| #if !defined _WIN32 && !defined __WIN32__ && !defined __MSDOS__ && !defined 
__CYGWIN__
| neither MSDOS nor Windows
| #endif
|   ;
|   return 0;
| }
configure:10930: result: no
configure:10959: checking whether strerror_r is declared
configure:10983: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 139
  The identifier "strerror_r" is undefined.

    char *p = (char *) strerror_r;
                       ^

1 error detected in the compilation of "conftest.c".
configure:10989: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef strerror_r
|   char *p = (char *) strerror_r;
| #endif
| 
|   ;
|   return 0;
| }
configure:11013: result: no
configure:11035: checking for strerror_r
configure:11092: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "strerror_r" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:11098: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| /* end confdefs.h.  */
| /* Define strerror_r to an innocuous variant, in case <limits.h> declares 
strerror_r.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define strerror_r innocuous_strerror_r
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char strerror_r (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef strerror_r
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char strerror_r ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_strerror_r) || defined (__stub___strerror_r)
| choke me
| #else
| char (*f) () = strerror_r;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != strerror_r;
|   ;
|   return 0;
| }
configure:11123: result: no
configure:11133: checking whether strerror_r returns char *
configure:11218: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "strerror_r" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:11221: $? = 2
configure: program exited with status 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
|       extern char *strerror_r ();
| int
| main ()
| {
| char buf[100];
|         char x = *strerror_r (0, buf, sizeof buf);
|         exit (!isalpha (x));
|   ;
|   return 0;
| }
configure:11240: result: no
configure:11256: checking for mbstate_t
configure:11278: cc -mips3 -c -g  conftest.c >&5
configure:11284: $? = 0
configure:11288: test -z 
                         || test ! -s conftest.err
configure:11291: $? = 0
configure:11294: test -s conftest.o
configure:11297: $? = 0
configure:11308: result: yes
configure:11326: checking whether getcwd (NULL, 0) allocates memory for result
configure:11359: cc -mips3 -o conftest -g   conftest.c  >&5
configure:11362: $? = 0
configure:11364: ./conftest
configure:11367: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| /* end confdefs.h.  */
| 
| #      include <stdlib.h>
| #      include <unistd.h>
| #      ifndef getcwd
|        char *getcwd ();
| #      endif
|        int
|        main ()
|        {
|          if (chdir ("/") != 0)
|            exit (1);
|          else
|            {
|              char *f = getcwd (NULL, 0);
|              exit (! (f && f[0] == '/' && !f[1]));
|            }
|        }
configure:11381: result: no
configure:11385: checking whether getcwd is declared
configure:11409: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 141
  The variable "p" was declared but never referenced.

    char *p = (char *) getcwd;
          ^

configure:11415: $? = 0
configure:11419: test -z 
                         || test ! -s conftest.err
configure:11422: $? = 0
configure:11425: test -s conftest.o
configure:11428: $? = 0
configure:11439: result: yes
configure:11458: checking for d_ino member in directory struct
configure:11495: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1552 cc: WARNING File = conftest.c, Line = 124
  The variable "dp" is set but never used.

  struct dirent dp; dp.d_ino = 0;
                ^

configure:11501: $? = 0
configure:11505: test -z 
                         || test ! -s conftest.err
configure:11508: $? = 0
configure:11511: test -s conftest
configure:11514: $? = 0
configure:11528: result: yes
configure:11539: checking whether time.h and sys/time.h may both be included
configure:11564: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 112
  The controlling expression is constant.

  if ((struct tm *) 0)
      ^

configure:11570: $? = 0
configure:11574: test -z 
                         || test ! -s conftest.err
configure:11577: $? = 0
configure:11580: test -s conftest.o
configure:11583: $? = 0
configure:11594: result: yes
configure:11633: checking for struct timespec
configure:11665: cc -mips3 -c -g  conftest.c >&5
configure:11671: $? = 0
configure:11675: test -z 
                         || test ! -s conftest.err
configure:11678: $? = 0
configure:11681: test -s conftest.o
configure:11684: $? = 0
configure:11696: result: yes
configure:11710: checking whether nanosleep is declared
configure:11735: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 113
  The variable "p" was declared but never referenced.

    char *p = (char *) nanosleep;
          ^

configure:11741: $? = 0
configure:11745: test -z 
                         || test ! -s conftest.err
configure:11748: $? = 0
configure:11751: test -s conftest.o
configure:11754: $? = 0
configure:11765: result: yes
configure:11791: checking for compound literals
configure:11812: cc -mips3 -c -g  conftest.c >&5
cc-1523 cc: WARNING File = conftest.c, Line = 108
  An initialization with "{...}" is expected for an aggregate object.

  struct s { int i, j; }; struct s s = (struct s) { 1, 2 };
                                       ^

cc-1028 cc: ERROR File = conftest.c, Line = 108
  The expression used must have a constant value.

  struct s { int i, j; }; struct s s = (struct s) { 1, 2 };
                                       ^

cc-1174 cc: WARNING File = conftest.c, Line = 112
  The variable "t" was declared but never referenced.

  struct s t = (struct s) { 3, 4 };
           ^

1 error detected in the compilation of "conftest.c".
configure:11818: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| /* end confdefs.h.  */
| struct s { int i, j; }; struct s s = (struct s) { 1, 2 };
| int
| main ()
| {
| struct s t = (struct s) { 3, 4 };
|   ;
|   return 0;
| }
configure:11842: result: no
configure:11858: checking whether struct tm is in sys/time.h or time.h
configure:11881: cc -mips3 -c -g  conftest.c >&5
cc-1551 cc: WARNING File = conftest.c, Line = 114
  The variable "tp" is used before its value is set.

  struct tm *tp; tp->tm_sec;
                 ^

cc-1171 cc: WARNING File = conftest.c, Line = 114
  The indicated expression has no effect.

  struct tm *tp; tp->tm_sec;
                 ^

configure:11887: $? = 0
configure:11891: test -z 
                         || test ! -s conftest.err
configure:11894: $? = 0
configure:11897: test -s conftest.o
configure:11900: $? = 0
configure:11911: result: time.h
configure:11931: checking for library containing clock_gettime
configure:11961: cc -mips3 -o conftest -g   conftest.c  >&5
configure:11967: $? = 0
configure:11971: test -z 
                         || test ! -s conftest.err
configure:11974: $? = 0
configure:11977: test -s conftest
configure:11980: $? = 0
configure:12050: result: none required
configure:12064: checking for clock_gettime
configure:12121: cc -mips3 -o conftest -g   conftest.c  >&5
configure:12127: $? = 0
configure:12131: test -z 
                         || test ! -s conftest.err
configure:12134: $? = 0
configure:12137: test -s conftest
configure:12140: $? = 0
configure:12152: result: yes
configure:12064: checking for clock_settime
configure:12121: cc -mips3 -o conftest -g   conftest.c  >&5
configure:12127: $? = 0
configure:12131: test -z 
                         || test ! -s conftest.err
configure:12134: $? = 0
configure:12137: test -s conftest
configure:12140: $? = 0
configure:12152: result: yes
configure:12165: checking for struct tm.tm_gmtoff
configure:12189: cc -mips3 -c -g  conftest.c >&5
cc-1565 cc: ERROR File = conftest.c, Line = 116
  The struct "tm" has no field "tm_gmtoff".

  if (ac_aggr.tm_gmtoff)
              ^

1 error detected in the compilation of "conftest.c".
configure:12195: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| /* end confdefs.h.  */
| #include <time.h>
| 
| int
| main ()
| {
| static struct tm ac_aggr;
| if (ac_aggr.tm_gmtoff)
| return 0;
|   ;
|   return 0;
| }
configure:12234: cc -mips3 -c -g  conftest.c >&5
cc-1565 cc: ERROR File = conftest.c, Line = 116
  The struct "tm" has no field "tm_gmtoff".

  if (sizeof ac_aggr.tm_gmtoff)
                     ^

cc-1552 cc: WARNING File = conftest.c, Line = 115
  The variable "ac_aggr" is set but never used.

  static struct tm ac_aggr;
                   ^

1 error detected in the compilation of "conftest.c".
configure:12240: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| /* end confdefs.h.  */
| #include <time.h>
| 
| int
| main ()
| {
| static struct tm ac_aggr;
| if (sizeof ac_aggr.tm_gmtoff)
| return 0;
|   ;
|   return 0;
| }
configure:12266: result: no
configure:12278: checking whether getdelim is declared
configure:12302: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 148
  The identifier "getdelim" is undefined.

    char *p = (char *) getdelim;
                       ^

1 error detected in the compilation of "conftest.c".
configure:12308: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef getdelim
|   char *p = (char *) getdelim;
| #endif
| 
|   ;
|   return 0;
| }
configure:12332: result: no
configure:12358: checking whether getlogin is declared
configure:12382: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 149
  The variable "p" was declared but never referenced.

    char *p = (char *) getlogin;
          ^

configure:12388: $? = 0
configure:12392: test -z 
                         || test ! -s conftest.err
configure:12395: $? = 0
configure:12398: test -s conftest.o
configure:12401: $? = 0
configure:12412: result: yes
configure:12432: checking whether getlogin_r is declared
configure:12456: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 150
  The variable "p" was declared but never referenced.

    char *p = (char *) getlogin_r;
          ^

configure:12462: $? = 0
configure:12466: test -z 
                         || test ! -s conftest.err
configure:12469: $? = 0
configure:12472: test -s conftest.o
configure:12475: $? = 0
configure:12486: result: yes
configure:12506: checking for ssize_t
configure:12528: cc -mips3 -c -g  conftest.c >&5
configure:12534: $? = 0
configure:12538: test -z 
                         || test ! -s conftest.err
configure:12541: $? = 0
configure:12544: test -s conftest.o
configure:12547: $? = 0
configure:12558: result: yes
configure:12584: checking getopt.h usability
configure:12596: cc -mips3 -c -g  conftest.c >&5
configure:12602: $? = 0
configure:12606: test -z 
                         || test ! -s conftest.err
configure:12609: $? = 0
configure:12612: test -s conftest.o
configure:12615: $? = 0
configure:12625: result: yes
configure:12629: checking getopt.h presence
configure:12639: cc -mips3 -E  conftest.c
configure:12645: $? = 0
configure:12665: result: yes
configure:12700: checking for getopt.h
configure:12707: result: yes
configure:12729: checking for getopt_long_only
configure:12786: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "getopt_long_only" -- 1st referenced 
by conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:12792: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| /* end confdefs.h.  */
| /* Define getopt_long_only to an innocuous variant, in case <limits.h> 
declares getopt_long_only.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getopt_long_only innocuous_getopt_long_only
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getopt_long_only (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef getopt_long_only
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char getopt_long_only ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_getopt_long_only) || defined (__stub___getopt_long_only)
| choke me
| #else
| char (*f) () = getopt_long_only;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != getopt_long_only;
|   ;
|   return 0;
| }
configure:12817: result: no
configure:13018: checking whether getenv is declared
configure:13042: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 152
  The variable "p" was declared but never referenced.

    char *p = (char *) getenv;
          ^

configure:13048: $? = 0
configure:13052: test -z 
                         || test ! -s conftest.err
configure:13055: $? = 0
configure:13058: test -s conftest.o
configure:13061: $? = 0
configure:13072: result: yes
configure:13098: checking whether getpass is declared
configure:13122: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 153
  The variable "p" was declared but never referenced.

    char *p = (char *) getpass;
          ^

configure:13128: $? = 0
configure:13132: test -z 
                         || test ! -s conftest.err
configure:13135: $? = 0
configure:13138: test -s conftest.o
configure:13141: $? = 0
configure:13152: result: yes
configure:13202: checking whether fflush_unlocked is declared
configure:13226: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 154
  The identifier "fflush_unlocked" is undefined.

    char *p = (char *) fflush_unlocked;
                       ^

1 error detected in the compilation of "conftest.c".
configure:13232: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef fflush_unlocked
|   char *p = (char *) fflush_unlocked;
| #endif
| 
|   ;
|   return 0;
| }
configure:13256: result: no
configure:13276: checking whether flockfile is declared
configure:13300: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 155
  The variable "p" was declared but never referenced.

    char *p = (char *) flockfile;
          ^

configure:13306: $? = 0
configure:13310: test -z 
                         || test ! -s conftest.err
configure:13313: $? = 0
configure:13316: test -s conftest.o
configure:13319: $? = 0
configure:13330: result: yes
configure:13350: checking whether fputs_unlocked is declared
configure:13374: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 156
  The identifier "fputs_unlocked" is undefined.

    char *p = (char *) fputs_unlocked;
                       ^

1 error detected in the compilation of "conftest.c".
configure:13380: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef fputs_unlocked
|   char *p = (char *) fputs_unlocked;
| #endif
| 
|   ;
|   return 0;
| }
configure:13404: result: no
configure:13424: checking whether funlockfile is declared
configure:13448: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 157
  The variable "p" was declared but never referenced.

    char *p = (char *) funlockfile;
          ^

configure:13454: $? = 0
configure:13458: test -z 
                         || test ! -s conftest.err
configure:13461: $? = 0
configure:13464: test -s conftest.o
configure:13467: $? = 0
configure:13478: result: yes
configure:13498: checking whether putc_unlocked is declared
configure:13522: cc -mips3 -c -g  conftest.c >&5
configure:13528: $? = 0
configure:13532: test -z 
                         || test ! -s conftest.err
configure:13535: $? = 0
configure:13538: test -s conftest.o
configure:13541: $? = 0
configure:13552: result: yes
configure:13583: checking for d_type member in directory struct
configure:13620: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1565 cc: ERROR File = conftest.c, Line = 141
  The struct "dirent" has no field "d_type".

  struct dirent dp; dp.d_type = 0;
                       ^

1 error detected in the compilation of "conftest.c".
configure:13626: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #ifdef HAVE_DIRENT_H
| # include <dirent.h>
| #else /* not HAVE_DIRENT_H */
| # define dirent direct
| # ifdef HAVE_SYS_NDIR_H
| #  include <sys/ndir.h>
| # endif /* HAVE_SYS_NDIR_H */
| # ifdef HAVE_SYS_DIR_H
| #  include <sys/dir.h>
| # endif /* HAVE_SYS_DIR_H */
| # ifdef HAVE_NDIR_H
| #  include <ndir.h>
| # endif /* HAVE_NDIR_H */
| #endif /* HAVE_DIRENT_H */
| 
| int
| main ()
| {
| struct dirent dp; dp.d_type = 0;
|   ;
|   return 0;
| }
configure:13653: result: no
configure:13682: checking whether the preprocessor supports include_next
configure:13690: cc -mips3 -E  conftest.c
cc-1179 cc: ERROR File = conftest.c, Line = 1
  Source file "stddef.h" cannot be opened (no directories in search list).

  #include_next <stddef.h>
                          ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:13696: $? = 2
configure: failed program was:
| #include_next <stddef.h>
configure:13717: result: no
configure:13734: checking whether strtoimax is declared
configure:13758: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 159
  The variable "p" was declared but never referenced.

    char *p = (char *) strtoimax;
          ^

configure:13764: $? = 0
configure:13768: test -z 
                         || test ! -s conftest.err
configure:13771: $? = 0
configure:13774: test -s conftest.o
configure:13777: $? = 0
configure:13788: result: yes
configure:13808: checking whether strtoumax is declared
configure:13832: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 160
  The variable "p" was declared but never referenced.

    char *p = (char *) strtoumax;
          ^

configure:13838: $? = 0
configure:13842: test -z 
                         || test ! -s conftest.err
configure:13845: $? = 0
configure:13848: test -s conftest.o
configure:13851: $? = 0
configure:13862: result: yes
configure:13881: checking whether lstat dereferences a symlink specified with a 
trailing slash
configure:13912: cc -mips3 -o conftest -g   conftest.c  >&5
configure:13915: $? = 0
configure:13917: ./conftest
configure:13920: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| struct stat sbuf;
|      /* Linux will dereference the symlink and fail.
|       That is better in the sense that it means we will not
|       have to compile and use the lstat wrapper.  */
|      exit (lstat ("conftest.sym/", &sbuf) ? 0 : 1);
|   ;
|   return 0;
| }
configure:13941: result: no
configure:13981: checking whether mbrtowc and mbstate_t are properly declared
configure:14006: cc -mips3 -o conftest -g   conftest.c  >&5
configure:14012: $? = 0
configure:14016: test -z 
                         || test ! -s conftest.err
configure:14019: $? = 0
configure:14022: test -s conftest
configure:14025: $? = 0
configure:14037: result: yes
configure:14047: checking whether byte ordering is bigendian
configure:14074: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 131
  The identifier "bogus" is undefined.

   bogus endian macros
   ^

cc-1065 cc: ERROR File = conftest.c, Line = 131
  A semicolon is expected at this point.

   bogus endian macros
                ^

cc-1012 cc: WARNING File = conftest.c, Line = 134
  Parsing restarts here after previous syntax error.

    ;
    ^

cc-1174 cc: WARNING File = conftest.c, Line = 131
  The variable "endian" was declared but never referenced.

   bogus endian macros
         ^

2 errors detected in the compilation of "conftest.c".
configure:14080: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/param.h>
| 
| int
| main ()
| {
| #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
|  bogus endian macros
| #endif
| 
|   ;
|   return 0;
| }
configure:14234: cc -mips3 -o conftest -g   conftest.c  >&5
configure:14237: $? = 0
configure:14239: ./conftest
configure:14242: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| /* end confdefs.h.  */
| int
| main ()
| {
|   /* Are we little or big endian?  From Harbison&Steele.  */
|   union
|   {
|     long l;
|     char c[sizeof (long)];
|   } u;
|   u.l = 1;
|   exit (u.c[sizeof (long) - 1] == 1);
| }
configure:14258: result: yes
configure:14281: checking whether <limits.h> defines MIN and MAX
configure:14303: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 126
  The identifier "MIN" is undefined.

  int x = MIN (42, 17);
          ^

cc-1059 cc: ERROR File = conftest.c, Line = 126
  A function call is not allowed in a constant expression.

  int x = MIN (42, 17);
          ^

2 errors detected in the compilation of "conftest.c".
configure:14309: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| /* end confdefs.h.  */
| #include <limits.h>
| int x = MIN (42, 17);
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:14333: result: no
configure:14348: checking whether <sys/param.h> defines MIN and MAX
configure:14370: cc -mips3 -c -g  conftest.c >&5
configure:14376: $? = 0
configure:14380: test -z 
                         || test ! -s conftest.err
configure:14383: $? = 0
configure:14386: test -s conftest.o
configure:14389: $? = 0
configure:14400: result: yes
configure:14414: checking for inttypes.h
configure:14436: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 131
  The variable "i" was declared but never referenced.

  uintmax_t i = (uintmax_t) -1;
            ^

configure:14442: $? = 0
configure:14446: test -z 
                         || test ! -s conftest.err
configure:14449: $? = 0
configure:14452: test -s conftest.o
configure:14455: $? = 0
configure:14466: result: yes
configure:14477: checking for stdint.h
configure:14499: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1174 cc: WARNING File = conftest.c, Line = 132
  The variable "i" was declared but never referenced.

  uintmax_t i = (uintmax_t) -1;
            ^

configure:14505: $? = 0
configure:14509: test -z 
                         || test ! -s conftest.err
configure:14512: $? = 0
configure:14515: test -s conftest.o
configure:14518: $? = 0
configure:14529: result: yes
configure:14540: checking for unsigned long long
configure:14562: cc -mips3 -o conftest -g   conftest.c  >&5
configure:14568: $? = 0
configure:14572: test -z 
                         || test ! -s conftest.err
configure:14575: $? = 0
configure:14578: test -s conftest
configure:14581: $? = 0
configure:14593: result: yes
configure:14644: checking for working mktime
configure:14815: cc -mips3 -o conftest -g   conftest.c  >&5
configure:14818: $? = 0
configure:14820: ./conftest
configure:14823: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| /* end confdefs.h.  */
| /* Test program from Paul Eggert and Tony Leneis.  */
| #if TIME_WITH_SYS_TIME
| # include <sys/time.h>
| # include <time.h>
| #else
| # if HAVE_SYS_TIME_H
| #  include <sys/time.h>
| # else
| #  include <time.h>
| # endif
| #endif
| 
| #include <stdlib.h>
| #include <unistd.h>
| 
| #if !HAVE_ALARM
| # define alarm(X) /* empty */
| #endif
| 
| /* Work around redefinition to rpl_putenv by other config tests.  */
| #undef putenv
| 
| static time_t time_t_max;
| static time_t time_t_min;
| 
| /* Values we'll use to set the TZ environment variable.  */
| static char *tz_strings[] = {
|   (char *) 0, "TZ=GMT0", "TZ=JST-9",
|   "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00"
| };
| #define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0]))
| 
| /* Fail if mktime fails to convert a date in the spring-forward gap.
|    Based on a problem report from Andreas Jaeger.  */
| static void
| spring_forward_gap ()
| {
|   /* glibc (up to about 1998-10-07) failed this test. */
|   struct tm tm;
| 
|   /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0"
|      instead of "TZ=America/Vancouver" in order to detect the bug even
|      on systems that don't support the Olson extension, or don't have the
|      full zoneinfo tables installed.  */
|   putenv ("TZ=PST8PDT,M4.1.0,M10.5.0");
| 
|   tm.tm_year = 98;
|   tm.tm_mon = 3;
|   tm.tm_mday = 5;
|   tm.tm_hour = 2;
|   tm.tm_min = 0;
|   tm.tm_sec = 0;
|   tm.tm_isdst = -1;
|   if (mktime (&tm) == (time_t)-1)
|     exit (1);
| }
| 
| static void
| mktime_test1 (now)
|      time_t now;
| {
|   struct tm *lt;
|   if ((lt = localtime (&now)) && mktime (lt) != now)
|     exit (1);
| }
| 
| static void
| mktime_test (now)
|      time_t now;
| {
|   mktime_test1 (now);
|   mktime_test1 ((time_t) (time_t_max - now));
|   mktime_test1 ((time_t) (time_t_min + now));
| }
| 
| static void
| irix_6_4_bug ()
| {
|   /* Based on code from Ariel Faigon.  */
|   struct tm tm;
|   tm.tm_year = 96;
|   tm.tm_mon = 3;
|   tm.tm_mday = 0;
|   tm.tm_hour = 0;
|   tm.tm_min = 0;
|   tm.tm_sec = 0;
|   tm.tm_isdst = -1;
|   mktime (&tm);
|   if (tm.tm_mon != 2 || tm.tm_mday != 31)
|     exit (1);
| }
| 
| static void
| bigtime_test (j)
|      int j;
| {
|   struct tm tm;
|   time_t now;
|   tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = 
j;
|   now = mktime (&tm);
|   if (now != (time_t) -1)
|     {
|       struct tm *lt = localtime (&now);
|       if (! (lt
|            && lt->tm_year == tm.tm_year
|            && lt->tm_mon == tm.tm_mon
|            && lt->tm_mday == tm.tm_mday
|            && lt->tm_hour == tm.tm_hour
|            && lt->tm_min == tm.tm_min
|            && lt->tm_sec == tm.tm_sec
|            && lt->tm_yday == tm.tm_yday
|            && lt->tm_wday == tm.tm_wday
|            && ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst)
|                 == (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst))))
|       exit (1);
|     }
| }
| 
| int
| main ()
| {
|   time_t t, delta;
|   int i, j;
| 
|   /* This test makes some buggy mktime implementations loop.
|      Give up after 60 seconds; a mktime slower than that
|      isn't worth using anyway.  */
|   alarm (60);
| 
|   for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
|     continue;
|   time_t_max--;
|   if ((time_t) -1 < 0)
|     for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2)
|       continue;
|   delta = time_t_max / 997; /* a suitable prime number */
|   for (i = 0; i < N_STRINGS; i++)
|     {
|       if (tz_strings[i])
|       putenv (tz_strings[i]);
| 
|       for (t = 0; t <= time_t_max - delta; t += delta)
|       mktime_test (t);
|       mktime_test ((time_t) 1);
|       mktime_test ((time_t) (60 * 60));
|       mktime_test ((time_t) (60 * 60 * 24));
| 
|       for (j = 1; 0 < j; j *= 2)
|       bigtime_test (j);
|       bigtime_test (j - 1);
|     }
|   irix_6_4_bug ();
|   spring_forward_gap ();
|   exit (0);
| }
configure:14837: result: no
configure:14875: checking for stdlib.h
configure:14880: result: yes
configure:14875: checking for unistd.h
configure:14880: result: yes
configure:15024: checking for getpagesize
configure:15081: cc -mips3 -o conftest -g   conftest.c  >&5
configure:15087: $? = 0
configure:15091: test -z 
                         || test ! -s conftest.err
configure:15094: $? = 0
configure:15097: test -s conftest
configure:15100: $? = 0
configure:15112: result: yes
configure:15122: checking for working mmap
configure:15264: cc -mips3 -o conftest -g   conftest.c  >&5
configure:15267: $? = 0
configure:15269: ./conftest
configure:15272: $? = 0
configure:15286: result: yes
configure:15301: checking for MAP_ANONYMOUS
configure:15348: result: no
configure:15372: checking for nl_langinfo and CODESET
configure:15393: cc -mips3 -o conftest -g   conftest.c  >&5
configure:15399: $? = 0
configure:15403: test -z 
                         || test ! -s conftest.err
configure:15406: $? = 0
configure:15409: test -s conftest
configure:15412: $? = 0
configure:15425: result: yes
configure:15471: checking for size_t
configure:15495: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 172
  The controlling expression is constant.

  if ((size_t *) 0)
      ^

configure:15501: $? = 0
configure:15505: test -z 
                         || test ! -s conftest.err
configure:15508: $? = 0
configure:15511: test -s conftest.o
configure:15514: $? = 0
configure:15525: result: yes
configure:15538: checking for wchar_t
configure:15560: cc -mips3 -c -g  conftest.c >&5
configure:15566: $? = 0
configure:15570: test -z 
                         || test ! -s conftest.err
configure:15573: $? = 0
configure:15576: test -s conftest.o
configure:15579: $? = 0
configure:15590: result: yes
configure:15601: checking whether strdup is declared
configure:15625: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 174
  The variable "p" was declared but never referenced.

    char *p = (char *) strdup;
          ^

configure:15631: $? = 0
configure:15635: test -z 
                         || test ! -s conftest.err
configure:15638: $? = 0
configure:15641: test -s conftest.o
configure:15644: $? = 0
configure:15655: result: yes
configure:15678: checking for strftime
configure:15735: cc -mips3 -o conftest -g   conftest.c  >&5
configure:15741: $? = 0
configure:15745: test -z 
                         || test ! -s conftest.err
configure:15748: $? = 0
configure:15751: test -s conftest
configure:15754: $? = 0
configure:15766: result: yes
configure:15923: checking whether clearerr_unlocked is declared
configure:15947: cc -mips3 -c -g  conftest.c >&5
configure:15953: $? = 0
configure:15957: test -z 
                         || test ! -s conftest.err
configure:15960: $? = 0
configure:15963: test -s conftest.o
configure:15966: $? = 0
configure:15977: result: yes
configure:15997: checking whether feof_unlocked is declared
configure:16021: cc -mips3 -c -g  conftest.c >&5
configure:16027: $? = 0
configure:16031: test -z 
                         || test ! -s conftest.err
configure:16034: $? = 0
configure:16037: test -s conftest.o
configure:16040: $? = 0
configure:16051: result: yes
configure:16071: checking whether ferror_unlocked is declared
configure:16095: cc -mips3 -c -g  conftest.c >&5
configure:16101: $? = 0
configure:16105: test -z 
                         || test ! -s conftest.err
configure:16108: $? = 0
configure:16111: test -s conftest.o
configure:16114: $? = 0
configure:16125: result: yes
configure:16145: checking whether fgets_unlocked is declared
configure:16169: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 180
  The identifier "fgets_unlocked" is undefined.

    char *p = (char *) fgets_unlocked;
                       ^

1 error detected in the compilation of "conftest.c".
configure:16175: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef fgets_unlocked
|   char *p = (char *) fgets_unlocked;
| #endif
| 
|   ;
|   return 0;
| }
configure:16199: result: no
configure:16219: checking whether fputc_unlocked is declared
configure:16243: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 181
  The identifier "fputc_unlocked" is undefined.

    char *p = (char *) fputc_unlocked;
                       ^

1 error detected in the compilation of "conftest.c".
configure:16249: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef fputc_unlocked
|   char *p = (char *) fputc_unlocked;
| #endif
| 
|   ;
|   return 0;
| }
configure:16273: result: no
configure:16293: checking whether fread_unlocked is declared
configure:16317: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 182
  The identifier "fread_unlocked" is undefined.

    char *p = (char *) fread_unlocked;
                       ^

1 error detected in the compilation of "conftest.c".
configure:16323: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef fread_unlocked
|   char *p = (char *) fread_unlocked;
| #endif
| 
|   ;
|   return 0;
| }
configure:16347: result: no
configure:16367: checking whether fwrite_unlocked is declared
configure:16391: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 183
  The identifier "fwrite_unlocked" is undefined.

    char *p = (char *) fwrite_unlocked;
                       ^

1 error detected in the compilation of "conftest.c".
configure:16397: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef fwrite_unlocked
|   char *p = (char *) fwrite_unlocked;
| #endif
| 
|   ;
|   return 0;
| }
configure:16421: result: no
configure:16441: checking whether getc_unlocked is declared
configure:16465: cc -mips3 -c -g  conftest.c >&5
configure:16471: $? = 0
configure:16475: test -z 
                         || test ! -s conftest.err
configure:16478: $? = 0
configure:16481: test -s conftest.o
configure:16484: $? = 0
configure:16495: result: yes
configure:16515: checking whether getchar_unlocked is declared
configure:16539: cc -mips3 -c -g  conftest.c >&5
configure:16545: $? = 0
configure:16549: test -z 
                         || test ! -s conftest.err
configure:16552: $? = 0
configure:16555: test -s conftest.o
configure:16558: $? = 0
configure:16569: result: yes
configure:16589: checking whether putchar_unlocked is declared
configure:16613: cc -mips3 -c -g  conftest.c >&5
configure:16619: $? = 0
configure:16623: test -z 
                         || test ! -s conftest.err
configure:16626: $? = 0
configure:16629: test -s conftest.o
configure:16632: $? = 0
configure:16643: result: yes
configure:16664: checking for EOVERFLOW
configure:17081: result: yes
configure:17094: checking for signed
configure:17115: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 153
  The variable "x" was declared but never referenced.

  signed char x;
              ^

configure:17121: $? = 0
configure:17125: test -z 
                         || test ! -s conftest.err
configure:17128: $? = 0
configure:17131: test -s conftest.o
configure:17134: $? = 0
configure:17145: result: yes
configure:17156: checking for wint_t
configure:17178: cc -mips3 -c -g  conftest.c >&5
configure:17184: $? = 0
configure:17188: test -z 
                         || test ! -s conftest.err
configure:17191: $? = 0
configure:17194: test -s conftest.o
configure:17197: $? = 0
configure:17208: result: yes
configure:17221: checking for intmax_t
configure:17251: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1174 cc: WARNING File = conftest.c, Line = 163
  The variable "x" was declared but never referenced.

  intmax_t x = -1;
           ^

configure:17257: $? = 0
configure:17261: test -z 
                         || test ! -s conftest.err
configure:17264: $? = 0
configure:17267: test -s conftest.o
configure:17270: $? = 0
configure:17281: result: yes
configure:17370: checking for atexit
configure:17427: cc -mips3 -o conftest -g   conftest.c  >&5
configure:17433: $? = 0
configure:17437: test -z 
                         || test ! -s conftest.err
configure:17440: $? = 0
configure:17443: test -s conftest
configure:17446: $? = 0
configure:17458: result: yes
configure:17520: checking for sys/param.h
configure:17525: result: yes
configure:17670: checking for resolvepath
configure:17727: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "resolvepath" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:17733: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| /* end confdefs.h.  */
| /* Define resolvepath to an innocuous variant, in case <limits.h> declares 
resolvepath.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define resolvepath innocuous_resolvepath
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char resolvepath (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef resolvepath
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char resolvepath ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_resolvepath) || defined (__stub___resolvepath)
| choke me
| #else
| char (*f) () = resolvepath;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != resolvepath;
|   ;
|   return 0;
| }
configure:17758: result: no
configure:17670: checking for canonicalize_file_name
configure:17727: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "canonicalize_file_name" -- 1st 
referenced by conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:17733: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| /* end confdefs.h.  */
| /* Define canonicalize_file_name to an innocuous variant, in case <limits.h> 
declares canonicalize_file_name.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define canonicalize_file_name innocuous_canonicalize_file_name
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char canonicalize_file_name (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef canonicalize_file_name
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char canonicalize_file_name ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_canonicalize_file_name) || defined 
(__stub___canonicalize_file_name)
| choke me
| #else
| char (*f) () = canonicalize_file_name;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != canonicalize_file_name;
|   ;
|   return 0;
| }
configure:17758: result: no
configure:17771: checking whether this system has an arbitrary file name length 
limit
configure:17797: result: yes
configure:17838: checking for mempcpy
configure:17926: result: no
configure:17987: checking for openat
configure:18044: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "openat" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:18050: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| /* end confdefs.h.  */
| /* Define openat to an innocuous variant, in case <limits.h> declares openat.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define openat innocuous_openat
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char openat (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef openat
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char openat ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_openat) || defined (__stub___openat)
| choke me
| #else
| char (*f) () = openat;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != openat;
|   ;
|   return 0;
| }
configure:18075: result: no
configure:18125: checking for memrchr
configure:18182: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "memrchr" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:18188: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| /* end confdefs.h.  */
| /* Define memrchr to an innocuous variant, in case <limits.h> declares 
memrchr.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define memrchr innocuous_memrchr
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char memrchr (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef memrchr
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char memrchr ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_memrchr) || defined (__stub___memrchr)
| choke me
| #else
| char (*f) () = memrchr;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != memrchr;
|   ;
|   return 0;
| }
configure:18213: result: no
configure:18272: checking for dup2
configure:18329: cc -mips3 -o conftest -g   conftest.c  >&5
configure:18335: $? = 0
configure:18339: test -z 
                         || test ! -s conftest.err
configure:18342: $? = 0
configure:18345: test -s conftest
configure:18348: $? = 0
configure:18360: result: yes
configure:18441: checking for working POSIX fnmatch
configure:18483: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1209 cc: WARNING File = conftest.c, Line = 171
  The controlling expression is constant.

           (!((fnm ? fnm : fnmatch) ("a*", "", 0) == FNM_NOMATCH
               ^

configure:18486: $? = 0
configure:18488: ./conftest
configure:18491: $? = 0
configure:18505: result: yes
configure:18870: checking for stdio_ext.h
configure:18875: result: no
configure:19019: checking for __fpending
configure:19076: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "__fpending" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:19082: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| /* end confdefs.h.  */
| /* Define __fpending to an innocuous variant, in case <limits.h> declares 
__fpending.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define __fpending innocuous___fpending
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char __fpending (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef __fpending
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char __fpending ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub___fpending) || defined (__stub_____fpending)
| choke me
| #else
| char (*f) () = __fpending;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != __fpending;
|   ;
|   return 0;
| }
configure:19107: result: no
configure:19133: checking whether __fpending is declared
configure:19158: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 167
  The identifier "__fpending" is undefined.

    char *p = (char *) __fpending;
                       ^

1 error detected in the compilation of "conftest.c".
configure:19164: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| /* end confdefs.h.  */
| 
| #     include <stdio.h>
| #     if HAVE_STDIO_EXT_H
| #      include <stdio_ext.h>
| #     endif
| 
| 
| int
| main ()
| {
| #ifndef __fpending
|   char *p = (char *) __fpending;
| #endif
| 
|   ;
|   return 0;
| }
configure:19188: result: no
configure:19207: checking how to determine the number of pending output bytes 
on a stream
configure:19260: cc -mips3 -c -g  conftest.c >&5
cc-1565 cc: ERROR File = conftest.c, Line = 162
  The struct "__file_s" has no field "_IO_write_ptr".

  FILE *fp = stdin; (void) (fp->_IO_write_ptr - fp->_IO_write_base);
                                ^

cc-1565 cc: ERROR File = conftest.c, Line = 162
  The struct "__file_s" has no field "_IO_write_base".

  FILE *fp = stdin; (void) (fp->_IO_write_ptr - fp->_IO_write_base);
                                                    ^

2 errors detected in the compilation of "conftest.c".
configure:19266: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| /* end confdefs.h.  */
| #include <stdio.h>
| 
| int
| main ()
| {
| FILE *fp = stdin; (void) (fp->_IO_write_ptr - fp->_IO_write_base);
|   ;
|   return 0;
| }
configure:19260: cc -mips3 -c -g  conftest.c >&5
configure:19266: $? = 0
configure:19270: test -z 
                         || test ! -s conftest.err
configure:19273: $? = 0
configure:19276: test -s conftest.o
configure:19279: $? = 0
configure:19296: result: fp->_ptr - fp->_base
configure:19310: checking for ftruncate
configure:19367: cc -mips3 -o conftest -g   conftest.c  >&5
configure:19373: $? = 0
configure:19377: test -z 
                         || test ! -s conftest.err
configure:19380: $? = 0
configure:19383: test -s conftest
configure:19386: $? = 0
configure:19398: result: yes
configure:19526: checking how to do getaddrinfo
configure:19529: checking for library containing getaddrinfo
configure:19648: result: none required
configure:19659: checking for getaddrinfo
configure:19747: result: yes
configure:19840: checking for gai_strerror
configure:19928: result: yes
configure:19949: checking for library containing gethostbyname
configure:20068: result: none required
configure:20075: checking for library containing getservbyname
configure:20194: result: none required
configure:20216: checking whether getaddrinfo is declared
configure:20286: result: yes
configure:20302: checking whether freeaddrinfo is declared
configure:20372: result: yes
configure:20388: checking whether gai_strerror is declared
configure:20458: result: yes
configure:20476: checking for struct addrinfo
configure:20543: result: yes
configure:20822: checking for struct tm.tm_zone
configure:20848: cc -mips3 -c -g  conftest.c >&5
cc-1565 cc: ERROR File = conftest.c, Line = 174
  The struct "tm" has no field "tm_zone".

  if (ac_aggr.tm_zone)
              ^

1 error detected in the compilation of "conftest.c".
configure:20854: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <time.h>
| 
| 
| int
| main ()
| {
| static struct tm ac_aggr;
| if (ac_aggr.tm_zone)
| return 0;
|   ;
|   return 0;
| }
configure:20895: cc -mips3 -c -g  conftest.c >&5
cc-1565 cc: ERROR File = conftest.c, Line = 174
  The struct "tm" has no field "tm_zone".

  if (sizeof ac_aggr.tm_zone)
                     ^

cc-1552 cc: WARNING File = conftest.c, Line = 173
  The variable "ac_aggr" is set but never used.

  static struct tm ac_aggr;
                   ^

1 error detected in the compilation of "conftest.c".
configure:20901: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <time.h>
| 
| 
| int
| main ()
| {
| static struct tm ac_aggr;
| if (sizeof ac_aggr.tm_zone)
| return 0;
|   ;
|   return 0;
| }
configure:20927: result: no
configure:20945: checking for tzname
configure:20970: cc -mips3 -o conftest -g   conftest.c  >&5
configure:20976: $? = 0
configure:20980: test -z 
                         || test ! -s conftest.err
configure:20983: $? = 0
configure:20986: test -s conftest
configure:20989: $? = 0
configure:21001: result: yes
configure:21024: checking for getdelim
configure:21081: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "getdelim" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:21087: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| /* end confdefs.h.  */
| /* Define getdelim to an innocuous variant, in case <limits.h> declares 
getdelim.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getdelim innocuous_getdelim
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getdelim (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef getdelim
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char getdelim ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_getdelim) || defined (__stub___getdelim)
| choke me
| #else
| char (*f) () = getdelim;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != getdelim;
|   ;
|   return 0;
| }
configure:21112: result: no
configure:21147: checking for flockfile
configure:21204: cc -mips3 -o conftest -g   conftest.c  >&5
configure:21210: $? = 0
configure:21214: test -z 
                         || test ! -s conftest.err
configure:21217: $? = 0
configure:21220: test -s conftest
configure:21223: $? = 0
configure:21235: result: yes
configure:21147: checking for funlockfile
configure:21204: cc -mips3 -o conftest -g   conftest.c  >&5
configure:21210: $? = 0
configure:21214: test -z 
                         || test ! -s conftest.err
configure:21217: $? = 0
configure:21220: test -s conftest
configure:21223: $? = 0
configure:21235: result: yes
configure:21253: checking for gethostname
configure:21310: cc -mips3 -o conftest -g   conftest.c  >&5
configure:21316: $? = 0
configure:21320: test -z 
                         || test ! -s conftest.err
configure:21323: $? = 0
configure:21326: test -s conftest
configure:21329: $? = 0
configure:21341: result: yes
configure:21473: checking whether getline is declared
configure:21497: cc -mips3 -c -g  conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 208
  The identifier "getline" is undefined.

    char *p = (char *) getline;
                       ^

1 error detected in the compilation of "conftest.c".
configure:21503: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| #ifndef getline
|   char *p = (char *) getline;
| #endif
| 
|   ;
|   return 0;
| }
configure:21527: result: no
configure:21547: checking for getline
configure:21604: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "getline" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:21610: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| /* end confdefs.h.  */
| /* Define getline to an innocuous variant, in case <limits.h> declares 
getline.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getline innocuous_getline
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getline (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef getline
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char getline ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_getline) || defined (__stub___getline)
| choke me
| #else
| char (*f) () = getline;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != getline;
|   ;
|   return 0;
| }
configure:21635: result: no
configure:21728: checking for getdelim
configure:21816: result: no
configure:21851: checking for flockfile
configure:21939: result: yes
configure:21851: checking for funlockfile
configure:21939: result: yes
configure:21960: checking for getlogin_r
configure:22048: result: yes
configure:22194: checking OS.h usability
configure:22206: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 210
  The source file "OS.h" is unavailable.

  #include <OS.h>
                 ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:22212: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <OS.h>
configure:22235: result: no
configure:22239: checking OS.h presence
configure:22249: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 176
  The source file "OS.h" is unavailable.

  #include <OS.h>
                 ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:22255: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| /* end confdefs.h.  */
| #include <OS.h>
configure:22275: result: no
configure:22310: checking for OS.h
configure:22317: result: no
configure:22334: checking for getpagesize
configure:22422: result: yes
configure:22544: checking whether gettimeofday clobbers localtime buffer
configure:22593: cc -mips3 -o conftest -g   conftest.c  >&5
configure:22596: $? = 0
configure:22598: ./conftest
configure:22601: $? = 0
configure:22616: result: no
configure:22665: checking glob.h usability
configure:22677: cc -mips3 -c -g  conftest.c >&5
configure:22683: $? = 0
configure:22687: test -z 
                         || test ! -s conftest.err
configure:22690: $? = 0
configure:22693: test -s conftest.o
configure:22696: $? = 0
configure:22706: result: yes
configure:22710: checking glob.h presence
configure:22720: cc -mips3 -E  conftest.c
configure:22726: $? = 0
configure:22746: result: yes
configure:22781: checking for glob.h
configure:22788: result: yes
configure:22805: checking for GNU glob interface version 1
configure:22815: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 1
  The source file "gnu-versions.h" is unavailable.

  #include <gnu-versions.h>
                           ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:22821: $? = 2
configure: failed program was:
| #include <gnu-versions.h>
| char a[_GNU_GLOB_INTERFACE_VERSION == 1 ? 1 : -1];
configure:22845: result: no
configure:22960: checking full path to <inttypes.h>
configure:22985: result: /usr/include/inttypes.h
cc ERROR:  /usr/lib32/cmplrs/fec died due to signal 13
configure:23014: checking for stdlib.h
configure:23019: result: yes
configure:23159: checking for GNU libc compatible malloc
configure:23210: result: yes
configure:23294: checking for memchr
configure:23351: cc -mips3 -o conftest -g   conftest.c  >&5
configure:23357: $? = 0
configure:23361: test -z 
                         || test ! -s conftest.err
configure:23364: $? = 0
configure:23367: test -s conftest
configure:23370: $? = 0
configure:23382: result: yes
configure:23562: checking for memmove
configure:23619: cc -mips3 -o conftest -g   conftest.c  >&5
configure:23625: $? = 0
configure:23629: test -z 
                         || test ! -s conftest.err
configure:23632: $? = 0
configure:23635: test -s conftest
configure:23638: $? = 0
configure:23650: result: yes
configure:23685: checking for mempcpy
configure:23773: result: no
configure:23816: checking for memrchr
configure:23904: result: no
configure:23931: checking whether mkdir fails due to a trailing slash
configure:23961: cc -mips3 -o conftest -g   conftest.c  >&5
configure:23964: $? = 0
configure:23966: ./conftest
configure:23969: $? = 0
configure:23985: result: no
configure:24009: checking for mkstemp
configure:24066: cc -mips3 -o conftest -g   conftest.c  >&5
configure:24072: $? = 0
configure:24076: test -z 
                         || test ! -s conftest.err
configure:24079: $? = 0
configure:24082: test -s conftest
configure:24085: $? = 0
configure:24097: result: yes
configure:24120: checking for mkstemp limitations
configure:24156: cc -mips3 -o conftest -g   conftest.c  >&5
configure:24159: $? = 0
configure:24161: ./conftest
configure:24164: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| /* end confdefs.h.  */
| 
| #           include <stdlib.h>
| #           include <unistd.h>
|           int main ()
|           {
|             int i;
|             for (i = 0; i < 70; i++)
|               {
|                 char template[] = "conftest.mkstemp/coXXXXXX";
|                 int fd = mkstemp (template);
|                 if (fd == -1)
|                   exit (1);
|                 close (fd);
|               }
|             exit (0);
|           }
| 
configure:24181: result: yes
configure:24222: checking for __secure_getenv
configure:24279: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "__secure_getenv" -- 1st referenced 
by conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:24285: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| /* end confdefs.h.  */
| /* Define __secure_getenv to an innocuous variant, in case <limits.h> 
declares __secure_getenv.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define __secure_getenv innocuous___secure_getenv
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char __secure_getenv (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef __secure_getenv
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char __secure_getenv ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub___secure_getenv) || defined (__stub_____secure_getenv)
| choke me
| #else
| char (*f) () = __secure_getenv;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != __secure_getenv;
|   ;
|   return 0;
| }
configure:24310: result: no
configure:24222: checking for gettimeofday
configure:24310: result: yes
configure:24360: checking for library containing nanosleep
configure:24390: cc -mips3 -o conftest -g   conftest.c  >&5
configure:24396: $? = 0
configure:24400: test -z 
                         || test ! -s conftest.err
configure:24403: $? = 0
configure:24406: test -s conftest
configure:24409: $? = 0
configure:24479: result: none required
configure:24489: checking for nanosleep
configure:24524: cc -mips3 -o conftest -g   conftest.c  >&5
configure:24530: $? = 0
configure:24534: test -z 
                         || test ! -s conftest.err
configure:24537: $? = 0
configure:24540: test -s conftest
configure:24543: $? = 0
configure:24556: result: yes
configure:24627: checking for openat
configure:24715: result: no
configure:24821: checking for mbstate_t
configure:24873: result: yes
configure:24889: checking whether mbrtowc and mbstate_t are properly declared
configure:24945: result: yes
configure:24961: checking for readlink
configure:25018: cc -mips3 -o conftest -g   conftest.c  >&5
configure:25024: $? = 0
configure:25028: test -z 
                         || test ! -s conftest.err
configure:25031: $? = 0
configure:25034: test -s conftest
configure:25037: $? = 0
configure:25049: result: yes
configure:25078: checking for stdlib.h
configure:25083: result: yes
configure:25223: checking for GNU libc compatible realloc
configure:25252: cc -mips3 -o conftest -g   conftest.c  >&5
configure:25255: $? = 0
configure:25257: ./conftest
configure:25260: $? = 0
configure:25274: result: yes
configure:25323: checking for working re_compile_pattern
configure:25416: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1070 cc: ERROR File = conftest.c, Line = 234
  The indicated type is incomplete.

  static struct re_pattern_buffer regex;
                                  ^

cc-1070 cc: ERROR File = conftest.c, Line = 238
  The indicated type is incomplete.

            struct re_registers regs;
                                ^

cc-1020 cc: ERROR File = conftest.c, Line = 239
  The identifier "RE_SYNTAX_POSIX_EGREP" is undefined.

            re_set_syntax (RE_SYNTAX_POSIX_EGREP);
                           ^

cc-1515 cc: ERROR File = conftest.c, Line = 244
  A value of type "int" cannot be assigned to an entity of type "const char *".

            s = re_compile_pattern ("a[[:]:]]b\n", 11, &regex);
              ^

cc-1515 cc: ERROR File = conftest.c, Line = 251
  A value of type "int" cannot be assigned to an entity of type "const char *".

            s = re_compile_pattern ("{1", 2, &regex);
              ^

cc-1515 cc: ERROR File = conftest.c, Line = 259
  A value of type "int" cannot be assigned to an entity of type "const char *".

            s = re_compile_pattern ("[an\371]*n", 7, &regex);
              ^

cc-1515 cc: ERROR File = conftest.c, Line = 268
  A value of type "int" cannot be assigned to an entity of type "const char *".

            s = re_compile_pattern ("x", 1, &regex);
              ^

cc-1020 cc: ERROR File = conftest.c, Line = 280
  The identifier "RE_SYNTAX_EMACS" is undefined.

            re_set_syntax (RE_SYNTAX_EMACS | RE_ICASE);
                           ^

cc-1020 cc: ERROR File = conftest.c, Line = 280
  The identifier "RE_ICASE" is undefined.

            re_set_syntax (RE_SYNTAX_EMACS | RE_ICASE);
                                             ^

cc-1515 cc: ERROR File = conftest.c, Line = 281
  A value of type "int" cannot be assigned to an entity of type "const char *".

            s = re_compile_pattern ("x", 1, &regex);
              ^

10 errors detected in the compilation of "conftest.c".
configure:25419: $? = 2
configure: program exited with status 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
|          #include <limits.h>
|          #include <regex.h>
| 
| int
| main ()
| {
| static struct re_pattern_buffer regex;
|           unsigned char folded_chars[UCHAR_MAX + 1];
|           int i;
|           const char *s;
|           struct re_registers regs;
|           re_set_syntax (RE_SYNTAX_POSIX_EGREP);
|           memset (&regex, 0, sizeof (regex));
|           for (i = 0; i <= UCHAR_MAX; i++)
|             folded_chars[i] = i;
|           regex.translate = folded_chars;
|           s = re_compile_pattern ("a[[:]:]]b\n", 11, &regex);
|           /* This should fail with _Invalid character class name_ error.  */
|           if (!s)
|             exit (1);
| 
|           /* This should succeed, but does not for e.g. glibc-2.1.3.  */
|           memset (&regex, 0, sizeof (regex));
|           s = re_compile_pattern ("{1", 2, &regex);
| 
|           if (s)
|             exit (1);
| 
|           /* The following example is derived from a problem report
|              against gawk from Jorge Stolfi <address@hidden>.  */
|           memset (&regex, 0, sizeof (regex));
|           s = re_compile_pattern ("[an\371]*n", 7, &regex);
|           if (s)
|             exit (1);
| 
|           /* This should match, but does not for e.g. glibc-2.2.1.  */
|           if (re_match (&regex, "an", 2, 0, &regs) != 2)
|             exit (1);
| 
|           memset (&regex, 0, sizeof (regex));
|           s = re_compile_pattern ("x", 1, &regex);
|           if (s)
|             exit (1);
| 
|           /* The version of regex.c in e.g. GNU libc-2.2.93 did not
|              work with a negative RANGE argument.  */
|           if (re_search (&regex, "wxy", 3, 2, -2, &regs) != 1)
|             exit (1);
| 
|           /* The version of regex.c in older versions of gnulib
|              ignored RE_ICASE.  Detect that problem too.  */
|           memset (&regex, 0, sizeof (regex));
|           re_set_syntax (RE_SYNTAX_EMACS | RE_ICASE);
|           s = re_compile_pattern ("x", 1, &regex);
|           if (s)
|             exit (1);
| 
|           if (re_search (&regex, "WXY", 3, 0, 3, &regs) < 0)
|             exit (1);
| 
|           /* REG_STARTEND was added to glibc on 2004-01-15.
|              Reject older versions.  */
|           if (! REG_STARTEND)
|             exit (1);
| 
|           /* Reject hosts whose regoff_t values are too narrow.
|              These include glibc 2.3.5 on hosts with 64-bit ptrdiff_t
|              and 32-bit int.  */
|           if (sizeof (regoff_t) < sizeof (ptrdiff_t)
|               || sizeof (regoff_t) < sizeof (ssize_t))
|             exit (1);
| 
|           exit (0);
|   ;
|   return 0;
| }
configure:25438: result: no
configure:25580: checking whether rename is broken
configure:25611: cc -mips3 -o conftest -g   conftest.c  >&5
configure:25614: $? = 0
configure:25616: ./conftest
configure:25619: $? = 0
configure:25636: result: no
configure:25660: checking for C/C++ restrict keyword
configure:25709: result: __restrict
configure:25729: checking for rpmatch
configure:25786: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "rpmatch" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:25792: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| /* end confdefs.h.  */
| /* Define rpmatch to an innocuous variant, in case <limits.h> declares 
rpmatch.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define rpmatch innocuous_rpmatch
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char rpmatch (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef rpmatch
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char rpmatch ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_rpmatch) || defined (__stub___rpmatch)
| choke me
| #else
| char (*f) () = rpmatch;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != rpmatch;
|   ;
|   return 0;
| }
configure:25817: result: no
configure:25865: checking for setenv
configure:25922: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "setenv" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:25928: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| /* end confdefs.h.  */
| /* Define setenv to an innocuous variant, in case <limits.h> declares setenv.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define setenv innocuous_setenv
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char setenv (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef setenv
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char setenv ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_setenv) || defined (__stub___setenv)
| choke me
| #else
| char (*f) () = setenv;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != setenv;
|   ;
|   return 0;
| }
configure:25953: result: no
configure:25865: checking for unsetenv
configure:25922: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "unsetenv" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:25928: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| /* end confdefs.h.  */
| /* Define unsetenv to an innocuous variant, in case <limits.h> declares 
unsetenv.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define unsetenv innocuous_unsetenv
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char unsetenv (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef unsetenv
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char unsetenv ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_unsetenv) || defined (__stub___unsetenv)
| choke me
| #else
| char (*f) () = unsetenv;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != unsetenv;
|   ;
|   return 0;
| }
configure:25953: result: no
configure:25997: checking search.h usability
configure:26009: cc -mips3 -c -g  conftest.c >&5
configure:26015: $? = 0
configure:26019: test -z 
                         || test ! -s conftest.err
configure:26022: $? = 0
configure:26025: test -s conftest.o
configure:26028: $? = 0
configure:26038: result: yes
configure:26042: checking search.h presence
configure:26052: cc -mips3 -E  conftest.c
configure:26058: $? = 0
configure:26078: result: yes
configure:26113: checking for search.h
configure:26120: result: yes
configure:26137: checking for tsearch
configure:26194: cc -mips3 -o conftest -g   conftest.c  >&5
configure:26200: $? = 0
configure:26204: test -z 
                         || test ! -s conftest.err
configure:26207: $? = 0
configure:26210: test -s conftest
configure:26213: $? = 0
configure:26225: result: yes
configure:26237: checking if errno is properly declared
configure:26260: cc -mips3 -c -g  conftest.c >&5
cc-1143 cc: ERROR File = conftest.c, Line = 214
  Declaration is incompatible with "int errno" (declared at line 60 of
          "/usr/include/internal/errno_core.h").

        extern struct { int foo; } errno;
                                   ^

1 error detected in the compilation of "conftest.c".
configure:26266: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| /* end confdefs.h.  */
| #include <errno.h>
|       extern struct { int foo; } errno;
| int
| main ()
| {
| errno.foo = 1;
|   ;
|   return 0;
| }
configure:26291: result: yes
configure:26303: checking if environ is properly declared
configure:26326: cc -mips3 -c -g  conftest.c >&5
configure:26332: $? = 0
configure:26336: test -z 
                         || test ! -s conftest.err
configure:26339: $? = 0
configure:26342: test -s conftest.o
configure:26345: $? = 0
configure:26357: result: no
configure:26380: checking if errno is properly declared
configure:26434: result: yes
configure:26446: checking if environ is properly declared
configure:26500: result: no
configure:26590: checking for stdint.h
configure:26595: result: yes
configure:26735: checking for SIZE_MAX
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

configure:27072: cc -mips3 -o conftest -g   conftest.c  >&5
configure:27075: $? = 0
configure:27077: ./conftest
configure:27080: $? = 0
configure:27400: cc -mips3 -o conftest -g   conftest.c  >&5
configure:27403: $? = 0
configure:27405: ./conftest
configure:27408: $? = 0
configure:27444: cc -mips3 -c -g  conftest.c >&5
cc-1143 cc: ERROR File = conftest.c, Line = 218
  Declaration is incompatible with "size_t foo" (declared at line 217).

            extern unsigned long foo;
                                 ^

1 error detected in the compilation of "conftest.c".
configure:27450: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| /* end confdefs.h.  */
| #include <stddef.h>
|           extern size_t foo;
|           extern unsigned long foo;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:27482: result: (((1U << 31) - 1) * 2 + 1)
configure:27492: checking for socklen_t
configure:27522: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 227
  The controlling expression is constant.

  if ((socklen_t *) 0)
      ^

configure:27528: $? = 0
configure:27532: test -z 
                         || test ! -s conftest.err
configure:27535: $? = 0
configure:27538: test -s conftest.o
configure:27541: $? = 0
configure:27552: result: yes
configure:27637: checking for ssize_t
configure:27689: result: yes
configure:27725: checking for stdint.h
configure:27780: result: yes
configure:27791: checking full path to <stdint.h>
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

configure:27816: result: /usr/include/stdint.h
configure:27832: checking for inttypes.h
configure:27887: result: yes
configure:27898: checking full path to <inttypes.h>
configure:27923: result: /usr/include/inttypes.h
configure:27952: checking sys/inttypes.h usability
configure:27964: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 255
  The source file "sys/inttypes.h" is unavailable.

  #include <sys/inttypes.h>
                           ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:27970: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/inttypes.h>
configure:27993: result: no
configure:27997: checking sys/inttypes.h presence
configure:28007: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 221
  The source file "sys/inttypes.h" is unavailable.

  #include <sys/inttypes.h>
                           ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:28013: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <sys/inttypes.h>
configure:28033: result: no
configure:28068: checking for sys/inttypes.h
configure:28075: result: no
configure:28109: checking sys/bitypes.h usability
configure:28121: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 255
  The source file "sys/bitypes.h" is unavailable.

  #include <sys/bitypes.h>
                          ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:28127: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/bitypes.h>
configure:28150: result: no
configure:28154: checking sys/bitypes.h presence
configure:28164: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 221
  The source file "sys/bitypes.h" is unavailable.

  #include <sys/bitypes.h>
                          ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:28170: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <sys/bitypes.h>
configure:28190: result: no
configure:28225: checking for sys/bitypes.h
configure:28232: result: no
configure:28252: checking whether 'long' is 64 bit wide
configure:28278: cc -mips3 -c -g  conftest.c >&5
cc-1094 cc: ERROR File = conftest.c, Line = 224
  The constant array dimension size is not a positive integral type.

  typedef int array [2 * (POW63 != 0 && POW64 == 0) - 1];
                     ^

1 error detected in the compilation of "conftest.c".
configure:28284: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| #define POW63  ((((((long) 1 << 15) << 15) << 15) << 15) << 3)
| #define POW64  ((((((long) 1 << 15) << 15) << 15) << 15) << 4)
| typedef int array [2 * (POW63 != 0 && POW64 == 0) - 1];
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28308: result: no
configure:28317: checking whether 'long long' is 64 bit wide
configure:28343: cc -mips3 -c -g  conftest.c >&5
configure:28349: $? = 0
configure:28353: test -z 
                         || test ! -s conftest.err
configure:28356: $? = 0
configure:28359: test -s conftest.o
configure:28362: $? = 0
configure:28373: result: yes
configure:28444: checking for int8_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int8_t" is undefined.

  int8_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int8_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int16_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int16_t" is undefined.

  int16_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int16_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int32_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int32_t" is undefined.

  int32_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int32_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int64_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int64_t" is undefined.

  int64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint8_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint8_t" is undefined.

  uint8_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint8_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint16_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint16_t" is undefined.

  uint16_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint16_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint32_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint32_t" is undefined.

  uint32_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint32_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint64_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint64_t" is undefined.

  uint64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_least8_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_least8_t" is undefined.

  int_least8_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_least8_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_least16_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_least16_t" is undefined.

  int_least16_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_least16_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_least32_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_least32_t" is undefined.

  int_least32_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_least32_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_least64_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_least64_t" is undefined.

  int_least64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_least64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_least8_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_least8_t" is undefined.

  uint_least8_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_least8_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_least16_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_least16_t" is undefined.

  uint_least16_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_least16_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_least32_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_least32_t" is undefined.

  uint_least32_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_least32_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_least64_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_least64_t" is undefined.

  uint_least64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_least64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_fast8_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_fast8_t" is undefined.

  int_fast8_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_fast8_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_fast16_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_fast16_t" is undefined.

  int_fast16_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_fast16_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_fast32_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_fast32_t" is undefined.

  int_fast32_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_fast32_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for int_fast64_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "int_fast64_t" is undefined.

  int_fast64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| int_fast64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_fast8_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_fast8_t" is undefined.

  uint_fast8_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_fast8_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_fast16_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_fast16_t" is undefined.

  uint_fast16_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_fast16_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_fast32_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_fast32_t" is undefined.

  uint_fast32_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_fast32_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uint_fast64_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uint_fast64_t" is undefined.

  uint_fast64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uint_fast64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for intptr_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "intptr_t" is undefined.

  intptr_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| intptr_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uintptr_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uintptr_t" is undefined.

  uintptr_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uintptr_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for intmax_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "intmax_t" is undefined.

  intmax_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| intmax_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28444: checking for uintmax_t
configure:28466: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 247
  The identifier "uintmax_t" is undefined.

  uintmax_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28472: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| /* Get those types that are already defined in other system include files.  */
| #if defined(__FreeBSD__)
| # include <sys/inttypes.h>
| #endif
| #if defined(__OpenBSD__)
| # include <sys/types.h>
| # if HAVE_INTTYPES_H
| #  include FULL_PATH_INTTYPES_H
| # endif
| #endif
| #if defined(__linux__) && HAVE_SYS_BITYPES_H
| # include <sys/bitypes.h>
| #endif
| #if defined(__sun) && HAVE_SYS_INTTYPES_H
| # include <sys/inttypes.h>
| #endif
| #if (defined(__hpux) || defined(_AIX)) && HAVE_INTTYPES_H
| # include FULL_PATH_INTTYPES_H
| #endif
| #if HAVE_STDINT_H
| # include FULL_PATH_STDINT_H
| #endif
| 
| /* Test if the type exists.  */
| uintmax_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28496: result: no
configure:28525: checking for int64_t
configure:28547: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 224
  The identifier "int64_t" is undefined.

  int64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28553: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdint.h>
| /* Test if the type exists.  */
| int64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28577: result: no
configure:28525: checking for uint64_t
configure:28547: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 224
  The identifier "uint64_t" is undefined.

  uint64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28553: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdint.h>
| /* Test if the type exists.  */
| uint64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28577: result: no
configure:28525: checking for int_least64_t
configure:28547: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 224
  The identifier "int_least64_t" is undefined.

  int_least64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28553: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdint.h>
| /* Test if the type exists.  */
| int_least64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28577: result: no
configure:28525: checking for uint_least64_t
configure:28547: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 224
  The identifier "uint_least64_t" is undefined.

  uint_least64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28553: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdint.h>
| /* Test if the type exists.  */
| uint_least64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28577: result: no
configure:28525: checking for int_fast64_t
configure:28547: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 224
  The identifier "int_fast64_t" is undefined.

  int_fast64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28553: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdint.h>
| /* Test if the type exists.  */
| int_fast64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28577: result: no
configure:28525: checking for uint_fast64_t
configure:28547: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 224
  The identifier "uint_fast64_t" is undefined.

  uint_fast64_t x = 17;
  ^

1 error detected in the compilation of "conftest.c".
configure:28553: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| #include <stdint.h>
| /* Test if the type exists.  */
| uint_fast64_t x = 17;
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:28577: result: no
configure:28652: cc -mips3 -c -g  conftest.c >&5
cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5
  #error directive:  This header file is to be used only for c99 mode
          compilations

  #error This header file is to be used only for c99 mode compilations
   ^

cc-1020 cc: ERROR File = conftest.c, Line = 225
  The identifier "int8_t" is undefined.

  int8_t a1 = INT8_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 225
  The identifier "INT8_C" is undefined.

  int8_t a1 = INT8_C (17);
              ^

cc-1059 cc: ERROR File = conftest.c, Line = 225
  A function call is not allowed in a constant expression.

  int8_t a1 = INT8_C (17);
              ^

cc-1020 cc: ERROR File = conftest.c, Line = 226
  The identifier "int16_t" is undefined.

  int16_t a2 = INT16_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 226
  The identifier "INT16_C" is undefined.

  int16_t a2 = INT16_C (17);
               ^

cc-1059 cc: ERROR File = conftest.c, Line = 226
  A function call is not allowed in a constant expression.

  int16_t a2 = INT16_C (17);
               ^

cc-1020 cc: ERROR File = conftest.c, Line = 227
  The identifier "int32_t" is undefined.

  int32_t a3 = INT32_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 227
  The identifier "INT32_C" is undefined.

  int32_t a3 = INT32_C (17);
               ^

cc-1059 cc: ERROR File = conftest.c, Line = 227
  A function call is not allowed in a constant expression.

  int32_t a3 = INT32_C (17);
               ^

cc-1020 cc: ERROR File = conftest.c, Line = 231
  The identifier "uint8_t" is undefined.

  uint8_t b1 = UINT8_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 231
  The identifier "UINT8_C" is undefined.

  uint8_t b1 = UINT8_C (17);
               ^

cc-1059 cc: ERROR File = conftest.c, Line = 231
  A function call is not allowed in a constant expression.

  uint8_t b1 = UINT8_C (17);
               ^

cc-1020 cc: ERROR File = conftest.c, Line = 232
  The identifier "uint16_t" is undefined.

  uint16_t b2 = UINT16_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 232
  The identifier "UINT16_C" is undefined.

  uint16_t b2 = UINT16_C (17);
                ^

cc-1059 cc: ERROR File = conftest.c, Line = 232
  A function call is not allowed in a constant expression.

  uint16_t b2 = UINT16_C (17);
                ^

cc-1020 cc: ERROR File = conftest.c, Line = 233
  The identifier "uint32_t" is undefined.

  uint32_t b3 = UINT32_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 233
  The identifier "UINT32_C" is undefined.

  uint32_t b3 = UINT32_C (17);
                ^

cc-1059 cc: ERROR File = conftest.c, Line = 233
  A function call is not allowed in a constant expression.

  uint32_t b3 = UINT32_C (17);
                ^

cc-1020 cc: ERROR File = conftest.c, Line = 237
  The identifier "int_least8_t" is undefined.

  int_least8_t c1 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 238
  The identifier "int_least16_t" is undefined.

  int_least16_t c2 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 239
  The identifier "int_least32_t" is undefined.

  int_least32_t c3 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 243
  The identifier "uint_least8_t" is undefined.

  uint_least8_t d1 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 244
  The identifier "uint_least16_t" is undefined.

  uint_least16_t d2 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 245
  The identifier "uint_least32_t" is undefined.

  uint_least32_t d3 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 249
  The identifier "int_fast8_t" is undefined.

  int_fast8_t e1 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 250
  The identifier "int_fast16_t" is undefined.

  int_fast16_t e2 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 251
  The identifier "int_fast32_t" is undefined.

  int_fast32_t e3 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 255
  The identifier "uint_fast8_t" is undefined.

  uint_fast8_t f1 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 256
  The identifier "uint_fast16_t" is undefined.

  uint_fast16_t f2 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 257
  The identifier "uint_fast32_t" is undefined.

  uint_fast32_t f3 = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 261
  The identifier "intptr_t" is undefined.

  intptr_t g = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 262
  The identifier "uintptr_t" is undefined.

  uintptr_t h = 17;
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 263
  The identifier "intmax_t" is undefined.

  intmax_t i = INTMAX_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 263
  The identifier "INTMAX_C" is undefined.

  intmax_t i = INTMAX_C (17);
               ^

cc-1059 cc: ERROR File = conftest.c, Line = 263
  A function call is not allowed in a constant expression.

  intmax_t i = INTMAX_C (17);
               ^

cc-1020 cc: ERROR File = conftest.c, Line = 264
  The identifier "uintmax_t" is undefined.

  uintmax_t j = UINTMAX_C (17);
  ^

cc-1020 cc: ERROR File = conftest.c, Line = 264
  The identifier "UINTMAX_C" is undefined.

  uintmax_t j = UINTMAX_C (17);
                ^

cc-1059 cc: ERROR File = conftest.c, Line = 264
  A function call is not allowed in a constant expression.

  uintmax_t j = UINTMAX_C (17);
                ^

38 errors detected in the compilation of "conftest.c".
configure:28658: $? = 2
configure: failed program was:
| 
|       /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| /* end confdefs.h.  */
| 
| #define __STDC_LIMIT_MACROS 1 /* to make it work also in C++ mode */
| #include <stdint.h>
| int8_t a1 = INT8_C (17);
| int16_t a2 = INT16_C (17);
| int32_t a3 = INT32_C (17);
| #if HAVE_INT64_T_IN_STDINT_H
| int64_t a4 = INT64_C (17);
| #endif
| uint8_t b1 = UINT8_C (17);
| uint16_t b2 = UINT16_C (17);
| uint32_t b3 = UINT32_C (17);
| #if HAVE_UINT64_T_IN_STDINT_H
| uint64_t b4 = UINT64_C (17);
| #endif
| int_least8_t c1 = 17;
| int_least16_t c2 = 17;
| int_least32_t c3 = 17;
| #if HAVE_INT_LEAST64_T_IN_STDINT_H
| int_least64_t c4 = 17;
| #endif
| uint_least8_t d1 = 17;
| uint_least16_t d2 = 17;
| uint_least32_t d3 = 17;
| #if HAVE_UINT_LEAST64_T_IN_STDINT_H
| uint_least64_t d4 = 17;
| #endif
| int_fast8_t e1 = 17;
| int_fast16_t e2 = 17;
| int_fast32_t e3 = 17;
| #if HAVE_INT_FAST64_T_IN_STDINT_H
| int_fast64_t e4 = 17;
| #endif
| uint_fast8_t f1 = 17;
| uint_fast16_t f2 = 17;
| uint_fast32_t f3 = 17;
| #if HAVE_UINT_FAST64_T_IN_STDINT_H
| uint_fast64_t f4 = 17;
| #endif
| intptr_t g = 17;
| uintptr_t h = 17;
| intmax_t i = INTMAX_C (17);
| uintmax_t j = UINTMAX_C (17);
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:31811: checking for bit size of unsigned_int
configure:32133: cc -mips3 -o conftest -g   conftest.c  >&5
configure:32136: $? = 0
configure:32138: ./conftest
configure:32141: $? = 0
configure:32159: result: 32
configure:31811: checking for bit size of long
configure:32133: cc -mips3 -o conftest -g   conftest.c  >&5
configure:32136: $? = 0
configure:32138: ./conftest
configure:32141: $? = 0
configure:32159: result: 32
configure:31811: checking for bit size of unsigned_long
configure:32133: cc -mips3 -o conftest -g   conftest.c  >&5
configure:32136: $? = 0
configure:32138: ./conftest
configure:32141: $? = 0
configure:32159: result: 32
configure:32173: checking for ptrdiff_t
configure:32197: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 261
  The controlling expression is constant.

  if ((ptrdiff_t *) 0)
      ^

configure:32203: $? = 0
configure:32207: test -z 
                         || test ! -s conftest.err
configure:32210: $? = 0
configure:32213: test -s conftest.o
configure:32216: $? = 0
configure:32227: result: yes
configure:32247: checking for bit size of ptrdiff_t
configure:32563: cc -mips3 -o conftest -g   conftest.c  >&5
configure:32566: $? = 0
configure:32568: ./conftest
configure:32571: $? = 0
configure:32589: result: 32
configure:32247: checking for bit size of size_t
configure:32563: cc -mips3 -o conftest -g   conftest.c  >&5
configure:32566: $? = 0
configure:32568: ./conftest
configure:32571: $? = 0
configure:32589: result: 32
configure:32621: cc -mips3 -c -g  conftest.c >&5
cc-1143 cc: ERROR File = conftest.c, Line = 229
  Declaration is incompatible with "ptrdiff_t foo" (declared at line 228).

      extern long foo;
                  ^

1 error detected in the compilation of "conftest.c".
configure:32627: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| /* end confdefs.h.  */
| #include <stddef.h>
|     extern ptrdiff_t foo;
|     extern long foo;
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:32671: cc -mips3 -c -g  conftest.c >&5
cc-1143 cc: ERROR File = conftest.c, Line = 229
  Declaration is incompatible with "size_t foo" (declared at line 228).

      extern unsigned long foo;
                           ^

1 error detected in the compilation of "conftest.c".
configure:32677: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| /* end confdefs.h.  */
| #include <stddef.h>
|     extern size_t foo;
|     extern unsigned long foo;
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:32703: checking for sig_atomic_t
configure:32728: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 232
  The controlling expression is constant.

  if ((sig_atomic_t *) 0)
      ^

configure:32734: $? = 0
configure:32738: test -z 
                         || test ! -s conftest.err
configure:32741: $? = 0
configure:32744: test -s conftest.o
configure:32747: $? = 0
configure:32758: result: yes
configure:32775: checking for bit size of sig_atomic_t
configure:33091: cc -mips3 -o conftest -g   conftest.c  >&5
configure:33094: $? = 0
configure:33096: ./conftest
configure:33099: $? = 0
configure:33117: result: 32
configure:33134: checking whether sig_atomic_t is signed
configure:33157: cc -mips3 -c -g  conftest.c >&5
configure:33163: $? = 0
configure:33167: test -z 
                         || test ! -s conftest.err
configure:33170: $? = 0
configure:33173: test -s conftest.o
configure:33176: $? = 0
configure:33189: result: yes
configure:33225: cc -mips3 -c -g  conftest.c >&5
cc-1143 cc: ERROR File = conftest.c, Line = 232
  Declaration is incompatible with "sig_atomic_t foo" (declared at line 231).

      extern long foo;
                  ^

1 error detected in the compilation of "conftest.c".
configure:33231: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| /* end confdefs.h.  */
| #include <signal.h>
|     extern sig_atomic_t foo;
|     extern long foo;
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:33316: checking for bit size of wchar_t
configure:33632: cc -mips3 -o conftest -g   conftest.c  >&5
configure:33635: $? = 0
configure:33637: ./conftest
configure:33640: $? = 0
configure:33658: result: 32
configure:33675: checking whether wchar_t is signed
configure:33698: cc -mips3 -c -g  conftest.c >&5
configure:33704: $? = 0
configure:33708: test -z 
                         || test ! -s conftest.err
configure:33711: $? = 0
configure:33714: test -s conftest.o
configure:33717: $? = 0
configure:33730: result: yes
configure:33766: cc -mips3 -c -g  conftest.c >&5
configure:33772: $? = 0
configure:33776: test -z 
                         || test ! -s conftest.err
configure:33779: $? = 0
configure:33782: test -s conftest.o
configure:33785: $? = 0
configure:33850: checking for wint_t
configure:33878: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 240
  The controlling expression is constant.

  if ((wint_t *) 0)
      ^

configure:33884: $? = 0
configure:33888: test -z 
                         || test ! -s conftest.err
configure:33891: $? = 0
configure:33894: test -s conftest.o
configure:33897: $? = 0
configure:33908: result: yes
configure:33925: checking for bit size of wint_t
configure:34259: cc -mips3 -o conftest -g   conftest.c  >&5
configure:34262: $? = 0
configure:34264: ./conftest
configure:34267: $? = 0
configure:34285: result: 32
configure:34302: checking whether wint_t is signed
configure:34328: cc -mips3 -c -g  conftest.c >&5
configure:34334: $? = 0
configure:34338: test -z 
                         || test ! -s conftest.err
configure:34341: $? = 0
configure:34344: test -s conftest.o
configure:34347: $? = 0
configure:34360: result: yes
configure:34399: cc -mips3 -c -g  conftest.c >&5
configure:34405: $? = 0
configure:34409: test -z 
                         || test ! -s conftest.err
configure:34412: $? = 0
configure:34415: test -s conftest.o
configure:34418: $? = 0
configure:34515: checking for strncasecmp
configure:34572: cc -mips3 -o conftest -g   conftest.c  >&5
configure:34578: $? = 0
configure:34582: test -z 
                         || test ! -s conftest.err
configure:34585: $? = 0
configure:34588: test -s conftest
configure:34591: $? = 0
configure:34603: result: yes
configure:34637: checking for strdup
configure:34694: cc -mips3 -o conftest -g   conftest.c  >&5
configure:34700: $? = 0
configure:34704: test -z 
                         || test ! -s conftest.err
configure:34707: $? = 0
configure:34710: test -s conftest
configure:34713: $? = 0
configure:34725: result: yes
configure:34759: checking for strerror
configure:34816: cc -mips3 -o conftest -g   conftest.c  >&5
configure:34822: $? = 0
configure:34826: test -z 
                         || test ! -s conftest.err
configure:34829: $? = 0
configure:34832: test -s conftest
configure:34835: $? = 0
configure:34847: result: yes
configure:34892: checking whether <inttypes.h> defines strtoimax as a macro
configure:34917: result: no
configure:34925: checking for strtoimax
configure:34982: cc -mips3 -o conftest -g   conftest.c  >&5
configure:34988: $? = 0
configure:34992: test -z 
                         || test ! -s conftest.err
configure:34995: $? = 0
configure:34998: test -s conftest
configure:35001: $? = 0
configure:35013: result: yes
configure:35138: checking for strtol
configure:35195: cc -mips3 -o conftest -g   conftest.c  >&5
configure:35201: $? = 0
configure:35205: test -z 
                         || test ! -s conftest.err
configure:35208: $? = 0
configure:35211: test -s conftest
configure:35214: $? = 0
configure:35226: result: yes
configure:35266: checking for strtoll
configure:35323: cc -mips3 -o conftest -g   conftest.c  >&5
configure:35329: $? = 0
configure:35333: test -z 
                         || test ! -s conftest.err
configure:35336: $? = 0
configure:35339: test -s conftest
configure:35342: $? = 0
configure:35354: result: yes
configure:35386: checking for strtoul
configure:35443: cc -mips3 -o conftest -g   conftest.c  >&5
configure:35449: $? = 0
configure:35453: test -z 
                         || test ! -s conftest.err
configure:35456: $? = 0
configure:35459: test -s conftest
configure:35462: $? = 0
configure:35474: result: yes
configure:35516: checking for strtoull
configure:35573: cc -mips3 -o conftest -g   conftest.c  >&5
configure:35579: $? = 0
configure:35583: test -z 
                         || test ! -s conftest.err
configure:35586: $? = 0
configure:35589: test -s conftest
configure:35592: $? = 0
configure:35604: result: yes
configure:35635: checking whether <inttypes.h> defines strtoumax as a macro
configure:35660: result: no
configure:35668: checking for strtoumax
configure:35725: cc -mips3 -o conftest -g   conftest.c  >&5
configure:35731: $? = 0
configure:35735: test -z 
                         || test ! -s conftest.err
configure:35738: $? = 0
configure:35741: test -s conftest
configure:35744: $? = 0
configure:35756: result: yes
configure:36047: checking whether localtime_r is compatible with its POSIX 
signature
configure:36071: cc -mips3 -c -g  conftest.c >&5
cc-1174 cc: WARNING File = conftest.c, Line = 252
  The variable "ptr" was declared but never referenced.

        struct tm * (*ptr) (time_t const *, struct tm *) = localtime_r;
                      ^

configure:36077: $? = 0
configure:36081: test -z 
                         || test ! -s conftest.err
configure:36084: $? = 0
configure:36087: test -s conftest.o
configure:36090: $? = 0
configure:36101: result: yes
configure:36146: checking for struct timespec
configure:36209: result: yes
configure:36223: checking whether nanosleep is declared
configure:36278: result: yes
configure:36299: checking whether tzset clobbers localtime buffer
configure:36347: cc -mips3 -o conftest -g   conftest.c  >&5
configure:36350: $? = 0
configure:36352: ./conftest
configure:36355: $? = 0
configure:36369: result: no
configure:36418: checking for unistd.h
configure:36423: result: yes
configure:36707: checking for vasnprintf
configure:36764: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "vasnprintf" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:36770: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| /* end confdefs.h.  */
| /* Define vasnprintf to an innocuous variant, in case <limits.h> declares 
vasnprintf.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define vasnprintf innocuous_vasnprintf
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char vasnprintf (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef vasnprintf
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char vasnprintf ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_vasnprintf) || defined (__stub___vasnprintf)
| choke me
| #else
| char (*f) () = vasnprintf;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != vasnprintf;
|   ;
|   return 0;
| }
configure:36795: result: no
configure:36853: checking for ptrdiff_t
configure:36907: result: yes
configure:36931: checking for snprintf
configure:36988: cc -mips3 -o conftest -g   conftest.c  >&5
configure:36994: $? = 0
configure:36998: test -z 
                         || test ! -s conftest.err
configure:37001: $? = 0
configure:37004: test -s conftest
configure:37007: $? = 0
configure:37019: result: yes
configure:36931: checking for wcslen
configure:36988: cc -mips3 -o conftest -g   conftest.c  >&5
configure:36994: $? = 0
configure:36998: test -z 
                         || test ! -s conftest.err
configure:37001: $? = 0
configure:37004: test -s conftest
configure:37007: $? = 0
configure:37019: result: yes
configure:37039: checking for vasprintf
configure:37096: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "vasprintf" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:37102: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| /* end confdefs.h.  */
| /* Define vasprintf to an innocuous variant, in case <limits.h> declares 
vasprintf.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define vasprintf innocuous_vasprintf
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char vasprintf (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef vasprintf
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char vasprintf ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_vasprintf) || defined (__stub___vasprintf)
| choke me
| #else
| char (*f) () = vasprintf;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != vasprintf;
|   ;
|   return 0;
| }
configure:37127: result: no
configure:37215: checking for stdint.h
configure:37220: result: yes
configure:37390: checking whether NLS is requested
configure:37399: result: yes
configure:37437: checking for msgfmt
configure:37472: result: no
configure:37478: checking for gmsgfmt
configure:37509: result: :
configure:37548: checking for xgettext
configure:37583: result: no
configure:37620: checking for msgmerge
configure:37654: result: no
configure:37708: checking build system type
configure:37726: result: mips-sgi-irix6.5
configure:37734: checking host system type
configure:37748: result: mips-sgi-irix6.5
configure:37813: checking for non-GNU ld
configure:37844: result: /usr/bin/ld
configure:37853: checking if the linker (/usr/bin/ld) is GNU ld
configure:37866: result: no
configure:37873: checking for shared library run path origin
configure:37886: result: done
configure:38322: checking for CFPreferencesCopyAppValue
configure:38347: cc -mips3 -o conftest -g  
-I/System/Library/Frameworks/CoreFoundation.framework/Headers  conftest.c  
-framework CoreFoundation >&5
cc ERROR parsing -framework:  unknown flag
configure:38353: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| /* end confdefs.h.  */
| #include <CFPreferences.h>
| int
| main ()
| {
| CFPreferencesCopyAppValue(NULL, NULL)
|   ;
|   return 0;
| }
configure:38380: result: no
configure:38389: checking for CFLocaleCopyCurrent
configure:38414: cc -mips3 -o conftest -g  
-I/System/Library/Frameworks/CoreFoundation.framework/Headers  conftest.c  
-framework CoreFoundation >&5
cc ERROR parsing -framework:  unknown flag
configure:38420: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| /* end confdefs.h.  */
| #include <CFLocale.h>
| int
| main ()
| {
| CFLocaleCopyCurrent();
|   ;
|   return 0;
| }
configure:38447: result: no
configure:38464: checking whether NLS is requested
configure:38473: result: yes
configure:38491: checking for GNU gettext in libc
configure:38515: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1005 cc: ERROR File = conftest.c, Line = 255
  The source file "libintl.h" is unavailable.

  #include <libintl.h>
                      ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:38521: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| /* end confdefs.h.  */
| #include <libintl.h>
| extern int _nl_msg_cat_cntr;
| extern int *_nl_domain_bindings;
| int
| main ()
| {
| bindtextdomain ("", "");
| return * gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings
|   ;
|   return 0;
| }
configure:38546: result: no
configure:38580: checking for iconv
configure:38607: cc -mips3 -o conftest -g   conftest.c  >&5
configure:38613: $? = 0
configure:38617: test -z 
                         || test ! -s conftest.err
configure:38620: $? = 0
configure:38623: test -s conftest
configure:38626: $? = 0
configure:38692: result: yes
configure:39094: checking for GNU gettext in libintl
configure:39126: cc -mips3 -o conftest -g    conftest.c  -lintl >&5
cc-1005 cc: ERROR File = conftest.c, Line = 256
  The source file "libintl.h" is unavailable.

  #include <libintl.h>
                      ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:39132: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| /* end confdefs.h.  */
| #include <libintl.h>
| extern int _nl_msg_cat_cntr;
| extern
| #ifdef __cplusplus
| "C"
| #endif
| const char *_nl_expand_alias (const char *);
| int
| main ()
| {
| bindtextdomain ("", "");
| return * gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias ("")
|   ;
|   return 0;
| }
configure:39217: result: no
configure:39254: checking whether to use NLS
configure:39256: result: no
configure:39332: checking whether strerror_r is declared
configure:39386: result: no
configure:39408: checking for strerror_r
configure:39496: result: no
configure:39506: checking whether strerror_r returns char *
configure:39613: result: no
configure:39698: checking for fchdir
configure:39786: result: yes
configure:39698: checking for fchmod
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for fsync
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for ftime
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for geteuid
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for getgroups
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for getpagesize
configure:39786: result: yes
configure:39698: checking for gettimeofday
configure:39786: result: yes
configure:39698: checking for initgroups
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for login
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "login" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:39761: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define login to an innocuous variant, in case <limits.h> declares login.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define login innocuous_login
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char login (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef login
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char login ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_login) || defined (__stub___login)
| choke me
| #else
| char (*f) () = login;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != login;
|   ;
|   return 0;
| }
configure:39786: result: no
configure:39698: checking for logout
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "logout" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:39761: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define logout to an innocuous variant, in case <limits.h> declares logout.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define logout innocuous_logout
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char logout (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef logout
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char logout ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_logout) || defined (__stub___logout)
| choke me
| #else
| char (*f) () = logout;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != logout;
|   ;
|   return 0;
| }
configure:39786: result: no
configure:39698: checking for mknod
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for regcomp
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1047 cc: WARNING File = conftest.c, Line = 269
  Macro "regcomp" (declared at line 205) has an incompatible redefinition.

  #define regcomp innocuous_regcomp
          ^

configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for regerror
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1047 cc: WARNING File = conftest.c, Line = 270
  Macro "regerror" (declared at line 207) has an incompatible redefinition.

  #define regerror innocuous_regerror
          ^

configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for regexec
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1047 cc: WARNING File = conftest.c, Line = 271
  Macro "regexec" (declared at line 206) has an incompatible redefinition.

  #define regexec innocuous_regexec
          ^

configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for regfree
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1047 cc: WARNING File = conftest.c, Line = 272
  Macro "regfree" (declared at line 208) has an incompatible redefinition.

  #define regfree innocuous_regfree
          ^

configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for sigaction
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for sigblock
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for sigprocmask
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for sigsetmask
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for sigvec
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for timezone
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for tzset
configure:39786: result: yes
configure:39698: checking for vprintf
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39698: checking for wait3
configure:39755: cc -mips3 -o conftest -g   conftest.c  >&5
configure:39761: $? = 0
configure:39765: test -z 
                         || test ! -s conftest.err
configure:39768: $? = 0
configure:39771: test -s conftest
configure:39774: $? = 0
configure:39786: result: yes
configure:39804: checking for char
configure:39828: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 317
  The controlling expression is constant.

  if ((char *) 0)
      ^

configure:39834: $? = 0
configure:39838: test -z 
                         || test ! -s conftest.err
configure:39841: $? = 0
configure:39844: test -s conftest.o
configure:39847: $? = 0
configure:39858: result: yes
configure:39861: checking size of char
configure:40180: cc -mips3 -o conftest -g   conftest.c  >&5
configure:40183: $? = 0
configure:40185: ./conftest
configure:40188: $? = 0
configure:40211: result: 1
configure:40218: checking for uniquely sized char
configure:40230: result: yes(1)
configure:40239: checking for short
configure:40263: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 319
  The controlling expression is constant.

  if ((short *) 0)
      ^

configure:40269: $? = 0
configure:40273: test -z 
                         || test ! -s conftest.err
configure:40276: $? = 0
configure:40279: test -s conftest.o
configure:40282: $? = 0
configure:40293: result: yes
configure:40296: checking size of short
configure:40615: cc -mips3 -o conftest -g   conftest.c  >&5
configure:40618: $? = 0
configure:40620: ./conftest
configure:40623: $? = 0
configure:40646: result: 2
configure:40653: checking for uniquely sized short
configure:40665: result: yes(2)
configure:40674: checking for int
configure:40698: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 321
  The controlling expression is constant.

  if ((int *) 0)
      ^

configure:40704: $? = 0
configure:40708: test -z 
                         || test ! -s conftest.err
configure:40711: $? = 0
configure:40714: test -s conftest.o
configure:40717: $? = 0
configure:40728: result: yes
configure:40731: checking size of int
configure:41050: cc -mips3 -o conftest -g   conftest.c  >&5
configure:41053: $? = 0
configure:41055: ./conftest
configure:41058: $? = 0
configure:41081: result: 4
configure:41088: checking for uniquely sized int
configure:41100: result: yes(4)
configure:41109: checking for long
configure:41133: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 323
  The controlling expression is constant.

  if ((long *) 0)
      ^

configure:41139: $? = 0
configure:41143: test -z 
                         || test ! -s conftest.err
configure:41146: $? = 0
configure:41149: test -s conftest.o
configure:41152: $? = 0
configure:41163: result: yes
configure:41166: checking size of long
configure:41485: cc -mips3 -o conftest -g   conftest.c  >&5
configure:41488: $? = 0
configure:41490: ./conftest
configure:41493: $? = 0
configure:41516: result: 4
configure:41523: checking for uniquely sized long
configure:41535: result: no
configure:41545: checking for long long
configure:41599: result: yes
configure:41602: checking size of long long
configure:41921: cc -mips3 -o conftest -g   conftest.c  >&5
configure:41924: $? = 0
configure:41926: ./conftest
configure:41929: $? = 0
configure:41952: result: 8
configure:41959: checking for uniquely sized long long
configure:41971: result: yes(8)
configure:41981: checking for size_t
configure:42035: result: yes
configure:42038: checking size of size_t
configure:42357: cc -mips3 -o conftest -g   conftest.c  >&5
configure:42360: $? = 0
configure:42362: ./conftest
configure:42365: $? = 0
configure:42388: result: 4
configure:42395: checking for uniquely sized size_t
configure:42407: result: no
configure:42416: checking for ptrdiff_t
configure:42470: result: yes
configure:42473: checking size of ptrdiff_t
configure:42792: cc -mips3 -o conftest -g   conftest.c  >&5
configure:42795: $? = 0
configure:42797: ./conftest
configure:42800: $? = 0
configure:42823: result: 4
configure:42830: checking for uniquely sized ptrdiff_t
configure:42842: result: no
configure:42852: checking for wint_t
configure:42909: result: yes
configure:42912: checking size of wint_t
configure:43249: cc -mips3 -o conftest -g   conftest.c  >&5
configure:43252: $? = 0
configure:43254: ./conftest
configure:43257: $? = 0
configure:43280: result: 4
configure:43287: checking for uniquely sized wint_t
configure:43299: result: no
configure:43310: checking for intmax_t
configure:43343: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 305
  The controlling expression is constant.

  if ((intmax_t *) 0)
      ^

configure:43349: $? = 0
configure:43353: test -z 
                         || test ! -s conftest.err
configure:43356: $? = 0
configure:43359: test -s conftest.o
configure:43362: $? = 0
configure:43373: result: yes
configure:43376: checking size of intmax_t
configure:43749: cc -mips3 -o conftest -g   conftest.c  >&5
configure:43752: $? = 0
configure:43754: ./conftest
configure:43757: $? = 0
configure:43780: result: 8
configure:43787: checking for uniquely sized intmax_t
configure:43799: result: no
configure:43810: checking for float
configure:43834: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 330
  The controlling expression is constant.

  if ((float *) 0)
      ^

configure:43840: $? = 0
configure:43844: test -z 
                         || test ! -s conftest.err
configure:43847: $? = 0
configure:43850: test -s conftest.o
configure:43853: $? = 0
configure:43864: result: yes
configure:43867: checking size of float
configure:44186: cc -mips3 -o conftest -g   conftest.c  >&5
configure:44189: $? = 0
configure:44191: ./conftest
configure:44194: $? = 0
configure:44217: result: 4
configure:44224: checking for uniquely sized float
configure:44236: result: yes(4)
configure:44245: checking for double
configure:44269: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 332
  The controlling expression is constant.

  if ((double *) 0)
      ^

configure:44275: $? = 0
configure:44279: test -z 
                         || test ! -s conftest.err
configure:44282: $? = 0
configure:44285: test -s conftest.o
configure:44288: $? = 0
configure:44299: result: yes
configure:44302: checking size of double
configure:44621: cc -mips3 -o conftest -g   conftest.c  >&5
configure:44624: $? = 0
configure:44626: ./conftest
configure:44629: $? = 0
configure:44652: result: 8
configure:44659: checking for uniquely sized double
configure:44671: result: yes(8)
configure:44681: checking for long double
configure:44705: cc -mips3 -c -g  conftest.c >&5
cc-1209 cc: WARNING File = conftest.c, Line = 334
  The controlling expression is constant.

  if ((long double *) 0)
      ^

configure:44711: $? = 0
configure:44715: test -z 
                         || test ! -s conftest.err
configure:44718: $? = 0
configure:44721: test -s conftest.o
configure:44724: $? = 0
configure:44735: result: yes
configure:44738: checking size of long double
configure:45057: cc -mips3 -o conftest -g   conftest.c  >&5
configure:45060: $? = 0
configure:45062: ./conftest
configure:45065: $? = 0
configure:45088: result: 16
configure:45095: checking for uniquely sized long double
configure:45107: result: yes(16)
configure:45146: checking for unistd.h
configure:45151: result: yes
configure:45155: checking vfork.h usability
configure:45167: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 338
  The source file "vfork.h" is unavailable.

  #include <vfork.h>
                    ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:45173: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <vfork.h>
configure:45196: result: no
configure:45200: checking vfork.h presence
configure:45210: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 304
  The source file "vfork.h" is unavailable.

  #include <vfork.h>
                    ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:45216: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <vfork.h>
configure:45236: result: no
configure:45271: checking for vfork.h
configure:45278: result: no
configure:45296: checking for fork
configure:45353: cc -mips3 -o conftest -g   conftest.c  >&5
configure:45359: $? = 0
configure:45363: test -z 
                         || test ! -s conftest.err
configure:45366: $? = 0
configure:45369: test -s conftest
configure:45372: $? = 0
configure:45384: result: yes
configure:45296: checking for vfork
configure:45353: cc -mips3 -o conftest -g   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "vfork" -- 1st referenced by 
conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:45359: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| /* end confdefs.h.  */
| /* Define vfork to an innocuous variant, in case <limits.h> declares vfork.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define vfork innocuous_vfork
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char vfork (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef vfork
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char vfork ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_vfork) || defined (__stub___vfork)
| choke me
| #else
| char (*f) () = vfork;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != vfork;
|   ;
|   return 0;
| }
configure:45384: result: no
configure:45395: checking for working fork
configure:45418: cc -mips3 -o conftest -g   conftest.c  >&5
configure:45421: $? = 0
configure:45423: ./conftest
configure:45426: $? = 0
configure:45440: result: yes
configure:45625: checking whether closedir returns void
configure:45654: cc -mips3 -o conftest -g   conftest.c  >&5
configure:45657: $? = 0
configure:45659: ./conftest
configure:45662: $? = 0
configure:45676: result: no
configure:45687: checking for library containing getspnam
configure:45717: cc -mips3 -o conftest -g   conftest.c  >&5
configure:45723: $? = 0
configure:45727: test -z 
                         || test ! -s conftest.err
configure:45730: $? = 0
configure:45733: test -s conftest
configure:45736: $? = 0
configure:45806: result: none required
configure:45818: checking whether utime accepts a null argument
configure:45849: cc -mips3 -o conftest -g   conftest.c  >&5
cc-1164 cc: WARNING File = conftest.c, Line = 347
  Argument of type "long *" is incompatible with parameter of type
          "const struct utimbuf *".

          && utime ("conftest.data", (long *)0) == 0
                                     ^

configure:45852: $? = 0
configure:45854: ./conftest
configure:45857: $? = 0
configure:45872: result: yes
configure:45883: checking for long file names
configure:45922: result: yes
configure:45933: checking whether printf supports %p
configure:45964: cc -mips3 -o conftest -g   conftest.c  >&5
configure:45967: $? = 0
configure:45969: ./conftest
configure:45972: $? = 0
configure:45987: result: yes
configure:46000: checking for main in -lnsl
configure:46024: cc -mips3 -o conftest -g   conftest.c -lnsl   >&5
ld32: WARNING 84 : /usr/lib32/libnsl.so is not used for resolving any symbol.
configure:46030: $? = 0
configure:46034: test -z 
                         || test ! -s conftest.err
configure:46037: $? = 0
configure:46040: test -s conftest
configure:46043: $? = 0
configure:46056: result: yes
configure:46067: checking for library containing connect
configure:46097: cc -mips3 -o conftest -g   conftest.c -lnsl  >&5
ld32: WARNING 84 : /usr/lib32/libnsl.so is not used for resolving any symbol.
configure:46103: $? = 0
configure:46107: test -z 
                         || test ! -s conftest.err
configure:46110: $? = 0
configure:46113: test -s conftest
configure:46116: $? = 0
configure:46186: result: none required
configure:46197: checking for library containing gethostbyname
configure:46316: result: none required
configure:46335: checking for KRB4 in /usr/kerberos
configure:46337: result: 
configure:46342: checking for krb.h
configure:46456: cc -mips3 -o conftest -g   conftest.c -lnsl  >&5
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "krb.h" is unavailable.

  #include <krb.h>
                  ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:46462: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <krb.h>
| int
| main ()
| {
| int i;
|   ;
|   return 0;
| }
configure:46503: cc -mips3 -o conftest -g   conftest.c -lnsl  >&5
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "krb.h" is unavailable.

  #include <krb.h>
                  ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:46509: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <krb.h>
| int
| main ()
| {
| int i;
|   ;
|   return 0;
| }
configure:46583: result: 
configure:47135: checking for krb_get_err_text
configure:47192: cc -mips3 -o conftest -g   conftest.c -lnsl  >&5
ld32: WARNING 84 : /usr/lib32/libnsl.so is not used for resolving any symbol.
ld32: ERROR   33 : Unresolved text symbol "krb_get_err_text" -- 1st referenced 
by conftest.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
configure:47198: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| /* Define krb_get_err_text to an innocuous variant, in case <limits.h> 
declares krb_get_err_text.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define krb_get_err_text innocuous_krb_get_err_text
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char krb_get_err_text (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef krb_get_err_text
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char krb_get_err_text ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_krb_get_err_text) || defined (__stub___krb_get_err_text)
| choke me
| #else
| char (*f) () = krb_get_err_text;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != krb_get_err_text;
|   ;
|   return 0;
| }
configure:47223: result: no
configure:47285: checking for GSSAPI
configure:47287: result: 
configure:47315: checking gssapi.h usability
configure:47327: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "gssapi.h" is unavailable.

  #include <gssapi.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gssapi.h>
configure:47356: result: no
configure:47360: checking gssapi.h presence
configure:47370: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "gssapi.h" is unavailable.

  #include <gssapi.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <gssapi.h>
configure:47396: result: no
configure:47431: checking for gssapi.h
configure:47438: result: no
configure:47315: checking gssapi/gssapi.h usability
configure:47327: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "gssapi/gssapi.h" is unavailable.

  #include <gssapi/gssapi.h>
                            ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gssapi/gssapi.h>
configure:47356: result: no
configure:47360: checking gssapi/gssapi.h presence
configure:47370: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "gssapi/gssapi.h" is unavailable.

  #include <gssapi/gssapi.h>
                            ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <gssapi/gssapi.h>
configure:47396: result: no
configure:47431: checking for gssapi/gssapi.h
configure:47438: result: no
configure:47315: checking krb5.h usability
configure:47327: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "krb5.h" is unavailable.

  #include <krb5.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <krb5.h>
configure:47356: result: no
configure:47360: checking krb5.h presence
configure:47370: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "krb5.h" is unavailable.

  #include <krb5.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <krb5.h>
configure:47396: result: no
configure:47431: checking for krb5.h
configure:47438: result: no
configure:47291: checking for GSSAPI in /usr/kerberos
configure:47293: result: 
configure:47315: checking gssapi.h usability
configure:47327: cc -mips3 -c -g  -I/usr/kerberos/include conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "gssapi.h" is unavailable.

  #include <gssapi.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gssapi.h>
configure:47356: result: no
configure:47360: checking gssapi.h presence
configure:47370: cc -mips3 -E  -I/usr/kerberos/include conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "gssapi.h" is unavailable.

  #include <gssapi.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <gssapi.h>
configure:47396: result: no
configure:47431: checking for gssapi.h
configure:47438: result: no
configure:47315: checking gssapi/gssapi.h usability
configure:47327: cc -mips3 -c -g  -I/usr/kerberos/include conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "gssapi/gssapi.h" is unavailable.

  #include <gssapi/gssapi.h>
                            ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gssapi/gssapi.h>
configure:47356: result: no
configure:47360: checking gssapi/gssapi.h presence
configure:47370: cc -mips3 -E  -I/usr/kerberos/include conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "gssapi/gssapi.h" is unavailable.

  #include <gssapi/gssapi.h>
                            ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <gssapi/gssapi.h>
configure:47396: result: no
configure:47431: checking for gssapi/gssapi.h
configure:47438: result: no
configure:47315: checking krb5.h usability
configure:47327: cc -mips3 -c -g  -I/usr/kerberos/include conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "krb5.h" is unavailable.

  #include <krb5.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <krb5.h>
configure:47356: result: no
configure:47360: checking krb5.h presence
configure:47370: cc -mips3 -E  -I/usr/kerberos/include conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "krb5.h" is unavailable.

  #include <krb5.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <krb5.h>
configure:47396: result: no
configure:47431: checking for krb5.h
configure:47438: result: no
configure:47291: checking for GSSAPI in /usr/cygnus/kerbnet
configure:47293: result: 
configure:47315: checking gssapi.h usability
configure:47327: cc -mips3 -c -g  -I/usr/cygnus/kerbnet/include conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "gssapi.h" is unavailable.

  #include <gssapi.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gssapi.h>
configure:47356: result: no
configure:47360: checking gssapi.h presence
configure:47370: cc -mips3 -E  -I/usr/cygnus/kerbnet/include conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "gssapi.h" is unavailable.

  #include <gssapi.h>
                     ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <gssapi.h>
configure:47396: result: no
configure:47431: checking for gssapi.h
configure:47438: result: no
configure:47315: checking gssapi/gssapi.h usability
configure:47327: cc -mips3 -c -g  -I/usr/cygnus/kerbnet/include conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "gssapi/gssapi.h" is unavailable.

  #include <gssapi/gssapi.h>
                            ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gssapi/gssapi.h>
configure:47356: result: no
configure:47360: checking gssapi/gssapi.h presence
configure:47370: cc -mips3 -E  -I/usr/cygnus/kerbnet/include conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "gssapi/gssapi.h" is unavailable.

  #include <gssapi/gssapi.h>
                            ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <gssapi/gssapi.h>
configure:47396: result: no
configure:47431: checking for gssapi/gssapi.h
configure:47438: result: no
configure:47315: checking krb5.h usability
configure:47327: cc -mips3 -c -g  -I/usr/cygnus/kerbnet/include conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "krb5.h" is unavailable.

  #include <krb5.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47333: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <krb5.h>
configure:47356: result: no
configure:47360: checking krb5.h presence
configure:47370: cc -mips3 -E  -I/usr/cygnus/kerbnet/include conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "krb5.h" is unavailable.

  #include <krb5.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:47376: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <krb5.h>
configure:47396: result: no
configure:47431: checking for krb5.h
configure:47438: result: no
configure:47461: checking for GSSAPI
configure:47465: result: no
configure:49310: checking for external ZLIB
configure:49312: result: 
configure:49336: checking zlib.h usability
configure:49348: cc -mips3 -c -g  conftest.c >&5
cc-1005 cc: ERROR File = conftest.c, Line = 347
  The source file "zlib.h" is unavailable.

  #include <zlib.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:49354: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <zlib.h>
configure:49377: result: no
configure:49381: checking zlib.h presence
configure:49391: cc -mips3 -E  conftest.c
cc-1005 cc: ERROR File = conftest.c, Line = 313
  The source file "zlib.h" is unavailable.

  #include <zlib.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:49397: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| /* end confdefs.h.  */
| #include <zlib.h>
configure:49417: result: no
configure:49452: checking for zlib.h
configure:49459: result: no
configure:49316: checking for external ZLIB in /usr/local
configure:49318: result: 
configure:49336: checking zlib.h usability
configure:49348: cc -mips3 -c -g  -I/usr/local/include conftest.c >&5
configure:49354: $? = 0
configure:49358: test -z 
                         || test ! -s conftest.err
configure:49361: $? = 0
configure:49364: test -s conftest.o
configure:49367: $? = 0
configure:49377: result: yes
configure:49381: checking zlib.h presence
configure:49391: cc -mips3 -E  -I/usr/local/include conftest.c
configure:49397: $? = 0
configure:49417: result: yes
configure:49452: checking for zlib.h
configure:49459: result: yes
configure:49477: checking for external ZLIB
configure:49481: result: /usr/local
configure:49489: checking selected ZLIB
configure:49492: result: package
Warning: Unrecognized option ( ) in "-dM"
cc-1005 cc: ERROR File = conftest.c, Line = 314
  The source file "zlib.h" is unavailable.

  #include <zlib.h>
                   ^

1 catastrophic error detected in the compilation of "conftest.c".
Compilation terminated.
configure:49729: checking for ssh
configure:49758: result: no
configure:49729: checking for remsh
configure:49758: result: no
configure:49729: checking for rsh
configure:49745: found /usr/bsd/rsh
configure:49755: result: rsh
configure:49824: checking for vim
configure:49840: found /usr/local/bin/vim
configure:49850: result: vim
configure:49926: checking for temporary directory
configure:49940: result: /tmp
configure:50097: checking for library containing crypt
configure:50127: cc -mips3 -o conftest -g -Ino/include -Lno/lib conftest.c 
-lnsl  >&5
ld32: WARNING 84 : /usr/lib32/libnsl.so is not used for resolving any symbol.
configure:50133: $? = 0
configure:50137: test -z 
                         || test ! -s conftest.err
configure:50140: $? = 0
configure:50143: test -s conftest
configure:50146: $? = 0
configure:50216: result: none required
configure:50744: checking for a case sensitive file system
configure:50764: result: yes
configure:50941: checking for cygwin32
configure:50962: cc -mips3 -c -g -Ino/include conftest.c >&5
cc-1020 cc: ERROR File = conftest.c, Line = 339
  The identifier "__CYGWIN32__" is undefined.

  return __CYGWIN32__;
         ^

1 error detected in the compilation of "conftest.c".
configure:50968: $? = 2
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "Concurrent Versions System (CVS)"
| #define PACKAGE_TARNAME "cvs"
| #define PACKAGE_VERSION "1.12.13.1"
| #define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define __EXTENSIONS__ 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define PR_PROGRAM "/usr/bin/pr"
| #define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
| #define DEFAULT_SIGN_TEXTMODE "--textmode"
| #define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_NDBM_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_SYS_FILE_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UTIME_H 1
| #define RETSIGTYPE void
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_STRUCT_STAT_ST_RDEV 1
| #define HAVE_FSEEKO 1
| #define HAVE_WAITPID 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define select rpl_select
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define MALLOC_0_IS_NONNULL 1
| #define HAVE_LONG_LONG 1
| #define HAVE_LONG_DOUBLE 1
| #ifndef __cplusplus
| #define inline __inline
| #endif
| #define restrict __restrict
| #define HAVE_IPV4 1
| #define HAVE_IPV6 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_SYS_CDEFS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define HAVE_FCHDIR 1
| #define HAVE_ISASCII 1
| #define HAVE_TCGETATTR 1
| #define HAVE_TCSETATTR 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETLOGIN_R 1
| #define HAVE_GETPWNAM_R 1
| #define HAVE_MBSINIT 1
| #define HAVE_ALARM 1
| #define HAVE_SIGINTERRUPT 1
| #define HAVE_ISWPRINT 1
| #define HAVE_ISBLANK 1
| #define HAVE_MBRTOWC 1
| #define HAVE_WCRTOMB 1
| #define HAVE_WCSCOLL 1
| #define HAVE_MBLEN 1
| #define HAVE_MBRLEN 1
| #define HAVE_TZSET 1
| #define HAVE_DECL_MEMRCHR 0
| #define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
| #define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_MBSTATE_T 1
| #define HAVE_DECL_GETCWD 1
| #define D_INO_IN_DIRENT 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_CLOCK_GETTIME 1
| #define HAVE_CLOCK_SETTIME 1
| #define HAVE_DECL_GETDELIM 0
| #define HAVE_DECL_GETLOGIN 1
| #define HAVE_DECL_GETLOGIN_R 1
| #define HAVE_GETOPT_H 1
| #define HAVE_DECL_GETENV 1
| #define HAVE_DECL_GETPASS 1
| #define HAVE_DECL_FFLUSH_UNLOCKED 0
| #define HAVE_DECL_FLOCKFILE 1
| #define HAVE_DECL_FPUTS_UNLOCKED 0
| #define HAVE_DECL_FUNLOCKFILE 1
| #define HAVE_DECL_PUTC_UNLOCKED 1
| #define HAVE_DECL_STRTOIMAX 1
| #define HAVE_DECL_STRTOUMAX 1
| #define HAVE_MBRTOWC 1
| #define WORDS_BIGENDIAN 1
| #define HAVE_MINMAX_IN_SYS_PARAM_H 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_STDINT_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_UINTMAX_T 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_WCHAR_T 1
| #define HAVE_DECL_STRDUP 1
| #define HAVE_STRFTIME 1
| #define my_strftime nstrftime
| #define HAVE_DECL_CLEARERR_UNLOCKED 1
| #define HAVE_DECL_FEOF_UNLOCKED 1
| #define HAVE_DECL_FERROR_UNLOCKED 1
| #define HAVE_DECL_FGETS_UNLOCKED 0
| #define HAVE_DECL_FPUTC_UNLOCKED 0
| #define HAVE_DECL_FREAD_UNLOCKED 0
| #define HAVE_DECL_FWRITE_UNLOCKED 0
| #define HAVE_DECL_GETC_UNLOCKED 1
| #define HAVE_DECL_GETCHAR_UNLOCKED 1
| #define HAVE_DECL_PUTCHAR_UNLOCKED 1
| #define HAVE_WINT_T 1
| #define HAVE_INTMAX_T 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ATEXIT 1
| #define HAVE_SYS_PARAM_H 1
| #define __OPENAT_PREFIX rpl_
| #define HAVE_DUP2 1
| #define HAVE_DECL___FPENDING 0
| #define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
| #define HAVE_FTRUNCATE 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GAI_STRERROR 1
| #define HAVE_DECL_GETADDRINFO 1
| #define HAVE_DECL_FREEADDRINFO 1
| #define HAVE_DECL_GAI_STRERROR 1
| #define HAVE_STRUCT_ADDRINFO 1
| #define __GETCWD_PREFIX rpl_
| #define HAVE_TZNAME 1
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_DECL_GETLINE 0
| #define getline gnu_getline
| #define HAVE_FLOCKFILE 1
| #define HAVE_FUNLOCKFILE 1
| #define HAVE_GETLOGIN_R 1
| #define __GETOPT_PREFIX rpl_
| #define HAVE_GETPAGESIZE 1
| #define getpass gnu_getpass
| #define HAVE_GLOB_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define HAVE_STDLIB_H 1
| #define HAVE_MALLOC 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MKSTEMP 1
| #define mkstemp rpl_mkstemp
| #define HAVE_GETTIMEOFDAY 1
| #define mktime rpl_mktime
| #define __OPENAT_PREFIX rpl_
| #define HAVE_MBSTATE_T 1
| #define HAVE_MBRTOWC 1
| #define HAVE_READLINK 1
| #define HAVE_STDLIB_H 1
| #define HAVE_REALLOC 1
| #define _REGEX_LARGE_OFFSETS 1
| #define re_syntax_options rpl_re_syntax_options
| #define re_set_syntax rpl_re_set_syntax
| #define re_compile_pattern rpl_re_compile_pattern
| #define re_compile_fastmap rpl_re_compile_fastmap
| #define re_search rpl_re_search
| #define re_search_2 rpl_re_search_2
| #define re_match rpl_re_match
| #define re_match_2 rpl_re_match_2
| #define re_set_registers rpl_re_set_registers
| #define re_comp rpl_re_comp
| #define re_exec rpl_re_exec
| #define regcomp rpl_regcomp
| #define regexec rpl_regexec
| #define regerror rpl_regerror
| #define regfree rpl_regfree
| #define restrict __restrict
| #define HAVE_SEARCH_H 1
| #define HAVE_TSEARCH 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_ERRNO_DECL 1
| #define HAVE_STDINT_H 1
| #define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
| #define HAVE_STDINT_H 1
| #define FULL_PATH_STDINT_H </usr/include/stdint.h>
| #define HAVE_INTTYPES_H 1
| #define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
| #define BITSIZEOF_UNSIGNED_INT 32
| #define BITSIZEOF_LONG 32
| #define BITSIZEOF_UNSIGNED_LONG 32
| #define HAVE_PTRDIFF_T 1
| #define BITSIZEOF_PTRDIFF_T 32
| #define BITSIZEOF_SIZE_T 32
| #define HAVE_SIG_ATOMIC_T 1
| #define BITSIZEOF_SIG_ATOMIC_T 32
| #define HAVE_SIGNED_SIG_ATOMIC_T 1
| #define BITSIZEOF_WCHAR_T 32
| #define HAVE_SIGNED_WCHAR_T 1
| #define HAVE_WINT_T 1
| #define BITSIZEOF_WINT_T 32
| #define HAVE_SIGNED_WINT_T 1
| #define strcasecmp rpl_strcasecmp
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRTOIMAX 1
| #define HAVE_STRTOL 1
| #define HAVE_STRTOLL 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUMAX 1
| #define HAVE_TIME_R_POSIX 1
| #define HAVE_STRUCT_TIMESPEC 1
| #define HAVE_DECL_NANOSLEEP 1
| #define HAVE_RUN_TZSET_TEST 1
| #define HAVE_UNISTD_H 1
| #define USE_UNLOCKED_IO 1
| #define HAVE_PTRDIFF_T 1
| #define HAVE_SNPRINTF 1
| #define HAVE_WCSLEN 1
| #define HAVE_STDINT_H 1
| #define HAVE_ICONV 1
| #define HAVE_DECL_STRERROR_R 0
| #define HAVE_FCHDIR 1
| #define HAVE_FCHMOD 1
| #define HAVE_FSYNC 1
| #define HAVE_FTIME 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGROUPS 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_INITGROUPS 1
| #define HAVE_MKNOD 1
| #define HAVE_REGCOMP 1
| #define HAVE_REGERROR 1
| #define HAVE_REGEXEC 1
| #define HAVE_REGFREE 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGBLOCK 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SIGSETMASK 1
| #define HAVE_SIGVEC 1
| #define HAVE_TIMEZONE 1
| #define HAVE_TZSET 1
| #define HAVE_VPRINTF 1
| #define HAVE_WAIT3 1
| #define SIZEOF_CHAR 1
| #define UNIQUE_INT_TYPE_CHAR 1
| #define SIZEOF_SHORT 2
| #define UNIQUE_INT_TYPE_SHORT 1
| #define SIZEOF_INT 4
| #define UNIQUE_INT_TYPE_INT 1
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define UNIQUE_INT_TYPE_LONG_LONG 1
| #define SIZEOF_SIZE_T 4
| #define SIZEOF_PTRDIFF_T 4
| #define SIZEOF_WINT_T 4
| #define SIZEOF_INTMAX_T 8
| #define SIZEOF_FLOAT 4
| #define UNIQUE_FLOAT_TYPE_FLOAT 1
| #define SIZEOF_DOUBLE 8
| #define UNIQUE_FLOAT_TYPE_DOUBLE 1
| #define SIZEOF_LONG_DOUBLE 16
| #define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
| #define HAVE_STRCHR 1
| #define HAVE_MEMCHR 1
| #define REGEX_MALLOC 1
| #define _REGEX_RE_COMP 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FORK 1
| #define vfork fork
| #define HAVE_WORKING_FORK 1
| #define HAVE_GETSPNAM 1
| #define HAVE_UTIME_NULL 1
| #define HAVE_LONG_FILE_NAMES 1
| #define HAVE_PRINTF_PTR 1
| #define HAVE_LIBNSL 1
| #define HAVE_CONNECT 1
| #define HAVE_ZLIB_H 1
| #define RSH_DFLT "rsh"
| #define EDITOR_DFLT "vim"
| #define PAM_SERVICE_NAME "cvs"
| #define TMPDIR_DFLT "/tmp"
| #define UMASK_DFLT 002
| #define HAVE_CVS_ADMIN_GROUP 1
| #define CVS_ADMIN_GROUP "cvsadmin"
| #define MY_NDBM 1
| #define CLIENT_SUPPORT 1
| #define AUTH_CLIENT_SUPPORT 1
| #define SERVER_SUPPORT 1
| #define HAVE_CRYPT 1
| #define AUTH_SERVER_SUPPORT 1
| #define SERVER_FLOWCONTROL 1
| #define SERVER_LO_WATER (1 * 1024 * 1024)
| #define SERVER_HI_WATER (2 * 1024 * 1024)
| #define PROXY_SUPPORT 1
| #define LOCK_COMPATIBILITY 1
| #define CVS_BADROOT 1
| #define SUPPORT_OLD_INFO_FMT_STRINGS 1
| #define ALLOW_CONFIG_OVERRIDE "/etc/cvs.conf", "/etc/cvs/", NULL
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| return __CYGWIN32__;
|   ;
|   return 0;
| }
configure:50992: result: no
configure:51184: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by Concurrent Versions System (CVS) config.status 
1.12.13.1, which was
generated by GNU Autoconf 2.59.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on sgcpu24

config.status:888: creating contrib/clmerge
config.status:888: creating contrib/cln_hist
config.status:888: creating contrib/commit_prep
config.status:888: creating contrib/cvs_acls
config.status:888: creating contrib/log_accum
config.status:888: creating contrib/log
config.status:888: creating contrib/mfpipe
config.status:888: creating contrib/pvcs2rcs
config.status:888: creating contrib/rcs2log
config.status:888: creating contrib/rcslock
config.status:888: creating contrib/sccs2rcs
config.status:888: creating contrib/validate_repo
config.status:888: creating doc/mkman
config.status:888: creating src/cvsbug
config.status:888: creating Makefile
config.status:888: creating contrib/Makefile
config.status:888: creating contrib/pam/Makefile
config.status:888: creating cvs.spec
config.status:888: creating diff/Makefile
config.status:888: creating doc/Makefile
config.status:888: creating doc/i18n/Makefile
config.status:888: creating doc/i18n/pt_BR/Makefile
config.status:888: creating emx/Makefile
config.status:888: creating lib/Makefile
config.status:888: creating maint-aux/Makefile
config.status:888: creating man/Makefile
config.status:888: creating os2/Makefile
config.status:888: creating src/Makefile
config.status:888: creating src/sanity.config.sh
config.status:888: creating tools/Makefile
config.status:888: creating vms/Makefile
config.status:888: creating windows-NT/Makefile
config.status:888: creating windows-NT/SCC/Makefile
config.status:888: creating zlib/Makefile
config.status:1002: creating config.h
config.status:2052: executing depfiles commands
config.status:2052: executing default-1 commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=mips-sgi-irix6.5
ac_cv_build_alias=mips-sgi-irix6.5
ac_cv_c_bigendian=yes
ac_cv_c_compiler_gnu=no
ac_cv_c_const=yes
ac_cv_c_inline=__inline
ac_cv_decl_EOVERFLOW=yes
ac_cv_env_CC_set=set
ac_cv_env_CC_value='cc -mips3'
ac_cv_env_CFLAGS_set=''
ac_cv_env_CFLAGS_value=''
ac_cv_env_CPPFLAGS_set=''
ac_cv_env_CPPFLAGS_value=''
ac_cv_env_CPP_set=''
ac_cv_env_CPP_value=''
ac_cv_env_EDITOR_set=''
ac_cv_env_EDITOR_value=''
ac_cv_env_LDFLAGS_set=''
ac_cv_env_LDFLAGS_value=''
ac_cv_env_YACC_set=''
ac_cv_env_YACC_value=''
ac_cv_env_YFLAGS_set=''
ac_cv_env_YFLAGS_value=''
ac_cv_env_build_alias_set=''
ac_cv_env_build_alias_value=''
ac_cv_env_host_alias_set=''
ac_cv_env_host_alias_value=''
ac_cv_env_target_alias_set=''
ac_cv_env_target_alias_value=''
ac_cv_exeext=''
ac_cv_func___fpending=no
ac_cv_func___fsetlocking=no
ac_cv_func___secure_getenv=no
ac_cv_func_alarm=yes
ac_cv_func_alloca_works=yes
ac_cv_func_atexit=yes
ac_cv_func_canonicalize_file_name=no
ac_cv_func_clock_gettime=yes
ac_cv_func_clock_settime=yes
ac_cv_func_closedir_void=no
ac_cv_func_dup2=yes
ac_cv_func_fchdir=yes
ac_cv_func_fchmod=yes
ac_cv_func_fdopendir=no
ac_cv_func_flockfile=yes
ac_cv_func_fnmatch_posix=yes
ac_cv_func_fork=yes
ac_cv_func_fork_works=yes
ac_cv_func_fseeko=yes
ac_cv_func_fsync=yes
ac_cv_func_ftime=yes
ac_cv_func_ftruncate=yes
ac_cv_func_funlockfile=yes
ac_cv_func_gai_strerror=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_getdelim=no
ac_cv_func_geteuid=yes
ac_cv_func_getgroups=yes
ac_cv_func_gethostname=yes
ac_cv_func_getline=no
ac_cv_func_getlogin_r=yes
ac_cv_func_getopt_long_only=no
ac_cv_func_getpagesize=yes
ac_cv_func_getpwnam_r=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_initgroups=yes
ac_cv_func_isascii=yes
ac_cv_func_isblank=yes
ac_cv_func_iswprint=yes
ac_cv_func_krb_get_err_text=no
ac_cv_func_login=no
ac_cv_func_logout=no
ac_cv_func_lstat_dereferences_slashed_symlink=no
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_mblen=yes
ac_cv_func_mbrlen=yes
ac_cv_func_mbrtowc=yes
ac_cv_func_mbsinit=yes
ac_cv_func_memchr=yes
ac_cv_func_memmove=yes
ac_cv_func_mempcpy=no
ac_cv_func_memrchr=no
ac_cv_func_mknod=yes
ac_cv_func_mkstemp=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_nanotime=no
ac_cv_func_openat=no
ac_cv_func_posix_memalign=no
ac_cv_func_readlink=yes
ac_cv_func_realloc_0_nonnull=yes
ac_cv_func_regcomp=yes
ac_cv_func_regerror=yes
ac_cv_func_regexec=yes
ac_cv_func_regfree=yes
ac_cv_func_resolvepath=no
ac_cv_func_rpmatch=no
ac_cv_func_setenv=no
ac_cv_func_sigaction=yes
ac_cv_func_sigblock=yes
ac_cv_func_siginterrupt=yes
ac_cv_func_sigprocmask=yes
ac_cv_func_sigsetmask=yes
ac_cv_func_sigvec=yes
ac_cv_func_snprintf=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strerror_r=no
ac_cv_func_strerror_r_char_p=no
ac_cv_func_strftime=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_strtoimax=yes
ac_cv_func_strtol=yes
ac_cv_func_strtoll=yes
ac_cv_func_strtoul=yes
ac_cv_func_strtoull=yes
ac_cv_func_strtoumax=yes
ac_cv_func_tcgetattr=yes
ac_cv_func_tcsetattr=yes
ac_cv_func_timezone=yes
ac_cv_func_tsearch=yes
ac_cv_func_tzset=yes
ac_cv_func_unsetenv=no
ac_cv_func_utime_null=yes
ac_cv_func_vasnprintf=no
ac_cv_func_vasprintf=no
ac_cv_func_vfork=no
ac_cv_func_vfork_works=no
ac_cv_func_vprintf=yes
ac_cv_func_wait3=yes
ac_cv_func_waitpid=yes
ac_cv_func_wcrtomb=yes
ac_cv_func_wcscoll=yes
ac_cv_func_wcslen=yes
ac_cv_func_working_mktime=no
ac_cv_have_decl___fpending=no
ac_cv_have_decl_clearerr_unlocked=yes
ac_cv_have_decl_feof_unlocked=yes
ac_cv_have_decl_ferror_unlocked=yes
ac_cv_have_decl_fflush_unlocked=no
ac_cv_have_decl_fgets_unlocked=no
ac_cv_have_decl_flockfile=yes
ac_cv_have_decl_fputc_unlocked=no
ac_cv_have_decl_fputs_unlocked=no
ac_cv_have_decl_fread_unlocked=no
ac_cv_have_decl_freeaddrinfo=yes
ac_cv_have_decl_funlockfile=yes
ac_cv_have_decl_fwrite_unlocked=no
ac_cv_have_decl_gai_strerror=yes
ac_cv_have_decl_getaddrinfo=yes
ac_cv_have_decl_getc_unlocked=yes
ac_cv_have_decl_getchar_unlocked=yes
ac_cv_have_decl_getcwd=yes
ac_cv_have_decl_getdelim=no
ac_cv_have_decl_getenv=yes
ac_cv_have_decl_getline=no
ac_cv_have_decl_getlogin=yes
ac_cv_have_decl_getlogin_r=yes
ac_cv_have_decl_getpass=yes
ac_cv_have_decl_memrchr=no
ac_cv_have_decl_nanosleep=yes
ac_cv_have_decl_putc_unlocked=yes
ac_cv_have_decl_putchar_unlocked=yes
ac_cv_have_decl_strdup=yes
ac_cv_have_decl_strerror_r=no
ac_cv_have_decl_strtoimax=yes
ac_cv_have_decl_strtoumax=yes
ac_cv_header_OS_h=no
ac_cv_header_direct_h=no
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_getopt_h=yes
ac_cv_header_glob_h=yes
ac_cv_header_gssapi_gssapi_h=no
ac_cv_header_gssapi_h=no
ac_cv_header_inttypes_h=yes
ac_cv_header_io_h=no
ac_cv_header_krb5_h=no
ac_cv_header_locale_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_ndbm_h=yes
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_search_h=yes
ac_cv_header_stat_broken=no
ac_cv_header_stdbool_h=no
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdio_ext_h=no
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_bitypes_h=no
ac_cv_header_sys_bsdtypes_h=no
ac_cv_header_sys_cdefs_h=yes
ac_cv_header_sys_file_h=yes
ac_cv_header_sys_inttypes_h=no
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_resource_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_syslog_h=yes
ac_cv_header_termios_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_header_utime_h=yes
ac_cv_header_vfork_h=no
ac_cv_header_wchar_h=yes
ac_cv_header_wctype_h=yes
ac_cv_header_zlib_h=yes
ac_cv_host=mips-sgi-irix6.5
ac_cv_host_alias=mips-sgi-irix6.5
ac_cv_lib_nsl_main=yes
ac_cv_member_struct_stat_st_blksize=yes
ac_cv_member_struct_stat_st_rdev=yes
ac_cv_member_struct_tm_tm_gmtoff=no
ac_cv_member_struct_tm_tm_zone=no
ac_cv_objext=o
ac_cv_path_CSH=/sbin/csh
ac_cv_path_GMSGFMT=:
ac_cv_path_GPG=gpg
ac_cv_path_MKTEMP=mktemp
ac_cv_path_MSGFMT=:
ac_cv_path_MSGMERGE=:
ac_cv_path_PERL=/usr/sbin/perl
ac_cv_path_PR=/usr/bin/pr
ac_cv_path_PS2PDF='/u/scjones/cvs-nightly/build-aux/missing ps2pdf'
ac_cv_path_ROFF=/usr/local/bin/groff
ac_cv_path_SENDMAIL=/usr/lib/sendmail
ac_cv_path_TEXI2DVI=/usr/local/bin/texi2dvi
ac_cv_path_XGETTEXT=:
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='cc -mips3 -E'
ac_cv_prog_EDITOR=vim
ac_cv_prog_ac_ct_CC='cc -mips3'
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_cc_c_o=yes
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=''
ac_cv_prog_egrep='grep -E'
ac_cv_prog_make_make_set=yes
ac_cv_prog_with_default_rsh=rsh
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_clock_gettime='none required'
ac_cv_search_connect='none required'
ac_cv_search_crypt='none required'
ac_cv_search_getaddrinfo='none required'
ac_cv_search_gethostbyname='none required'
ac_cv_search_getservbyname='none required'
ac_cv_search_getspnam='none required'
ac_cv_search_nanosleep='none required'
ac_cv_search_opendir='none required'
ac_cv_search_strerror='none required'
ac_cv_sizeof_char=1
ac_cv_sizeof_double=8
ac_cv_sizeof_float=4
ac_cv_sizeof_int=4
ac_cv_sizeof_intmax_t=8
ac_cv_sizeof_long=4
ac_cv_sizeof_long_double=16
ac_cv_sizeof_long_long=8
ac_cv_sizeof_ptrdiff_t=4
ac_cv_sizeof_short=2
ac_cv_sizeof_size_t=4
ac_cv_sizeof_wint_t=4
ac_cv_struct_tm=time.h
ac_cv_sys_file_offset_bits=no
ac_cv_sys_interpreter=yes
ac_cv_sys_large_files=no
ac_cv_sys_largefile_CC=no
ac_cv_sys_largefile_source=no
ac_cv_sys_long_file_names=yes
ac_cv_sys_pending_output_n_bytes='fp->_ptr - fp->_base'
ac_cv_type__Bool=no
ac_cv_type_char=yes
ac_cv_type_double=yes
ac_cv_type_float=yes
ac_cv_type_int=yes
ac_cv_type_intmax_t=yes
ac_cv_type_long=yes
ac_cv_type_long_double=yes
ac_cv_type_long_long=yes
ac_cv_type_mbstate_t=yes
ac_cv_type_mode_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_ptrdiff_t=yes
ac_cv_type_short=yes
ac_cv_type_sig_atomic_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_socklen_t=yes
ac_cv_type_struct_addrinfo=yes
ac_cv_type_uid_t=yes
ac_cv_type_unsigned_long_long=yes
ac_cv_type_wint_t=yes
ac_cv_var_tzname=yes
ac_cv_win_or_dos=no
ac_cv_working_alloca_h=yes
acl_cv_hardcode_direct=no
acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
acl_cv_hardcode_libdir_separator=:
acl_cv_hardcode_minus_L=no
acl_cv_libext=a
acl_cv_path_LD=/usr/bin/ld
acl_cv_prog_gnu_ld=no
acl_cv_rpath=done
acl_cv_shlibext=so
acl_cv_wl=-Wl,
acx_cv_case_sensitive=yes
acx_gssapi_cv_gssapi=no
acx_zlib_cv_external_zlib=/usr/local
am_cv_CC_dependencies_compiler_type=sgi
am_cv_func_iconv=yes
am_cv_func_working_getline=no
am_cv_langinfo_codeset=yes
am_cv_lib_iconv=no
bh_cv_c_signed=yes
ccvs_cv_bsd_make_vpath_bug=no
ccvs_cv_func_select_hang=yes
ccvs_cv_sys_cygwin32=no
ccvs_cv_unique_float_type_double='yes(8)'
ccvs_cv_unique_float_type_float='yes(4)'
ccvs_cv_unique_float_type_long_double='yes(16)'
ccvs_cv_unique_int_type_char='yes(1)'
ccvs_cv_unique_int_type_int='yes(4)'
ccvs_cv_unique_int_type_intmax_t=no
ccvs_cv_unique_int_type_long=no
ccvs_cv_unique_int_type_long_long='yes(8)'
ccvs_cv_unique_int_type_ptrdiff_t=no
ccvs_cv_unique_int_type_short='yes(2)'
ccvs_cv_unique_int_type_size_t=no
ccvs_cv_unique_int_type_wint_t=no
cvs_cv_func_printf_ptr=yes
fu_cv_sys_struct_timespec=yes
gl_cv_bitsizeof_long=32
gl_cv_bitsizeof_ptrdiff_t=32
gl_cv_bitsizeof_sig_atomic_t=32
gl_cv_bitsizeof_size_t=32
gl_cv_bitsizeof_unsigned_int=32
gl_cv_bitsizeof_unsigned_long=32
gl_cv_bitsizeof_wchar_t=32
gl_cv_bitsizeof_wint_t=32
gl_cv_c_restrict=__restrict
gl_cv_compound_literals=no
gl_cv_full_path_inttypes_h=/usr/include/inttypes.h
gl_cv_full_path_stdint_h=/usr/include/stdint.h
gl_cv_func_getcwd_null=no
gl_cv_func_malloc_0_nonnull=1
gl_cv_func_mbrtowc=yes
gl_cv_func_mkdir_trailing_slash_bug=no
gl_cv_func_mkstemp_limitations=yes
gl_cv_func_nanosleep=yes
gl_cv_func_re_compile_pattern_working=no
gl_cv_func_tzset_clobber=no
gl_cv_gnu_glob_interface_version_1=no
gl_cv_have_include_next=no
gl_cv_header_inttypes_h=yes
gl_cv_header_stdint_h=yes
gl_cv_header_working_stdint_h=no
gl_cv_long_bitsize_64=no
gl_cv_longlong_bitsize_64=yes
gl_cv_minmax_in_limits_h=no
gl_cv_minmax_in_sys_param_h=yes
gl_cv_socket_ipv4=yes
gl_cv_socket_ipv6=yes
gl_cv_stdint_int64_t=no
gl_cv_stdint_int_fast64_t=no
gl_cv_stdint_int_least64_t=no
gl_cv_stdint_uint64_t=no
gl_cv_stdint_uint_fast64_t=no
gl_cv_stdint_uint_least64_t=no
gl_cv_time_r_posix=yes
gl_cv_type_int16_t=no
gl_cv_type_int32_t=no
gl_cv_type_int64_t=no
gl_cv_type_int8_t=no
gl_cv_type_int_fast16_t=no
gl_cv_type_int_fast32_t=no
gl_cv_type_int_fast64_t=no
gl_cv_type_int_fast8_t=no
gl_cv_type_int_least16_t=no
gl_cv_type_int_least32_t=no
gl_cv_type_int_least64_t=no
gl_cv_type_int_least8_t=no
gl_cv_type_intmax_t=no
gl_cv_type_intptr_t=no
gl_cv_type_long=yes
gl_cv_type_ptrdiff_t=yes
gl_cv_type_sig_atomic_t=yes
gl_cv_type_sig_atomic_t_signed=yes
gl_cv_type_size_t=yes
gl_cv_type_uint16_t=no
gl_cv_type_uint32_t=no
gl_cv_type_uint64_t=no
gl_cv_type_uint8_t=no
gl_cv_type_uint_fast16_t=no
gl_cv_type_uint_fast32_t=no
gl_cv_type_uint_fast64_t=no
gl_cv_type_uint_fast8_t=no
gl_cv_type_uint_least16_t=no
gl_cv_type_uint_least32_t=no
gl_cv_type_uint_least64_t=no
gl_cv_type_uint_least8_t=no
gl_cv_type_uintmax_t=no
gl_cv_type_uintptr_t=no
gl_cv_type_unsigned_int=yes
gl_cv_type_unsigned_long=yes
gl_cv_type_wchar_t=yes
gl_cv_type_wchar_t_signed=yes
gl_cv_type_wint_t=yes
gl_cv_type_wint_t_signed=yes
gt_cv_c_intmax_t=yes
gt_cv_c_long_double=yes
gt_cv_c_wchar_t=yes
gt_cv_c_wint_t=yes
gt_cv_func_CFLocaleCopyCurrent=no
gt_cv_func_CFPreferencesCopyAppValue=no
gt_cv_func_gnugettext1_libc=no
gt_cv_func_gnugettext1_libintl=no
gt_cv_ssize_t=yes
gt_cv_var_environ_declaration=no
gt_cv_var_errno_declaration=yes
jm_cv_func_gettimeofday_clobber=no
jm_cv_func_strtoimax_macro=no
jm_cv_func_strtoumax_macro=no
jm_cv_struct_dirent_d_ino=yes
jm_cv_struct_dirent_d_type=no
vb_cv_func_rename_trailing_slash_bug=no

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /u/scjones/cvs-nightly/build-aux/missing --run aclocal-1.9'
ALLOCA=''
ALLOCA_H=''
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /u/scjones/cvs-nightly/build-aux/missing --run tar'
AUTOCONF='${SHELL} /u/scjones/cvs-nightly/build-aux/missing --run autoconf'
AUTOHEADER='${SHELL} /u/scjones/cvs-nightly/build-aux/missing --run autoheader'
AUTOMAKE='${SHELL} /u/scjones/cvs-nightly/build-aux/missing --run automake-1.9'
AWK='gawk'
BITSIZEOF_INT16_T=''
BITSIZEOF_INT32_T=''
BITSIZEOF_INT64_T=''
BITSIZEOF_INT8_T=''
BITSIZEOF_INTMAX_T=''
BITSIZEOF_INTPTR_T=''
BITSIZEOF_INT_FAST16_T=''
BITSIZEOF_INT_FAST32_T=''
BITSIZEOF_INT_FAST64_T=''
BITSIZEOF_INT_FAST8_T=''
BITSIZEOF_INT_LEAST16_T=''
BITSIZEOF_INT_LEAST32_T=''
BITSIZEOF_INT_LEAST64_T=''
BITSIZEOF_INT_LEAST8_T=''
BITSIZEOF_LONG='32'
BITSIZEOF_PTRDIFF_T='32'
BITSIZEOF_SIG_ATOMIC_T='32'
BITSIZEOF_SIZE_T='32'
BITSIZEOF_UINT16_T=''
BITSIZEOF_UINT32_T=''
BITSIZEOF_UINT64_T=''
BITSIZEOF_UINT8_T=''
BITSIZEOF_UINTMAX_T=''
BITSIZEOF_UINTPTR_T=''
BITSIZEOF_UINT_FAST16_T=''
BITSIZEOF_UINT_FAST32_T=''
BITSIZEOF_UINT_FAST64_T=''
BITSIZEOF_UINT_FAST8_T=''
BITSIZEOF_UINT_LEAST16_T=''
BITSIZEOF_UINT_LEAST32_T=''
BITSIZEOF_UINT_LEAST64_T=''
BITSIZEOF_UINT_LEAST8_T=''
BITSIZEOF_UNSIGNED_INT='32'
BITSIZEOF_UNSIGNED_LONG='32'
BITSIZEOF_WCHAR_T='32'
BITSIZEOF_WINT_T='32'
CC='cc -mips3'
CCDEPMODE='depmode=sgi'
CFLAGS='-g'
CPP='cc -mips3 -E'
CPPFLAGS='-Ino/include'
CSH='/sbin/csh'
CYGPATH_W='echo'
DEFAULT_SIGN_TEMPLATE='gpg --detach-sign --output - %M %@ -- %s'
DEFAULT_SIGN_TEXTMODE='--textmode'
DEFAULT_VERIFY_TEMPLATE='gpg --verify %M %@ -- %S %s'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO_C='ECHO_N=''
ECHO_T=''
EDITOR='vim'
EGREP='grep -E'
EOVERFLOW=''
EXEEXT=''
FNMATCH_H=''
FULL_PATH_INTTYPES_H='/usr/include/inttypes.h'
FULL_PATH_STDINT_H='/usr/include/stdint.h'
GETOPT_H='getopt.h'
GLOB_H='glob.h'
GL_COND_LIBTOOL_FALSE=''
GL_COND_LIBTOOL_TRUE='#'
GMSGFMT=':'
GPG='gpg'
HAVE_INT16_T='0'
HAVE_INT32_T='0'
HAVE_INT64_T='0'
HAVE_INT64_T_IN_STDINT_H='0'
HAVE_INT8_T='0'
HAVE_INTMAX_T='0'
HAVE_INTPTR_T='0'
HAVE_INTTYPES_H='1'
HAVE_INT_FAST16_T='0'
HAVE_INT_FAST32_T='0'
HAVE_INT_FAST64_T='0'
HAVE_INT_FAST64_T_IN_STDINT_H='0'
HAVE_INT_FAST8_T='0'
HAVE_INT_LEAST16_T='0'
HAVE_INT_LEAST32_T='0'
HAVE_INT_LEAST64_T='0'
HAVE_INT_LEAST64_T_IN_STDINT_H='0'
HAVE_INT_LEAST8_T='0'
HAVE_LONG_64BIT='0'
HAVE_LONG_LONG_64BIT='1'
HAVE_SIGNED_SIG_ATOMIC_T='1'
HAVE_SIGNED_WCHAR_T='1'
HAVE_SIGNED_WINT_T='1'
HAVE_STDINT_H='1'
HAVE_SYS_BITYPES_H='0'
HAVE_SYS_INTTYPES_H='0'
HAVE_UINT16_T='0'
HAVE_UINT32_T='0'
HAVE_UINT64_T='0'
HAVE_UINT64_T_IN_STDINT_H='0'
HAVE_UINT8_T='0'
HAVE_UINTMAX_T='0'
HAVE_UINTPTR_T='0'
HAVE_UINT_FAST16_T='0'
HAVE_UINT_FAST32_T='0'
HAVE_UINT_FAST64_T='0'
HAVE_UINT_FAST64_T_IN_STDINT_H='0'
HAVE_UINT_FAST8_T='0'
HAVE_UINT_LEAST16_T='0'
HAVE_UINT_LEAST32_T='0'
HAVE_UINT_LEAST64_T='0'
HAVE_UINT_LEAST64_T_IN_STDINT_H='0'
HAVE_UINT_LEAST8_T='0'
HAVE__BOOL='0'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
INTLLIBS=''
INTL_MACOSX_LIBS=''
KRB4='/usr/kerberos'
LDFLAGS='-Lno/lib'
LIBICONV=''
LIBINTL=''
LIBOBJS=' sunos57-select$U.o save-cwd$U.o lstat$U.o mktime$U.o strftime$U.o 
canon-host$U.o canonicalize$U.o chdir-long$U.o mempcpy$U.o mkdirat$U.o 
openat-die$U.o openat$U.o memrchr$U.o closeout$U.o dirname$U.o exitfail$U.o 
open-safer$U.o creat-safer$U.o filenamecat$U.o __fpending$U.o getcwd$U.o 
getdate$U.o getdelim$U.o getline$U.o getndelim2$U.o getopt$U.o getopt1$U.o 
getpass$U.o gettime$U.o glob$U.o mbchar$U.o md5$U.o mkstemp$U.o tempname$U.o 
pagealign_alloc$U.o quotearg$U.o regex$U.o rpmatch$U.o setenv$U.o unsetenv$U.o 
strcasecmp$U.o strstr$U.o dup-safer$U.o fd-safer$U.o pipe-safer$U.o 
vasnprintf$U.o printf-args$U.o printf-parse$U.o asnprintf$U.o vasprintf$U.o 
asprintf$U.o xmalloc$U.o xgetcwd$U.o xreadlink$U.o yesno$U.o'
LIBS='-lnsl '
LIB_CLOCK_GETTIME=''
LIB_NANOSLEEP=''
LN_S='ln -s'
LTLIBICONV=''
LTLIBINTL=''
LTLIBOBJS=' sunos57-select$U.lo save-cwd$U.lo lstat$U.lo mktime$U.lo 
strftime$U.lo canon-host$U.lo canonicalize$U.lo chdir-long$U.lo mempcpy$U.lo 
mkdirat$U.lo openat-die$U.lo openat$U.lo memrchr$U.lo closeout$U.lo 
dirname$U.lo exitfail$U.lo open-safer$U.lo creat-safer$U.lo filenamecat$U.lo 
__fpending$U.lo getcwd$U.lo getdate$U.lo getdelim$U.lo getline$U.lo 
getndelim2$U.lo getopt$U.lo getopt1$U.lo getpass$U.lo gettime$U.lo glob$U.lo 
mbchar$U.lo md5$U.lo mkstemp$U.lo tempname$U.lo pagealign_alloc$U.lo 
quotearg$U.lo regex$U.lo rpmatch$U.lo setenv$U.lo unsetenv$U.lo strcasecmp$U.lo 
strstr$U.lo dup-safer$U.lo fd-safer$U.lo pipe-safer$U.lo vasnprintf$U.lo 
printf-args$U.lo printf-parse$U.lo asnprintf$U.lo vasprintf$U.lo asprintf$U.lo 
xmalloc$U.lo xgetcwd$U.lo xreadlink$U.lo yesno$U.lo'
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='${SHELL} /u/scjones/cvs-nightly/build-aux/missing --run makeinfo'
MAKE_TARGETS_IN_VPATH_FALSE='#'
MAKE_TARGETS_IN_VPATH_TRUE=''
MKINSTALLDIRS='/u/scjones/cvs-nightly/build-aux/mkinstalldirs'
MKTEMP='mktemp'
MSGFMT=':'
MSGMERGE=':'
OBJEXT='o'
PACKAGE='cvs'
PACKAGE_BUGREPORT='address@hidden'
PACKAGE_NAME='Concurrent Versions System (CVS)'
PACKAGE_STRING='Concurrent Versions System (CVS) 1.12.13.1'
PACKAGE_TARNAME='cvs'
PACKAGE_VERSION='1.12.13.1'
PATH_SEPARATOR=':'
PERL='/usr/sbin/perl'
POSUB=''
PR='/usr/bin/pr'
PS2PDF='/u/scjones/cvs-nightly/build-aux/missing ps2pdf'
RANLIB='ranlib'
ROFF='/usr/local/bin/groff'
RSH_DFLT='rsh'
SAME_TYPE_PTRDIFF_T_LONG='0'
SAME_TYPE_SIG_ATOMIC_T_LONG='0'
SAME_TYPE_SIG_ATOMIC_T_UNSIGNED_LONG=''
SAME_TYPE_SIZE_T_UNSIGNED_LONG='0'
SAME_TYPE_WCHAR_T_LONG='1'
SAME_TYPE_WCHAR_T_UNSIGNED_LONG=''
SAME_TYPE_WINT_T_LONG='1'
SAME_TYPE_WINT_T_UNSIGNED_LONG=''
SENDMAIL='/usr/lib/sendmail'
SET_MAKE=''
SHELL='/bin/sh'
STDBOOL_H='stdbool.h'
STDINT_H='stdint.h'
STRIP=''
SYS_SOCKET_H=''
TEXI2DVI='/usr/local/bin/texi2dvi'
UNISTD_H=''
USE_NLS='no'
VERSION='1.12.13.1'
XGETTEXT=':'
YACC='${SHELL} /u/scjones/cvs-nightly/build-aux/bison-missing --run bison -y'
YFLAGS=''
ZLIB_CPPFLAGS='-I$(top_srcdir)/zlib'
ZLIB_LIBS='$(top_builddir)/zlib/libz.a'
ZLIB_SUBDIRS='zlib'
ac_ct_CC='cc -mips3'
ac_ct_RANLIB='ranlib'
ac_ct_STRIP=''
ac_prefix_program=''
am__fastdepCC_FALSE=''
am__fastdepCC_TRUE='#'
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='mips-sgi-irix6.5'
build_alias=''
build_cpu='mips'
build_os='irix6.5'
build_vendor='sgi'
cvs_client_objects=''
datadir='${prefix}/share'
exec_prefix='${prefix}'
host='mips-sgi-irix6.5'
host_alias=''
host_cpu='mips'
host_os='irix6.5'
host_vendor='sgi'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/u/scjones/cvs-nightly/build-aux/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
mkdir_p='$(install_sh) -d'
oldincludedir='/usr/include'
prefix='/usr/local'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
with_default_rsh='rsh'

## ------------- ##
## Output files. ##
## ------------- ##

MKTEMP_SH_FUNCTION='/u/scjones/cvs-nightly/mktemp.sh'

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define ALLOW_CONFIG_OVERRIDE "/etc/cvs.conf", "/etc/cvs/", NULL
#define AUTH_CLIENT_SUPPORT 1
#define AUTH_SERVER_SUPPORT 1
#define BITSIZEOF_LONG 32
#define BITSIZEOF_PTRDIFF_T 32
#define BITSIZEOF_SIG_ATOMIC_T 32
#define BITSIZEOF_SIZE_T 32
#define BITSIZEOF_UNSIGNED_INT 32
#define BITSIZEOF_UNSIGNED_LONG 32
#define BITSIZEOF_WCHAR_T 32
#define BITSIZEOF_WINT_T 32
#define CLIENT_SUPPORT 1
#define CVS_ADMIN_GROUP "cvsadmin"
#define CVS_BADROOT 1
#define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"
#define DEFAULT_SIGN_TEXTMODE "--textmode"
#define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"
#define D_INO_IN_DIRENT 1
#define EDITOR_DFLT "vim"
#define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0
#define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0
#define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
#define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>
#define FULL_PATH_STDINT_H </usr/include/stdint.h>
#define HAVE_ALARM 1
#define HAVE_ALLOCA 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA_H 1
#define HAVE_ATEXIT 1
#define HAVE_CLOCK_GETTIME 1
#define HAVE_CLOCK_SETTIME 1
#define HAVE_CONNECT 1
#define HAVE_CRYPT 1
#define HAVE_CVS_ADMIN_GROUP 1
#define HAVE_DECL_CLEARERR_UNLOCKED 1
#define HAVE_DECL_FEOF_UNLOCKED 1
#define HAVE_DECL_FERROR_UNLOCKED 1
#define HAVE_DECL_FFLUSH_UNLOCKED 0
#define HAVE_DECL_FGETS_UNLOCKED 0
#define HAVE_DECL_FLOCKFILE 1
#define HAVE_DECL_FPUTC_UNLOCKED 0
#define HAVE_DECL_FPUTS_UNLOCKED 0
#define HAVE_DECL_FREAD_UNLOCKED 0
#define HAVE_DECL_FREEADDRINFO 1
#define HAVE_DECL_FREEADDRINFO 1
#define HAVE_DECL_FUNLOCKFILE 1
#define HAVE_DECL_FWRITE_UNLOCKED 0
#define HAVE_DECL_GAI_STRERROR 1
#define HAVE_DECL_GAI_STRERROR 1
#define HAVE_DECL_GETADDRINFO 1
#define HAVE_DECL_GETADDRINFO 1
#define HAVE_DECL_GETCHAR_UNLOCKED 1
#define HAVE_DECL_GETCWD 1
#define HAVE_DECL_GETC_UNLOCKED 1
#define HAVE_DECL_GETDELIM 0
#define HAVE_DECL_GETENV 1
#define HAVE_DECL_GETLINE 0
#define HAVE_DECL_GETLOGIN 1
#define HAVE_DECL_GETLOGIN_R 1
#define HAVE_DECL_GETPASS 1
#define HAVE_DECL_MEMRCHR 0
#define HAVE_DECL_NANOSLEEP 1
#define HAVE_DECL_NANOSLEEP 1
#define HAVE_DECL_PUTCHAR_UNLOCKED 1
#define HAVE_DECL_PUTC_UNLOCKED 1
#define HAVE_DECL_STRDUP 1
#define HAVE_DECL_STRERROR_R 0
#define HAVE_DECL_STRERROR_R 0
#define HAVE_DECL_STRTOIMAX 1
#define HAVE_DECL_STRTOUMAX 1
#define HAVE_DECL___FPENDING 0
#define HAVE_DIRENT_H 1
#define HAVE_DUP2 1
#define HAVE_ERRNO_DECL 1
#define HAVE_ERRNO_DECL 1
#define HAVE_FCHDIR 1
#define HAVE_FCHDIR 1
#define HAVE_FCHMOD 1
#define HAVE_FCNTL_H 1
#define HAVE_FCNTL_H 1
#define HAVE_FCNTL_H 1
#define HAVE_FLOCKFILE 1
#define HAVE_FLOCKFILE 1
#define HAVE_FORK 1
#define HAVE_FSEEKO 1
#define HAVE_FSYNC 1
#define HAVE_FTIME 1
#define HAVE_FTRUNCATE 1
#define HAVE_FUNLOCKFILE 1
#define HAVE_FUNLOCKFILE 1
#define HAVE_GAI_STRERROR 1
#define HAVE_GAI_STRERROR 1
#define HAVE_GETADDRINFO 1
#define HAVE_GETADDRINFO 1
#define HAVE_GETEUID 1
#define HAVE_GETGROUPS 1
#define HAVE_GETHOSTNAME 1
#define HAVE_GETLOGIN_R 1
#define HAVE_GETLOGIN_R 1
#define HAVE_GETOPT_H 1
#define HAVE_GETPAGESIZE 1
#define HAVE_GETPAGESIZE 1
#define HAVE_GETPAGESIZE 1
#define HAVE_GETPWNAM_R 1
#define HAVE_GETSPNAM 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GLOB_H 1
#define HAVE_ICONV 1
#define HAVE_INITGROUPS 1
#define HAVE_INTMAX_T 1
#define HAVE_INTTYPES_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_INTTYPES_H_WITH_UINTMAX 1
#define HAVE_IPV4 1
#define HAVE_IPV6 1
#define HAVE_ISASCII 1
#define HAVE_ISBLANK 1
#define HAVE_ISWPRINT 1
#define HAVE_LANGINFO_CODESET 1
#define HAVE_LIBNSL 1
#define HAVE_LOCALE_H 1
#define HAVE_LONG_DOUBLE 1
#define HAVE_LONG_FILE_NAMES 1
#define HAVE_LONG_LONG 1
#define HAVE_MALLOC 1
#define HAVE_MBLEN 1
#define HAVE_MBRLEN 1
#define HAVE_MBRTOWC 1
#define HAVE_MBRTOWC 1
#define HAVE_MBRTOWC 1
#define HAVE_MBSINIT 1
#define HAVE_MBSTATE_T 1
#define HAVE_MBSTATE_T 1
#define HAVE_MEMCHR 1
#define HAVE_MEMCHR 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMORY_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MINMAX_IN_SYS_PARAM_H 1
#define HAVE_MKNOD 1
#define HAVE_MKSTEMP 1
#define HAVE_MMAP 1
#define HAVE_NDBM_H 1
#define HAVE_NETDB_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_PRINTF_PTR 1
#define HAVE_PTRDIFF_T 1
#define HAVE_PTRDIFF_T 1
#define HAVE_READLINK 1
#define HAVE_REALLOC 1
#define HAVE_REGCOMP 1
#define HAVE_REGERROR 1
#define HAVE_REGEXEC 1
#define HAVE_REGFREE 1
#define HAVE_RUN_TZSET_TEST 1
#define HAVE_SEARCH_H 1
#define HAVE_SIGACTION 1
#define HAVE_SIGBLOCK 1
#define HAVE_SIGINTERRUPT 1
#define HAVE_SIGNED_SIG_ATOMIC_T 1
#define HAVE_SIGNED_WCHAR_T 1
#define HAVE_SIGNED_WINT_T 1
#define HAVE_SIGPROCMASK 1
#define HAVE_SIGSETMASK 1
#define HAVE_SIGVEC 1
#define HAVE_SIG_ATOMIC_T 1
#define HAVE_SNPRINTF 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H_WITH_UINTMAX 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRCHR 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRFTIME 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRNCASECMP 1
#define HAVE_STRTOIMAX 1
#define HAVE_STRTOL 1
#define HAVE_STRTOLL 1
#define HAVE_STRTOUL 1
#define HAVE_STRTOULL 1
#define HAVE_STRTOUMAX 1
#define HAVE_STRUCT_ADDRINFO 1
#define HAVE_STRUCT_ADDRINFO 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_STRUCT_STAT_ST_RDEV 1
#define HAVE_STRUCT_TIMESPEC 1
#define HAVE_STRUCT_TIMESPEC 1
#define HAVE_SYSLOG_H 1
#define HAVE_SYS_CDEFS_H 1
#define HAVE_SYS_FILE_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TCGETATTR 1
#define HAVE_TCSETATTR 1
#define HAVE_TERMIOS_H 1
#define HAVE_TIMEZONE 1
#define HAVE_TIME_R_POSIX 1
#define HAVE_TSEARCH 1
#define HAVE_TZNAME 1
#define HAVE_TZSET 1
#define HAVE_TZSET 1
#define HAVE_UINTMAX_T 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNSIGNED_LONG_LONG 1
#define HAVE_UTIME_H 1
#define HAVE_UTIME_NULL 1
#define HAVE_VPRINTF 1
#define HAVE_WAIT3 1
#define HAVE_WAITPID 1
#define HAVE_WCHAR_H 1
#define HAVE_WCHAR_T 1
#define HAVE_WCRTOMB 1
#define HAVE_WCSCOLL 1
#define HAVE_WCSLEN 1
#define HAVE_WCTYPE_H 1
#define HAVE_WINT_T 1
#define HAVE_WINT_T 1
#define HAVE_WORKING_FORK 1
#define HAVE_ZLIB_H 1
#define LOCK_COMPATIBILITY 1
#define MALLOC_0_IS_NONNULL 1
#define MY_NDBM 1
#define PACKAGE_BUGREPORT "address@hidden"
#define PACKAGE_NAME "Concurrent Versions System (CVS)"
#define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"
#define PACKAGE_TARNAME "cvs"
#define PACKAGE_VERSION "1.12.13.1"
#define PAM_SERVICE_NAME "cvs"
#define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base
#define PROXY_SUPPORT 1
#define PR_PROGRAM "/usr/bin/pr"
#define REGEX_MALLOC 1
#define RETSIGTYPE void
#define RSH_DFLT "rsh"
#define SERVER_FLOWCONTROL 1
#define SERVER_HI_WATER (2 * 1024 * 1024)
#define SERVER_LO_WATER (1 * 1024 * 1024)
#define SERVER_SUPPORT 1
#define SIZEOF_CHAR 1
#define SIZEOF_DOUBLE 8
#define SIZEOF_FLOAT 4
#define SIZEOF_INT 4
#define SIZEOF_INTMAX_T 8
#define SIZEOF_LONG 4
#define SIZEOF_LONG_DOUBLE 16
#define SIZEOF_LONG_LONG 8
#define SIZEOF_PTRDIFF_T 4
#define SIZEOF_SHORT 2
#define SIZEOF_SIZE_T 4
#define SIZEOF_WINT_T 4
#define SIZE_MAX (((1U << 31) - 1) * 2 + 1)
#define STDC_HEADERS 1
#define STDC_HEADERS 1
#define SUPPORT_OLD_INFO_FMT_STRINGS 1
#define TIME_WITH_SYS_TIME 1
#define TMPDIR_DFLT "/tmp"
#define UMASK_DFLT 002
#define UNIQUE_FLOAT_TYPE_DOUBLE 1
#define UNIQUE_FLOAT_TYPE_FLOAT 1
#define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1
#define UNIQUE_INT_TYPE_CHAR 1
#define UNIQUE_INT_TYPE_INT 1
#define UNIQUE_INT_TYPE_LONG_LONG 1
#define UNIQUE_INT_TYPE_SHORT 1
#define USE_UNLOCKED_IO 1
#define WORDS_BIGENDIAN 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _REGEX_LARGE_OFFSETS 1
#define _REGEX_RE_COMP 1
#define __EXTENSIONS__ 1
#define __GETCWD_PREFIX rpl_
#define __GETOPT_PREFIX rpl_
#define __OPENAT_PREFIX rpl_
#define __OPENAT_PREFIX rpl_
#define getline gnu_getline
#define getpass gnu_getpass
#define inline __inline
#define mkstemp rpl_mkstemp
#define mktime rpl_mktime
#define my_strftime nstrftime
#define re_comp rpl_re_comp
#define re_compile_fastmap rpl_re_compile_fastmap
#define re_compile_pattern rpl_re_compile_pattern
#define re_exec rpl_re_exec
#define re_match rpl_re_match
#define re_match_2 rpl_re_match_2
#define re_search rpl_re_search
#define re_search_2 rpl_re_search_2
#define re_set_registers rpl_re_set_registers
#define re_set_syntax rpl_re_set_syntax
#define re_syntax_options rpl_re_syntax_options
#define regcomp rpl_regcomp
#define regerror rpl_regerror
#define regexec rpl_regexec
#define regfree rpl_regfree
#define restrict __restrict
#define restrict __restrict
#define select rpl_select
#define strcasecmp rpl_strcasecmp
#define vfork fork
#endif
#ifndef __cplusplus

configure: exit 0

--%--multipart-mixed-boundary-1.4383.1150578062--%
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Description: C program text
Content-Disposition: attachment; filename="config.h"

/* config.h.  Generated by configure.  */
/* config.h.in.  Generated from configure.in by autoheader.  */

/* Define this to a NULL terminated list of allowed path prefixes (for
   directories) and paths to files the CVS server will allow configuration to
   be read from when specified from the command line. */
#define ALLOW_CONFIG_OVERRIDE "/etc/cvs.conf", "/etc/cvs/", NULL

/* Enable AUTH_CLIENT_SUPPORT to enable pserver as a remote access method in
   the CVS client (default) */
#define AUTH_CLIENT_SUPPORT 1

/* Define if you want to use the password authenticated server. */
#define AUTH_SERVER_SUPPORT 1

/* Define to the number of bits in type 'int16_t'. */
/* #undef BITSIZEOF_INT16_T */

/* Define to the number of bits in type 'int32_t'. */
/* #undef BITSIZEOF_INT32_T */

/* Define to the number of bits in type 'int64_t'. */
/* #undef BITSIZEOF_INT64_T */

/* Define to the number of bits in type 'int8_t'. */
/* #undef BITSIZEOF_INT8_T */

/* Define to the number of bits in type 'intmax_t'. */
/* #undef BITSIZEOF_INTMAX_T */

/* Define to the number of bits in type 'intptr_t'. */
/* #undef BITSIZEOF_INTPTR_T */

/* Define to the number of bits in type 'int_fast16_t'. */
/* #undef BITSIZEOF_INT_FAST16_T */

/* Define to the number of bits in type 'int_fast32_t'. */
/* #undef BITSIZEOF_INT_FAST32_T */

/* Define to the number of bits in type 'int_fast64_t'. */
/* #undef BITSIZEOF_INT_FAST64_T */

/* Define to the number of bits in type 'int_fast8_t'. */
/* #undef BITSIZEOF_INT_FAST8_T */

/* Define to the number of bits in type 'int_least16_t'. */
/* #undef BITSIZEOF_INT_LEAST16_T */

/* Define to the number of bits in type 'int_least32_t'. */
/* #undef BITSIZEOF_INT_LEAST32_T */

/* Define to the number of bits in type 'int_least64_t'. */
/* #undef BITSIZEOF_INT_LEAST64_T */

/* Define to the number of bits in type 'int_least8_t'. */
/* #undef BITSIZEOF_INT_LEAST8_T */

/* Define to the number of bits in type 'long'. */
#define BITSIZEOF_LONG 32

/* Define to the number of bits in type 'ptrdiff_t'. */
#define BITSIZEOF_PTRDIFF_T 32

/* Define to the number of bits in type 'sig_atomic_t'. */
#define BITSIZEOF_SIG_ATOMIC_T 32

/* Define to the number of bits in type 'size_t'. */
#define BITSIZEOF_SIZE_T 32

/* Define to the number of bits in type 'uint16_t'. */
/* #undef BITSIZEOF_UINT16_T */

/* Define to the number of bits in type 'uint32_t'. */
/* #undef BITSIZEOF_UINT32_T */

/* Define to the number of bits in type 'uint64_t'. */
/* #undef BITSIZEOF_UINT64_T */

/* Define to the number of bits in type 'uint8_t'. */
/* #undef BITSIZEOF_UINT8_T */

/* Define to the number of bits in type 'uintmax_t'. */
/* #undef BITSIZEOF_UINTMAX_T */

/* Define to the number of bits in type 'uintptr_t'. */
/* #undef BITSIZEOF_UINTPTR_T */

/* Define to the number of bits in type 'uint_fast16_t'. */
/* #undef BITSIZEOF_UINT_FAST16_T */

/* Define to the number of bits in type 'uint_fast32_t'. */
/* #undef BITSIZEOF_UINT_FAST32_T */

/* Define to the number of bits in type 'uint_fast64_t'. */
/* #undef BITSIZEOF_UINT_FAST64_T */

/* Define to the number of bits in type 'uint_fast8_t'. */
/* #undef BITSIZEOF_UINT_FAST8_T */

/* Define to the number of bits in type 'uint_least16_t'. */
/* #undef BITSIZEOF_UINT_LEAST16_T */

/* Define to the number of bits in type 'uint_least32_t'. */
/* #undef BITSIZEOF_UINT_LEAST32_T */

/* Define to the number of bits in type 'uint_least64_t'. */
/* #undef BITSIZEOF_UINT_LEAST64_T */

/* Define to the number of bits in type 'uint_least8_t'. */
/* #undef BITSIZEOF_UINT_LEAST8_T */

/* Define to the number of bits in type 'unsigned_int'. */
#define BITSIZEOF_UNSIGNED_INT 32

/* Define to the number of bits in type 'unsigned_long'. */
#define BITSIZEOF_UNSIGNED_LONG 32

/* Define to the number of bits in type 'wchar_t'. */
#define BITSIZEOF_WCHAR_T 32

/* Define to the number of bits in type 'wint_t'. */
#define BITSIZEOF_WINT_T 32

/* Define if you want CVS to be able to be a remote repository client. */
#define CLIENT_SUPPORT 1

/* Define to 1 if the `closedir' function returns void instead of `int'. */
/* #undef CLOSEDIR_VOID */

/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
   systems. This function is required for `alloca.c' support on those systems.
   */
/* #undef CRAY_STACKSEG_END */

/* define if cross compiling */
/* #undef CROSS_COMPILING */

/* The CVS admin command is restricted to the members of the group
   CVS_ADMIN_GROUP. If this group does not exist, all users are allowed to run
   CVS admin. To disable the CVS admin command for all users, create an empty
   CVS_ADMIN_GROUP by running configure with the --with-cvs-admin-group=
   option. To disable access control for CVS admin, run configure with the
   --without-cvs-admin-group option in order to comment out the define below.
   */
#define CVS_ADMIN_GROUP "cvsadmin"

/* When committing a permanent change, CVS and RCS make a log entry of who
   committed the change. If you are committing the change logged in as "root"
   (not under "su" or other root-priv giving program), CVS/RCS cannot
   determine who is actually making the change. As such, by default, CVS
   prohibits changes committed by users logged in as "root". You can disable
   checking by passing the "--enable-rootcommit" option to configure or by
   commenting out the lines below. */
#define CVS_BADROOT 1

/* Define to 1 if using `alloca.c'. */
/* #undef C_ALLOCA */

/* Define to a command line template that will write an OpenPGP signature for
   the file `%s' to its standard out. `%M' is substituted at run time with an
   option which flags files as text files, when necessary, and the empty
   string, otherwise. `%@' is substituted with a list of arguments provided by
   the user. */
#define DEFAULT_SIGN_TEMPLATE "gpg --detach-sign --output - %M %@ -- %s"

/* Define to the option string that the OpenPGP program used in the
   DEFAULT_SIGN_TEMPLATE & DEFAULT_VERIFY_TEMPLATE would like to see for text
   files (substituted at run time in place of `%M' in both templates). */
#define DEFAULT_SIGN_TEXTMODE "--textmode"

/* Define to a command line template that will read an OpenPGP signature from
   the file `%s' and use it to verify the integrity of the file `%d'. `%M' is
   substituted at run time with an option which flags files as text files,
   when necessary, and the empty string, otherwise. `%@' is substituted with a
   list of arguments provided by the user. */
#define DEFAULT_VERIFY_TEMPLATE "gpg --verify %M %@ -- %S %s"

/* Define if there is a member named d_ino in the struct describing directory
   headers. */
#define D_INO_IN_DIRENT 1

/* The default editor to use, if one does not specify the "-e" option to cvs,
   or does not have an EDITOR environment variable. If this is not set to an
   absolute path to an executable, use the shell to find where the editor
   actually is. This allows sites with /usr/bin/vi or /usr/ucb/vi to work
   equally well (assuming that their PATH is reasonable). */
#define EDITOR_DFLT "vim"

/* Define to 1 if translation of program messages to the user's native
   language is requested. */
/* #undef ENABLE_NLS */

/* Define to enable encryption support. */
/* #undef ENCRYPTION */

/* Define as good substitute value for EOVERFLOW. */
/* #undef EOVERFLOW */

/* Define if this executable will be running on case insensitive file systems.
   In the client case, this means that it will request that the server pretend
   to be case insensitive if it isn't already. */
/* #undef FILENAMES_CASE_INSENSITIVE */

/* Define on systems for which file names may have a so-called `drive letter'
   prefix, define this to compute the length of that prefix, including the
   colon. */
#define FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX 0

/* Define if the backslash character may also serve as a file name component
   separator. */
#define FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR 0

#if FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX
# define FILE_SYSTEM_PREFIX_LEN(Filename) \
  ((Filename)[0] && (Filename)[1] == ':' ? 2 : 0)
#else
# define FILE_SYSTEM_PREFIX_LEN(Filename) 0
#endif

/* When committing or importing files, you must enter a log message. Normally,
   you can do this either via the -m flag on the command line, the -F flag on
   the command line, or an editor will be started for you. If you like to use
   logging templates (the rcsinfo file within the $CVSROOT/CVSROOT directory),
   you might want to force people to use the editor even if they specify a
   message with -m or -F. Enabling FORCE_USE_EDITOR will cause the -m or -F
   message to be appended to the temp file when the editor is started. */
/* #undef FORCE_USE_EDITOR */

/* Define this to the full path to <inttypes.h>. */
#define FULL_PATH_INTTYPES_H </usr/include/inttypes.h>

/* Define this to the full path to <stdint.h>. */
#define FULL_PATH_STDINT_H </usr/include/stdint.h>

/* Define to an alternative value if GSS_C_NT_HOSTBASED_SERVICE isn't defined
   in the gssapi.h header file. MIT Kerberos 1.2.1 requires this. Only
   relevant when using GSSAPI. */
/* #undef GSS_C_NT_HOSTBASED_SERVICE */

/* Define to 1 if you have the `alarm' function. */
#define HAVE_ALARM 1

/* Define to 1 if you have `alloca' after including <alloca.h>, a header that
   may be supplied by this distribution. */
#define HAVE_ALLOCA 1

/* Define HAVE_ALLOCA_H for backward compatibility with older code that
   includes <alloca.h> only if HAVE_ALLOCA_H is defined. */
#define HAVE_ALLOCA_H 1

/* Define to 1 if you have the `atexit' function. */
#define HAVE_ATEXIT 1

/* Define to 1 if you have the <bp-sym.h> header file. */
/* #undef HAVE_BP_SYM_H */

/* Define to 1 if you have the `btowc' function. */
/* #undef HAVE_BTOWC */

/* Define to 1 if you have the `canonicalize_file_name' function. */
/* #undef HAVE_CANONICALIZE_FILE_NAME */

/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
   CoreFoundation framework. */
/* #undef HAVE_CFLOCALECOPYCURRENT */

/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
   the CoreFoundation framework. */
/* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */

/* Define to 1 if you have the `chsize' function. */
/* #undef HAVE_CHSIZE */

/* Define to 1 if you have the `clock_gettime' function. */
#define HAVE_CLOCK_GETTIME 1

/* Define to 1 if you have the `clock_settime' function. */
#define HAVE_CLOCK_SETTIME 1

/* Define if you have compound literals. */
/* #undef HAVE_COMPOUND_LITERALS */

/* Define if you have the connect function. */
#define HAVE_CONNECT 1

/* Define if you have the crypt function. */
#define HAVE_CRYPT 1

/* Define if CVS_ADMIN_GROUP should be used. */
#define HAVE_CVS_ADMIN_GROUP 1

/* Define if the GNU dcgettext() function is already present or preinstalled.
   */
/* #undef HAVE_DCGETTEXT */

/* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_CLEARERR_UNLOCKED 1

/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
   don't. */
#define HAVE_DECL_FEOF_UNLOCKED 1

/* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_FERROR_UNLOCKED 1

/* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_FFLUSH_UNLOCKED 0

/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_FGETS_UNLOCKED 0

/* Define to 1 if you have the declaration of `flockfile', and to 0 if you
   don't. */
#define HAVE_DECL_FLOCKFILE 1

/* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_FPUTC_UNLOCKED 0

/* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_FPUTS_UNLOCKED 0

/* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_FREAD_UNLOCKED 0

/* Define to 1 if you have the declaration of `freeaddrinfo', and to 0 if you
   don't. */
#define HAVE_DECL_FREEADDRINFO 1

/* Define to 1 if you have the declaration of `funlockfile', and to 0 if you
   don't. */
#define HAVE_DECL_FUNLOCKFILE 1

/* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_FWRITE_UNLOCKED 0

/* Define to 1 if you have the declaration of `gai_strerror', and to 0 if you
   don't. */
#define HAVE_DECL_GAI_STRERROR 1

/* Define to 1 if you have the declaration of `getaddrinfo', and to 0 if you
   don't. */
#define HAVE_DECL_GETADDRINFO 1

/* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_GETCHAR_UNLOCKED 1

/* Define to 1 if you have the declaration of `getcwd', and to 0 if you don't.
   */
#define HAVE_DECL_GETCWD 1

/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
   don't. */
#define HAVE_DECL_GETC_UNLOCKED 1

/* Define to 1 if you have the declaration of `getdelim', and to 0 if you
   don't. */
#define HAVE_DECL_GETDELIM 0

/* Define to 1 if you have the declaration of `getenv', and to 0 if you don't.
   */
#define HAVE_DECL_GETENV 1

/* Define to 1 if you have the declaration of `getline', and to 0 if you
   don't. */
#define HAVE_DECL_GETLINE 0

/* Define to 1 if you have the declaration of `getlogin', and to 0 if you
   don't. */
#define HAVE_DECL_GETLOGIN 1

/* Define to 1 if you have the declaration of `getlogin_r', and to 0 if you
   don't. */
#define HAVE_DECL_GETLOGIN_R 1

/* Define to 1 if you have the declaration of `getpass', and to 0 if you
   don't. */
#define HAVE_DECL_GETPASS 1

/* Define to 1 if you have the declaration of `memrchr', and to 0 if you
   don't. */
#define HAVE_DECL_MEMRCHR 0

/* Define to 1 if you have the declaration of `nanosleep', and to 0 if you
   don't. */
#define HAVE_DECL_NANOSLEEP 1

/* Define to 1 if you have the declaration of `putchar_unlocked', and to 0 if
   you don't. */
#define HAVE_DECL_PUTCHAR_UNLOCKED 1

/* Define to 1 if you have the declaration of `putc_unlocked', and to 0 if you
   don't. */
#define HAVE_DECL_PUTC_UNLOCKED 1

/* Define to 1 if you have the declaration of `strdup', and to 0 if you don't.
   */
#define HAVE_DECL_STRDUP 1

/* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
   don't. */
#define HAVE_DECL_STRERROR_R 0

/* Define to 1 if you have the declaration of `strtoimax', and to 0 if you
   don't. */
#define HAVE_DECL_STRTOIMAX 1

/* Define to 1 if you have the declaration of `strtoll', and to 0 if you
   don't. */
/* #undef HAVE_DECL_STRTOLL */

/* Define to 1 if you have the declaration of `strtoull', and to 0 if you
   don't. */
/* #undef HAVE_DECL_STRTOULL */

/* Define to 1 if you have the declaration of `strtoumax', and to 0 if you
   don't. */
#define HAVE_DECL_STRTOUMAX 1

/* Define to 1 if you have the declaration of `__fpending', and to 0 if you
   don't. */
#define HAVE_DECL___FPENDING 0

/* Define to 1 if you have the <direct.h> header file. */
/* #undef HAVE_DIRECT_H */

/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
   */
#define HAVE_DIRENT_H 1

/* Define to 1 if you have the `dup2' function. */
#define HAVE_DUP2 1

/* Define if you have the declaration of environ. */
/* #undef HAVE_ENVIRON_DECL */

/* Define if you have the declaration of errno. */
#define HAVE_ERRNO_DECL 1

/* Define to 1 if you have the `fchdir' function. */
#define HAVE_FCHDIR 1

/* Define to 1 if you have the `fchmod' function. */
#define HAVE_FCHMOD 1

/* Define to 1 if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1

/* Define to 1 if you have the `fdopendir' function. */
/* #undef HAVE_FDOPENDIR */

/* Define to 1 if you have the `flockfile' function. */
#define HAVE_FLOCKFILE 1

/* Define to 1 if you have the `fork' function. */
#define HAVE_FORK 1

/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
#define HAVE_FSEEKO 1

/* Define to 1 if you have the `fsync' function. */
#define HAVE_FSYNC 1

/* Define to 1 if you have the `ftime' function. */
#define HAVE_FTIME 1

/* Define to 1 if you have the `ftruncate' function. */
#define HAVE_FTRUNCATE 1

/* Define to 1 if you have the `funlockfile' function. */
#define HAVE_FUNLOCKFILE 1

/* Define to 1 if you have the `gai_strerror' function. */
#define HAVE_GAI_STRERROR 1

/* Define to 1 if you have the `getaddrinfo' function. */
#define HAVE_GETADDRINFO 1

/* Define to 1 if you have the `getdelim' function. */
/* #undef HAVE_GETDELIM */

/* Define to 1 if you have the `geteuid' function. */
#define HAVE_GETEUID 1

/* Define to 1 if you have the `getgroups' function. */
#define HAVE_GETGROUPS 1

/* Define to 1 if you have the `gethostname' function. */
#define HAVE_GETHOSTNAME 1

/* Define to 1 if you have the `getlogin_r' function. */
#define HAVE_GETLOGIN_R 1

/* Define to 1 if you have the <getopt.h> header file. */
#define HAVE_GETOPT_H 1

/* Define to 1 if you have the `getopt_long_only' function. */
/* #undef HAVE_GETOPT_LONG_ONLY */

/* Define to 1 if you have the `getpagesize' function. */
#define HAVE_GETPAGESIZE 1

/* Define to 1 if you have the `getpwnam_r' function. */
#define HAVE_GETPWNAM_R 1

/* Define if you have the getspnam function. */
#define HAVE_GETSPNAM 1

/* Define if the GNU gettext() function is already present or preinstalled. */
/* #undef HAVE_GETTEXT */

/* Define to 1 if you have the `gettimeofday' function. */
#define HAVE_GETTIMEOFDAY 1

/* Define to 1 if you have the <glob.h> header file. */
#define HAVE_GLOB_H 1

/* Define if you have GSSAPI with Kerberos version 5 available. */
/* #undef HAVE_GSSAPI */

/* Define to 1 if you have the <gssapi/gssapi_generic.h> header file. */
/* #undef HAVE_GSSAPI_GSSAPI_GENERIC_H */

/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
/* #undef HAVE_GSSAPI_GSSAPI_H */

/* Define to 1 if you have the <gssapi.h> header file. */
/* #undef HAVE_GSSAPI_H */

/* Define if you have the iconv() function. */
#define HAVE_ICONV 1

/* Define if your compiler supports the #include_next directive. */
/* #undef HAVE_INCLUDE_NEXT */

/* Define to 1 if you have the `initgroups' function. */
#define HAVE_INITGROUPS 1

/* Define to 1 if the type 'int16_t' is already defined. */
/* #undef HAVE_INT16_T */

/* Define to 1 if the type 'int32_t' is already defined. */
/* #undef HAVE_INT32_T */

/* Define to 1 if the type 'int64_t' is already defined. */
/* #undef HAVE_INT64_T */

/* Define to 1 if the type 'int64_t' is already definedin <stdint.h>. */
/* #undef HAVE_INT64_T_IN_STDINT_H */

/* Define to 1 if the type 'int8_t' is already defined. */
/* #undef HAVE_INT8_T */

/* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
#define HAVE_INTMAX_T 1

/* Define to 1 if the type 'intptr_t' is already defined. */
/* #undef HAVE_INTPTR_T */

/* Define if <inttypes.h> exists and doesn't clash with <sys/types.h>. */
#define HAVE_INTTYPES_H 1

/* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
   declares uintmax_t. */
#define HAVE_INTTYPES_H_WITH_UINTMAX 1

/* Define to 1 if the type 'int_fast16_t' is already defined. */
/* #undef HAVE_INT_FAST16_T */

/* Define to 1 if the type 'int_fast32_t' is already defined. */
/* #undef HAVE_INT_FAST32_T */

/* Define to 1 if the type 'int_fast64_t' is already defined. */
/* #undef HAVE_INT_FAST64_T */

/* Define to 1 if the type 'int_fast64_t' is already definedin <stdint.h>. */
/* #undef HAVE_INT_FAST64_T_IN_STDINT_H */

/* Define to 1 if the type 'int_fast8_t' is already defined. */
/* #undef HAVE_INT_FAST8_T */

/* Define to 1 if the type 'int_least16_t' is already defined. */
/* #undef HAVE_INT_LEAST16_T */

/* Define to 1 if the type 'int_least32_t' is already defined. */
/* #undef HAVE_INT_LEAST32_T */

/* Define to 1 if the type 'int_least64_t' is already defined. */
/* #undef HAVE_INT_LEAST64_T */

/* Define to 1 if the type 'int_least64_t' is already definedin <stdint.h>. */
/* #undef HAVE_INT_LEAST64_T_IN_STDINT_H */

/* Define to 1 if the type 'int_least8_t' is already defined. */
/* #undef HAVE_INT_LEAST8_T */

/* Define to 1 if you have the <io.h> header file. */
/* #undef HAVE_IO_H */

/* Define to 1 if <sys/socket.h> defines AF_INET. */
#define HAVE_IPV4 1

/* Define to 1 if <sys/socket.h> defines AF_INET6. */
#define HAVE_IPV6 1

/* Define to 1 if you have the `isascii' function. */
#define HAVE_ISASCII 1

/* Define to 1 if you have the `isblank' function. */
#define HAVE_ISBLANK 1

/* Define to 1 if you have the `iswprint' function. */
#define HAVE_ISWPRINT 1

/* Define if you have MIT Kerberos version 4 available. */
/* #undef HAVE_KERBEROS */

/* Define to 1 if you have the <krb5.h> header file. */
/* #undef HAVE_KRB5_H */

/* Define to 1 if you have the `krb_get_err_text' function. */
/* #undef HAVE_KRB_GET_ERR_TEXT */

/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
#define HAVE_LANGINFO_CODESET 1

/* Define to 1 if you have the `krb' library (-lkrb). */
/* #undef HAVE_LIBKRB */

/* Define to 1 if you have the `krb4' library (-lkrb4). */
/* #undef HAVE_LIBKRB4 */

/* Define to 1 if you have the `nsl' library (-lnsl). */
#define HAVE_LIBNSL 1

/* Define to 1 if you have the <locale.h> header file. */
#define HAVE_LOCALE_H 1

/* Define to 1 if you have the `login' function. */
/* #undef HAVE_LOGIN */

/* Define to 1 if you have the `logout' function. */
/* #undef HAVE_LOGOUT */

/* Define if you have the 'long double' type. */
#define HAVE_LONG_DOUBLE 1

/* Define to 1 if you support file names longer than 14 characters. */
#define HAVE_LONG_FILE_NAMES 1

/* Define if you have the 'long long' type. */
#define HAVE_LONG_LONG 1

/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
   to 0 otherwise. */
#define HAVE_MALLOC 1

/* Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including
   config.h and <sys/mman.h>. */
/* #undef HAVE_MAP_ANONYMOUS */

/* Define to 1 if you have the `mblen' function. */
#define HAVE_MBLEN 1

/* Define to 1 if you have the `mbrlen' function. */
#define HAVE_MBRLEN 1

/* Define to 1 if you have the `mbrtowc' function. */
#define HAVE_MBRTOWC 1

/* Define to 1 if you have the `mbsinit' function. */
#define HAVE_MBSINIT 1

/* Define to 1 if you have the `mbsrtowcs' function. */
/* #undef HAVE_MBSRTOWCS */

/* Define to 1 if <wchar.h> declares mbstate_t. */
#define HAVE_MBSTATE_T 1

/* Define if you have memchr (always for CVS). */
#define HAVE_MEMCHR 1

/* Define to 1 if you have the `memmove' function. */
#define HAVE_MEMMOVE 1

/* Define to 1 if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1

/* Define to 1 if you have the `mempcpy' function. */
/* #undef HAVE_MEMPCPY */

/* Define to 1 if you have the `memrchr' function. */
/* #undef HAVE_MEMRCHR */

/* Define to 1 if <limits.h> defines the MIN and MAX macros. */
/* #undef HAVE_MINMAX_IN_LIMITS_H */

/* Define to 1 if <sys/param.h> defines the MIN and MAX macros. */
#define HAVE_MINMAX_IN_SYS_PARAM_H 1

/* Define to 1 if you have the `mknod' function. */
#define HAVE_MKNOD 1

/* Define to 1 if you have the `mkstemp' function. */
#define HAVE_MKSTEMP 1

/* Define to 1 if you have a working `mmap' system call. */
#define HAVE_MMAP 1

/* Define to 1 if you have the `nanotime' function. */
/* #undef HAVE_NANOTIME */

/* Define to 1 if you have the <ndbm.h> header file. */
#define HAVE_NDBM_H 1

/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
/* #undef HAVE_NDIR_H */

/* Define to 1 if you have the <netdb.h> header file. */
#define HAVE_NETDB_H 1

/* Define to 1 if you have the <netinet/in.h> header file. */
#define HAVE_NETINET_IN_H 1

/* Define to 1 if you have the `openat' function. */
/* #undef HAVE_OPENAT */

/* Define if an OpenPGP capable program is available (and, assumedly, usable
   command line templates are in the DEFAULT_SIGN_TEMPLATE and
   DEFAULT_VERIFY_TEMPLATE macros). */
/* #undef HAVE_OPENPGP */

/* Define to 1 if you have the <OS.h> header file. */
/* #undef HAVE_OS_H */

/* Define to enable system authentication with PAM instead of using the simple
   getpwnam interface. This allows authentication (in theory) with any PAM
   module, e.g. on systems with shadow passwords or via LDAP */
/* #undef HAVE_PAM */

/* Define to 1 if pam/pam_appl.h is available */
/* #undef HAVE_PAM_PAM_APPL_H */

/* Define to 1 if getcwd works, except it sometimes fails when it shouldn't,
   setting errno to ERANGE, ENAMETOOLONG, or ENOENT. If __GETCWD_PREFIX is not
   defined, it doesn't matter whether HAVE_PARTLY_WORKING_GETCWD is defined.
   */
/* #undef HAVE_PARTLY_WORKING_GETCWD */

/* Define to 1 if you have the `posix_memalign' function. */
/* #undef HAVE_POSIX_MEMALIGN */

/* Define to 1 if the `printf' function supports the %p format for printing
   pointers. */
#define HAVE_PRINTF_PTR 1

/* Define to 1 if the system has the type `ptrdiff_t'. */
#define HAVE_PTRDIFF_T 1

/* Define to 1 if you have the `readlink' function. */
#define HAVE_READLINK 1

/* Define to 1 if your system has a GNU libc compatible `realloc' function,
   and to 0 otherwise. */
#define HAVE_REALLOC 1

/* Define to 1 if you have the `regcomp' function. */
#define HAVE_REGCOMP 1

/* Define to 1 if you have the `regerror' function. */
#define HAVE_REGERROR 1

/* Define to 1 if you have the `regexec' function. */
#define HAVE_REGEXEC 1

/* Define to 1 if you have the `regfree' function. */
#define HAVE_REGFREE 1

/* Define to 1 if you have the `resolvepath' function. */
/* #undef HAVE_RESOLVEPATH */

/* Define to 1 if you have the `rpmatch' function. */
/* #undef HAVE_RPMATCH */

/* Define to 1 if you have run the test for working tzset. */
#define HAVE_RUN_TZSET_TEST 1

/* Define to 1 if you have the <search.h> header file. */
#define HAVE_SEARCH_H 1

/* Define to 1 if security/pam_appl.h is available */
/* #undef HAVE_SECURITY_PAM_APPL_H */

/* Define to 1 if you have the `setenv' function. */
/* #undef HAVE_SETENV */

/* Define if the diff library should use setmode for binary files. */
/* #undef HAVE_SETMODE */

/* Define to 1 if you have the `sigaction' function. */
#define HAVE_SIGACTION 1

/* Define to 1 if you have the `sigblock' function. */
#define HAVE_SIGBLOCK 1

/* Define to 1 if you have the `siginterrupt' function. */
#define HAVE_SIGINTERRUPT 1

/* Define to 1 if 'sig_atomic_t' is a signed integer type. */
#define HAVE_SIGNED_SIG_ATOMIC_T 1

/* Define to 1 if 'wchar_t' is a signed integer type. */
#define HAVE_SIGNED_WCHAR_T 1

/* Define to 1 if 'wint_t' is a signed integer type. */
#define HAVE_SIGNED_WINT_T 1

/* Define to 1 if you have the `sigprocmask' function. */
#define HAVE_SIGPROCMASK 1

/* Define to 1 if you have the `sigsetmask' function. */
#define HAVE_SIGSETMASK 1

/* Define to 1 if you have the `sigvec' function. */
#define HAVE_SIGVEC 1

/* Define to 1 if the system has the type `sig_atomic_t'. */
#define HAVE_SIG_ATOMIC_T 1

/* Define to 1 if you have the `snprintf' function. */
#define HAVE_SNPRINTF 1

/* Define to 1 if stdbool.h conforms to C99. */
/* #undef HAVE_STDBOOL_H */

/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1

/* Define if <stdint.h> exists, doesn't clash with <sys/types.h>, and declares
   uintmax_t. */
#define HAVE_STDINT_H_WITH_UINTMAX 1

/* Define to 1 if you have the <stdio_ext.h> header file. */
/* #undef HAVE_STDIO_EXT_H */

/* Define to 1 if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1

/* Define if you have strchr (always for CVS). */
#define HAVE_STRCHR 1

/* Define to 1 if you have the `strdup' function. */
#define HAVE_STRDUP 1

/* Define to 1 if you have the `strerror' function. */
#define HAVE_STRERROR 1

/* Define to 1 if you have the `strerror_r' function. */
/* #undef HAVE_STRERROR_R */

/* Define to 1 if you have the `strftime' function. */
#define HAVE_STRFTIME 1

/* Define to 1 if you have the <strings.h> header file. */
#define HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define HAVE_STRING_H 1

/* Define to 1 if you have the `strncasecmp' function. */
#define HAVE_STRNCASECMP 1

/* Define to 1 if you have the `strtoimax' function. */
#define HAVE_STRTOIMAX 1

/* Define to 1 if you have the `strtol' function. */
#define HAVE_STRTOL 1

/* Define to 1 if you have the `strtoll' function. */
#define HAVE_STRTOLL 1

/* Define to 1 if you have the `strtoul' function. */
#define HAVE_STRTOUL 1

/* Define to 1 if you have the `strtoull' function. */
#define HAVE_STRTOULL 1

/* Define to 1 if you have the `strtoumax' function. */
#define HAVE_STRTOUMAX 1

/* Define to 1 if the system has the type `struct addrinfo'. */
#define HAVE_STRUCT_ADDRINFO 1

/* Define if there is a member named d_type in the struct describing directory
   headers. */
/* #undef HAVE_STRUCT_DIRENT_D_TYPE */

/* Define to 1 if `st_blksize' is member of `struct stat'. */
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1

/* Define to 1 if `st_rdev' is member of `struct stat'. */
#define HAVE_STRUCT_STAT_ST_RDEV 1

/* Define if struct timespec is declared in <time.h>. */
#define HAVE_STRUCT_TIMESPEC 1

/* Define to 1 if `tm_zone' is member of `struct tm'. */
/* #undef HAVE_STRUCT_TM_TM_ZONE */

/* Define to 1 if you have the <syslog.h> header file. */
#define HAVE_SYSLOG_H 1

/* Define to 1 if you have the <sys/bitypes.h> header file. */
/* #undef HAVE_SYS_BITYPES_H */

/* Define to 1 if you have the <sys/bsdtypes.h> header file. */
/* #undef HAVE_SYS_BSDTYPES_H */

/* Define to 1 if you have the <sys/cdefs.h> header file. */
#define HAVE_SYS_CDEFS_H 1

/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
   */
/* #undef HAVE_SYS_DIR_H */

/* Define to 1 if you have the <sys/file.h> header file. */
#define HAVE_SYS_FILE_H 1

/* Define to 1 if you have the <sys/inttypes.h> header file. */
/* #undef HAVE_SYS_INTTYPES_H */

/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
   */
/* #undef HAVE_SYS_NDIR_H */

/* Define to 1 if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1

/* Define to 1 if you have the <sys/resource.h> header file. */
#define HAVE_SYS_RESOURCE_H 1

/* Define to 1 if you have the <sys/select.h> header file. */
#define HAVE_SYS_SELECT_H 1

/* Define to 1 if you have the <sys/socket.h> header file. */
#define HAVE_SYS_SOCKET_H 1

/* Define to 1 if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1

/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#define HAVE_SYS_WAIT_H 1

/* Define to 1 if you have the `tcgetattr' function. */
#define HAVE_TCGETATTR 1

/* Define to 1 if you have the `tcsetattr' function. */
#define HAVE_TCSETATTR 1

/* Define to 1 if you have the <termios.h> header file. */
#define HAVE_TERMIOS_H 1

/* Define to 1 if you have the `timezone' function. */
#define HAVE_TIMEZONE 1

/* Define to 1 if localtime_r, etc. have the type signatures that POSIX
   requires. */
#define HAVE_TIME_R_POSIX 1

/* Define if struct tm has the tm_gmtoff member. */
/* #undef HAVE_TM_GMTOFF */

/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
   `HAVE_STRUCT_TM_TM_ZONE' instead. */
/* #undef HAVE_TM_ZONE */

/* Define to 1 if you have the `tsearch' function. */
#define HAVE_TSEARCH 1

/* Define to 1 if you don't have `tm_zone' but do have the external array
   `tzname'. */
#define HAVE_TZNAME 1

/* Define to 1 if you have the `tzset' function. */
#define HAVE_TZSET 1

/* Define to 1 if the type 'uint16_t' is already defined. */
/* #undef HAVE_UINT16_T */

/* Define to 1 if the type 'uint32_t' is already defined. */
/* #undef HAVE_UINT32_T */

/* Define to 1 if the type 'uint64_t' is already defined. */
/* #undef HAVE_UINT64_T */

/* Define to 1 if the type 'uint64_t' is already definedin <stdint.h>. */
/* #undef HAVE_UINT64_T_IN_STDINT_H */

/* Define to 1 if the type 'uint8_t' is already defined. */
/* #undef HAVE_UINT8_T */

/* Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>. */
#define HAVE_UINTMAX_T 1

/* Define to 1 if the type 'uintptr_t' is already defined. */
/* #undef HAVE_UINTPTR_T */

/* Define to 1 if the type 'uint_fast16_t' is already defined. */
/* #undef HAVE_UINT_FAST16_T */

/* Define to 1 if the type 'uint_fast32_t' is already defined. */
/* #undef HAVE_UINT_FAST32_T */

/* Define to 1 if the type 'uint_fast64_t' is already defined. */
/* #undef HAVE_UINT_FAST64_T */

/* Define to 1 if the type 'uint_fast64_t' is already definedin <stdint.h>. */
/* #undef HAVE_UINT_FAST64_T_IN_STDINT_H */

/* Define to 1 if the type 'uint_fast8_t' is already defined. */
/* #undef HAVE_UINT_FAST8_T */

/* Define to 1 if the type 'uint_least16_t' is already defined. */
/* #undef HAVE_UINT_LEAST16_T */

/* Define to 1 if the type 'uint_least32_t' is already defined. */
/* #undef HAVE_UINT_LEAST32_T */

/* Define to 1 if the type 'uint_least64_t' is already defined. */
/* #undef HAVE_UINT_LEAST64_T */

/* Define to 1 if the type 'uint_least64_t' is already definedin <stdint.h>.
   */
/* #undef HAVE_UINT_LEAST64_T_IN_STDINT_H */

/* Define to 1 if the type 'uint_least8_t' is already defined. */
/* #undef HAVE_UINT_LEAST8_T */

/* Define to 1 if you have the `uname' function. */
/* #undef HAVE_UNAME */

/* Define to 1 if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1

/* Define to 1 if you have the `unsetenv' function. */
/* #undef HAVE_UNSETENV */

/* Define if you have the 'unsigned long long' type. */
#define HAVE_UNSIGNED_LONG_LONG 1

/* Define to 1 if you have the <utime.h> header file. */
#define HAVE_UTIME_H 1

/* Define to 1 if `utime(file, NULL)' sets file's timestamp to the present. */
#define HAVE_UTIME_NULL 1

/* Define to 1 if you have the `vasnprintf' function. */
/* #undef HAVE_VASNPRINTF */

/* Define to 1 if you have the `vasprintf' function. */
/* #undef HAVE_VASPRINTF */

/* Define to 1 if you have the `vfork' function. */
/* #undef HAVE_VFORK */

/* Define to 1 if you have the <vfork.h> header file. */
/* #undef HAVE_VFORK_H */

/* Define to 1 if you have the `vprintf' function. */
#define HAVE_VPRINTF 1

/* Define to 1 if you have the `wait3' function. */
#define HAVE_WAIT3 1

/* Define to 1 if you have the `waitpid' function. */
#define HAVE_WAITPID 1

/* Define to 1 if you have the <wchar.h> header file. */
#define HAVE_WCHAR_H 1

/* Define if you have the 'wchar_t' type. */
#define HAVE_WCHAR_T 1

/* Define to 1 if you have the `wcrtomb' function. */
#define HAVE_WCRTOMB 1

/* Define to 1 if you have the `wcscoll' function. */
#define HAVE_WCSCOLL 1

/* Define to 1 if you have the `wcslen' function. */
#define HAVE_WCSLEN 1

/* Define to 1 if you have the <wctype.h> header file. */
#define HAVE_WCTYPE_H 1

/* Define to 1 if you have the <winsock2.h> header file. */
/* #undef HAVE_WINSOCK2_H */

/* Define if you have the 'wint_t' type. */
#define HAVE_WINT_T 1

/* Define to 1 if you have the `wmemchr' function. */
/* #undef HAVE_WMEMCHR */

/* Define to 1 if you have the `wmemcpy' function. */
/* #undef HAVE_WMEMCPY */

/* Define to 1 if you have the `wmempcpy' function. */
/* #undef HAVE_WMEMPCPY */

/* Define to 1 if `fork' works. */
#define HAVE_WORKING_FORK 1

/* Define to 1 if `vfork' works. */
/* #undef HAVE_WORKING_VFORK */

/* Define to 1 if you have the <ws2tcpip.h> header file. */
/* #undef HAVE_WS2TCPIP_H */

/* Define to 1 if you have the <zlib.h> header file. */
#define HAVE_ZLIB_H 1

/* Define to 1 if the system has the type `_Bool'. */
/* #undef HAVE__BOOL */

/* Define to 1 if you have the `__fpending' function. */
/* #undef HAVE___FPENDING */

/* Define to 1 if you have the `__fsetlocking' function. */
/* #undef HAVE___FSETLOCKING */

/* Define to 1 if you have the `__secure_getenv' function. */
/* #undef HAVE___SECURE_GETENV */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT16_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT16_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT32_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT32_MIN */

/* Define if <stdint.h> doesn't define it but has the int64_t type. */
/* #undef INT64_MAX */

/* Define if <stdint.h> doesn't define it but has the int64_t type. */
/* #undef INT64_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT8_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT8_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INTMAX_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INTMAX_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INTPTR_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INTPTR_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST16_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST16_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST32_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST32_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST64_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST64_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST8_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_FAST8_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_LEAST16_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_LEAST16_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_LEAST32_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_LEAST32_MIN */

/* Define if <stdint.h> doesn't define it but has the int_least64_t type. */
/* #undef INT_LEAST64_MAX */

/* Define if <stdint.h> doesn't define it but has the int_least64_t type. */
/* #undef INT_LEAST64_MIN */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_LEAST8_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef INT_LEAST8_MIN */

#if FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR
# define ISSLASH(C) ((C) == '/' || (C) == '\\')
#else
# define ISSLASH(C) ((C) == '/')
#endif

/* Define to include locking code which prevents versions of CVS earlier than
   1.12.4 directly accessing the same repositiory as this executable from
   ignoring this executable's promotable read locks. If only CVS versions
   1.12.4 and later will be accessing your repository directly (as a server or
   locally), you can safely disable this option in return for fewer disk
   accesses and a small speed increase. Disabling this option when versions of
   CVS earlier than 1,12,4 _will_ be accessing your repository, however, is
   *VERY* *VERY* *VERY* dangerous and could result in data loss. As such, by
   default, CVS is compiled with this code enabled. If you are sure you would
   like this code disabled, you can disable it by passing the
   "--disable-lock-compatibility" option to configure or by commenting out the
   lines below. */
#define LOCK_COMPATIBILITY 1

/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
   slash. */
/* #undef LSTAT_FOLLOWS_SLASHED_SYMLINK */

/* If malloc(0) is != NULL, define this to 1. Otherwise define this to 0. */
#define MALLOC_0_IS_NONNULL 1

/* Define to a substitute value for mmap()'s MAP_ANONYMOUS flag. */
/* #undef MAP_ANONYMOUS */

/* By default, CVS stores its modules and other such items in flat text files
   (MY_NDBM enables this). Turning off MY_NDBM causes CVS to look for a
   system-supplied ndbm database library and use it instead. That may speed
   things up, but the default setting generally works fine too. */
#define MY_NDBM 1

/* Define to 1 if your C compiler doesn't accept -c and -o together. */
/* #undef NO_MINUS_C_MINUS_O */

/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "address@hidden"

/* Define to the full name of this package. */
#define PACKAGE_NAME "Concurrent Versions System (CVS)"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Concurrent Versions System (CVS) 1.12.13.1"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "cvs"

/* Define to the version of this package. */
#define PACKAGE_VERSION "1.12.13.1"

/* Define to set a service name for PAM. This must be defined. Define to
   `program_name', without the quotes, to use whatever name CVS was invoked
   as. Otherwise, define to a double-quoted literal string, such as `"cvs"'.
   */
#define PAM_SERVICE_NAME "cvs"

/* the number of pending output bytes on stream `fp' */
#define PENDING_OUTPUT_N_BYTES fp->_ptr - fp->_base

/* Define if you want CVS to be able to serve as a transparent proxy for write
   operations. Disabling this may produce a slight performance gain on some
   systems, at the expense of write proxy support. */
#define PROXY_SUPPORT 1

/* Path to the pr utility */
#define PR_PROGRAM "/usr/bin/pr"

/* Define if <stdint.h> doesn't define it. */
/* #undef PTRDIFF_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef PTRDIFF_MIN */

/* Define to force lib/regex.c to use malloc instead of alloca. */
#define REGEX_MALLOC 1

/* Define if rename does not work for source file names with a trailing slash,
   like the one from SunOS 4.1.1_U1. */
/* #undef RENAME_TRAILING_SLASH_BUG */

/* Define as the return type of signal handlers (`int' or `void'). */
#define RETSIGTYPE void

/* The default remote shell to use, if one does not specify the CVS_RSH
   environment variable. */
#define RSH_DFLT "rsh"

/* If you are working with a large remote repository and a 'cvs checkout' is
   swamping your network and memory, define these to enable flow control. You
   will end up with even less probability of a consistent checkout (see
   Concurrency in cvs.texinfo), but CVS doesn't try to guarantee that anyway.
   The master server process will monitor how far it is getting behind, if it
   reaches the high water mark, it will signal the child process to stop
   generating data when convenient (ie: no locks are held, currently at the
   beginning of a new directory). Once the buffer has drained sufficiently to
   reach the low water mark, it will be signalled to start again. */
#define SERVER_FLOWCONTROL 1

/* The high water mark in bytes for server flow control. Required if
   SERVER_FLOWCONTROL is defined, and useless otherwise. */
#define SERVER_HI_WATER (2 * 1024 * 1024)

/* The low water mark in bytes for server flow control. Required if
   SERVER_FLOWCONTROL is defined, and useless otherwise. */
#define SERVER_LO_WATER (1 * 1024 * 1024)

/* Define if you want CVS to be able to serve repositories to remote clients.
   */
#define SERVER_SUPPORT 1

/* Define if <stdint.h> doesn't define it. */
/* #undef SIG_ATOMIC_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef SIG_ATOMIC_MIN */

/* The size of a `char', as computed by sizeof. */
#define SIZEOF_CHAR 1

/* The size of a `double', as computed by sizeof. */
#define SIZEOF_DOUBLE 8

/* The size of a `float', as computed by sizeof. */
#define SIZEOF_FLOAT 4

/* The size of a `int', as computed by sizeof. */
#define SIZEOF_INT 4

/* The size of a `intmax_t', as computed by sizeof. */
#define SIZEOF_INTMAX_T 8

/* The size of a `long', as computed by sizeof. */
#define SIZEOF_LONG 4

/* The size of a `long double', as computed by sizeof. */
#define SIZEOF_LONG_DOUBLE 16

/* The size of a `long long', as computed by sizeof. */
#define SIZEOF_LONG_LONG 8

/* The size of a `ptrdiff_t', as computed by sizeof. */
#define SIZEOF_PTRDIFF_T 4

/* The size of a `short', as computed by sizeof. */
#define SIZEOF_SHORT 2

/* The size of a `size_t', as computed by sizeof. */
#define SIZEOF_SIZE_T 4

/* The size of a `wint_t', as computed by sizeof. */
#define SIZEOF_WINT_T 4

/* Define as the maximum value of type 'size_t', if the system doesn't define
   it. */
#define SIZE_MAX (((1U << 31) - 1) * 2 + 1)

/* If using the C implementation of alloca, define if you know the
   direction of stack growth for your system; otherwise it will be
   automatically deduced at run-time.
        STACK_DIRECTION > 0 => grows toward higher addresses
        STACK_DIRECTION < 0 => grows toward lower addresses
        STACK_DIRECTION = 0 => direction of growth unknown */
/* #undef STACK_DIRECTION */

/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef STAT_MACROS_BROKEN */

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Define to 1 if strerror_r returns char *. */
/* #undef STRERROR_R_CHAR_P */

/* Enable support for the pre 1.12.1 *info scripting hook format strings.
   Disable this option for a smaller executable once your scripting hooks have
   been updated to use the new *info format strings by passing
   "--disable-old-info-format-support" option to configure or by commenting
   out the line below. */
#define SUPPORT_OLD_INFO_FMT_STRINGS 1

/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#define TIME_WITH_SYS_TIME 1

/* Directory used for storing temporary files, if not overridden by
   environment variables or the -T global option. There should be little need
   to change this (-T is a better mechanism if you need to use a different
   directory for temporary files). */
#define TMPDIR_DFLT "/tmp"

/* Define to 1 if your <sys/time.h> declares `struct tm'. */
/* #undef TM_IN_SYS_TIME */

/* Define if tzset clobbers localtime's static buffer. */
/* #undef TZSET_CLOBBERS_LOCALTIME_BUFFER */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT16_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT32_MAX */

/* Define if <stdint.h> doesn't define it but has the uint64_t type. */
/* #undef UINT64_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT8_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINTMAX_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINTPTR_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT_FAST16_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT_FAST32_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT_FAST64_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT_FAST8_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT_LEAST16_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT_LEAST32_MAX */

/* Define if <stdint.h> doesn't define it but has the uint_least64_t type. */
/* #undef UINT_LEAST64_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef UINT_LEAST8_MAX */

/* The default umask to use when creating or otherwise setting file or
   directory permissions in the repository. Must be a value in the range of 0
   through 0777. For example, a value of 002 allows group rwx access and world
   rx access; a value of 007 allows group rwx access but no world access. This
   value is overridden by the value of the CVSUMASK environment variable,
   which is interpreted as an octal number. */
#define UMASK_DFLT 002

/* Define if double is the first floating point type detected with its size.
   */
#define UNIQUE_FLOAT_TYPE_DOUBLE 1

/* Define if float is the first floating point type detected with its size. */
#define UNIQUE_FLOAT_TYPE_FLOAT 1

/* Define if long double is the first floating point type detected with its
   size. */
#define UNIQUE_FLOAT_TYPE_LONG_DOUBLE 1

/* Define if char is the first integer type detected with its size. */
#define UNIQUE_INT_TYPE_CHAR 1

/* Define if int is the first integer type detected with its size. */
#define UNIQUE_INT_TYPE_INT 1

/* Define if intmax_t is the first integer type detected with its size. */
/* #undef UNIQUE_INT_TYPE_INTMAX_T */

/* Define if long int is the first integer type detected with its size. */
/* #undef UNIQUE_INT_TYPE_LONG */

/* Define if long long is the first integer type detected with its size. */
#define UNIQUE_INT_TYPE_LONG_LONG 1

/* Define if ptrdiff_t is the first integer type detected with its size. */
/* #undef UNIQUE_INT_TYPE_PTRDIFF_T */

/* Define if short is the first integer type detected with its size. */
#define UNIQUE_INT_TYPE_SHORT 1

/* Define if size_t is the first integer type detected with its size. */
/* #undef UNIQUE_INT_TYPE_SIZE_T */

/* Define if wint_t is the first integer type detected with its size. */
/* #undef UNIQUE_INT_TYPE_WINT_T */

/* Define if setmode is required when writing binary data to stdout. */
/* #undef USE_SETMODE_STDOUT */

/* Define to 1 if you want getc etc. to use unlocked I/O if available.
   Unlocked I/O can improve performance in unithreaded apps, but it is not
   safe for multithreaded apps. */
#define USE_UNLOCKED_IO 1

/* Define if utime requires write access to the file (true on Windows, but not
   Unix). */
/* #undef UTIME_EXPECTS_WRITABLE */

/* Define if unsetenv() returns void, not int. */
/* #undef VOID_UNSETENV */

/* Define if <stdint.h> doesn't define it. */
/* #undef WINT_MAX */

/* Define if <stdint.h> doesn't define it. */
/* #undef WINT_MIN */

/* Define to 1 if your processor stores words with the most significant byte
   first (like Motorola and SPARC, unlike Intel and VAX). */
#define WORDS_BIGENDIAN 1

/* Define to 1 if on AIX 3.
   System headers sometimes define this.
   We just want to avoid a redefinition error message.  */
#ifndef _ALL_SOURCE
/* # undef _ALL_SOURCE */
#endif

/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _FILE_OFFSET_BITS */

/* Enable GNU extensions on systems that have them.  */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE 1
#endif

/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
/* #undef _LARGEFILE_SOURCE */

/* Define for large files, on AIX-style hosts. */
/* #undef _LARGE_FILES */

/* Define to 1 if on MINIX. */
/* #undef _MINIX */

/* Define to 2 if the system does not provide POSIX.1 features except with
   this defined. */
/* #undef _POSIX_1_SOURCE */

/* Define to 1 if you need to in order for `stat' and other things to work. */
/* #undef _POSIX_SOURCE */

/* Define if you want regoff_t to be at least as wide POSIX requires. */
#define _REGEX_LARGE_OFFSETS 1

/* Define to force lib/regex.c to define re_comp et al. */
#define _REGEX_RE_COMP 1

/* Enable extensions on Solaris.  */
#ifndef __EXTENSIONS__
# define __EXTENSIONS__ 1
#endif
#ifndef _POSIX_PTHREAD_SEMANTICS
# define _POSIX_PTHREAD_SEMANTICS 1
#endif

/* Define to rpl_ if the getcwd replacement function should be used. */
#define __GETCWD_PREFIX rpl_

/* Define to rpl_ if the getopt replacement functions and variables should be
   used. */
#define __GETOPT_PREFIX rpl_

/* Define to rpl_ if the openat replacement function should be used. */
#define __OPENAT_PREFIX rpl_

#ifndef __attribute__
  /* Function attributes are available in gcc versions 2.5 and later.  */
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
#  define __attribute__(Spec) /* empty */
# endif
# if __GNUC__ == 2 && __GNUC_MINOR__ < 96
#   define __pure__     /* empty */
# endif
# if __GNUC__ < 3
#   define __malloc__   /* empty */
# endif
  /* The __-protected variants of `format' and `printf' attributes
     are accepted by gcc versions 2.6.4 (effectively 2.7) and later.  */
# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
#   define __const__    const
#   define __format__   format
#   define __noreturn__ noreturn
#   define __printf__   printf
# endif
#endif /* __attribute__ */

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */

/* Define to a replacement function name for fnmatch(). */
/* #undef fnmatch */

/* Define to a replacement function name for getline(). */
#define getline gnu_getline

/* Define to a replacement function name for getpass(). */
#define getpass gnu_getpass

/* Define to rpl_gettimeofday if the replacement function should be used. */
/* #undef gettimeofday */

/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef gid_t */

/* Define to rpl_gmtime if the replacement function should be used. */
/* #undef gmtime */

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef __cplusplus
#define inline __inline
#endif

/* Define to long or long long if <stdint.h> and <inttypes.h> don't define. */
/* #undef intmax_t */

/* Define to rpl_localtime if the replacement function should be used. */
/* #undef localtime */

/* Define to rpl_malloc if the replacement function should be used. */
/* #undef malloc */

/* Define to a type if <wchar.h> does not define. */
/* #undef mbstate_t */

/* Define to rpl_mkdir if the replacement function should be used. */
/* #undef mkdir */

/* Define to rpl_mkstemp if the replacement function should be used. */
#define mkstemp rpl_mkstemp

/* Define to rpl_mktime if the replacement function should be used. */
#define mktime rpl_mktime

/* Define to `int' if <sys/types.h> does not define. */
/* #undef mode_t */

/* Define to the name of the strftime replacement function. */
#define my_strftime nstrftime

/* Define to rpl_nanosleep if the replacement function should be used. */
/* #undef nanosleep */

/* Define to `int' if <sys/types.h> does not define. */
/* #undef pid_t */

/* Define to rpl_re_comp if the replacement should be used. */
#define re_comp rpl_re_comp

/* Define to rpl_re_compile_fastmap if the replacement should be used. */
#define re_compile_fastmap rpl_re_compile_fastmap

/* Define to rpl_re_compile_pattern if the replacement should be used. */
#define re_compile_pattern rpl_re_compile_pattern

/* Define to rpl_re_exec if the replacement should be used. */
#define re_exec rpl_re_exec

/* Define to rpl_re_match if the replacement should be used. */
#define re_match rpl_re_match

/* Define to rpl_re_match_2 if the replacement should be used. */
#define re_match_2 rpl_re_match_2

/* Define to rpl_re_search if the replacement should be used. */
#define re_search rpl_re_search

/* Define to rpl_re_search_2 if the replacement should be used. */
#define re_search_2 rpl_re_search_2

/* Define to rpl_re_set_registers if the replacement should be used. */
#define re_set_registers rpl_re_set_registers

/* Define to rpl_re_set_syntax if the replacement should be used. */
#define re_set_syntax rpl_re_set_syntax

/* Define to rpl_re_syntax_options if the replacement should be used. */
#define re_syntax_options rpl_re_syntax_options

/* Define to rpl_realloc if the replacement function should be used. */
/* #undef realloc */

/* Define to rpl_regcomp if the replacement should be used. */
#define regcomp rpl_regcomp

/* Define to rpl_regerror if the replacement should be used. */
#define regerror rpl_regerror

/* Define to rpl_regexec if the replacement should be used. */
#define regexec rpl_regexec

/* Define to rpl_regfree if the replacement should be used. */
#define regfree rpl_regfree

/* Define to rpl_rename if the replacement function should be used. */
/* #undef rename */

/* Define to equivalent of C99 restrict keyword, or to nothing if this is not
   supported. Do not define if restrict is supported directly. */
#define restrict __restrict

/* Define to rpl_select if the replacement function should be used. */
#define select rpl_select

/* Define to empty if the C compiler doesn't support this keyword. */
/* #undef signed */

/* Define to `unsigned' if <sys/types.h> does not define. */
/* #undef size_t */

/* type to use in place of socklen_t if not defined */
/* #undef socklen_t */

/* Define as a signed type of the same size as size_t. */
/* #undef ssize_t */

/* Define to rpl_strcasecmp always. */
#define strcasecmp rpl_strcasecmp

/* Define to rpl_tzset if the wrapper function should be used. */
/* #undef tzset */

/* Define to `int' if <sys/types.h> doesn't define. */
/* #undef uid_t */

/* Define to unsigned long or unsigned long long if <stdint.h> and
   <inttypes.h> don't define. */
/* #undef uintmax_t */

/* Define as `fork' if `vfork' does not work. */
#define vfork fork

--%--multipart-mixed-boundary-1.4383.1150578062--%
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Description: English text
Content-Disposition: attachment; filename="nightlySGI.log"

checking for a BSD-compatible install... 
/u/scjones/cvs-nightly/build-aux/install-sh -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for prefix by checking for cvs... no
checking whether to enable maintainer-specific portions of Makefiles... no
checking for ranlib... ranlib
checking for style of include used by make... GNU
checking for gcc... cc -mips3
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... no
checking whether cc -mips3 accepts -g... yes
checking for cc -mips3 option to accept ANSI C... none needed
checking dependency style of cc -mips3... sgi
checking how to run the C preprocessor... cc -mips3 -E
checking for egrep... grep -E
checking for AIX... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for gcc... (cached) cc -mips3
checking whether we are using the GNU C compiler... (cached) no
checking whether cc -mips3 accepts -g... (cached) yes
checking for cc -mips3 option to accept ANSI C... (cached) none needed
checking dependency style of cc -mips3... (cached) sgi
checking whether cc -mips3 and cc understand -c and -o together... yes
checking for library containing strerror... none required
checking for ranlib... (cached) ranlib
checking whether ln -s works... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGE_FILES value needed for large files... no
checking for perl... /usr/sbin/perl
checking for csh... /sbin/csh
checking for mktemp... mktemp
checking for sendmail... /usr/lib/sendmail
checking for pr... /usr/bin/pr
checking for gpg... gpg
checking for groff... /usr/local/bin/groff
checking for ps2pdf... /u/scjones/cvs-nightly/build-aux/missing ps2pdf
checking for texi2dvi... /usr/local/bin/texi2dvi
checking whether #! works in shell scripts... yes
checking for BSD VPATH bug in make... no
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking direct.h usability... no
checking direct.h presence... no
checking for direct.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking for memory.h... (cached) yes
checking ndbm.h usability... yes
checking ndbm.h presence... yes
checking for ndbm.h... yes
checking for stdint.h... (cached) yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking sys/bsdtypes.h usability... no
checking sys/bsdtypes.h presence... no
checking for sys/bsdtypes.h... no
checking sys/file.h usability... yes
checking sys/file.h presence... yes
checking for sys/file.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking whether stat file-mode macros are broken... no
checking for an ANSI C-conforming const... yes
checking for uid_t in sys/types.h... yes
checking for mode_t... yes
checking for pid_t... yes
checking return type of signal handlers... void
checking for struct stat.st_blksize... yes
checking for struct stat.st_rdev... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for fseeko... yes
checking for waitpid... yes
checking for fcntl.h... (cached) yes
checking whether select hangs on /dev/null fd when timeout is NULL... yes
checking for fcntl.h... (cached) yes
checking for unistd.h... (cached) yes
checking for working alloca.h... yes
checking for alloca... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for long long... yes
checking for long double... yes
checking for inline... __inline
checking for C/C++ restrict keyword... __restrict
checking for IPv4 sockets... yes
checking for IPv6 sockets... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking stdio_ext.h usability... no
checking stdio_ext.h presence... no
checking for stdio_ext.h... no
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking sys/cdefs.h usability... yes
checking sys/cdefs.h presence... yes
checking for sys/cdefs.h... yes
checking for inttypes.h... (cached) yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking for sys/select.h... (cached) yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for stdint.h... (cached) yes
configure: checking how to do getaddrinfo
checking for library containing getaddrinfo... none required
checking for getaddrinfo... yes
checking for gai_strerror... yes
checking for library containing gethostbyname... none required
checking for library containing getservbyname... none required
checking whether getaddrinfo is declared... yes
checking whether freeaddrinfo is declared... yes
checking whether gai_strerror is declared... yes
checking for struct addrinfo... yes
checking for stdbool.h that conforms to C99... no
checking for _Bool... no
checking for fdopendir... no
checking for fchdir... yes
checking for mempcpy... no
checking for isascii... yes
checking for __fsetlocking... no
checking for tcgetattr... yes
checking for tcsetattr... yes
checking for gettimeofday... yes
checking for nanotime... no
checking for getlogin_r... yes
checking for getpwnam_r... yes
checking for mbsinit... yes
checking for alarm... yes
checking for siginterrupt... yes
checking for posix_memalign... no
checking for iswprint... yes
checking for isblank... yes
checking for mbrtowc... yes
checking for wcrtomb... yes
checking for wcscoll... yes
checking for mblen... yes
checking for mbrlen... yes
checking for tzset... yes
checking whether memrchr is declared... no
checking whether system is Windows or MSDOS... no
checking whether strerror_r is declared... no
checking for strerror_r... no
checking whether strerror_r returns char *... no
checking for mbstate_t... yes
checking whether getcwd (NULL, 0) allocates memory for result... no
checking whether getcwd is declared... yes
checking for d_ino member in directory struct... yes
checking whether time.h and sys/time.h may both be included... yes
checking for struct timespec... yes
checking whether nanosleep is declared... yes
checking for compound literals... no
checking whether struct tm is in sys/time.h or time.h... time.h
checking for library containing clock_gettime... none required
checking for clock_gettime... yes
checking for clock_settime... yes
checking for struct tm.tm_gmtoff... no
checking whether getdelim is declared... no
checking whether getlogin is declared... yes
checking whether getlogin_r is declared... yes
checking for ssize_t... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking for getopt_long_only... no
checking whether getenv is declared... yes
checking whether getpass is declared... yes
checking whether fflush_unlocked is declared... no
checking whether flockfile is declared... yes
checking whether fputs_unlocked is declared... no
checking whether funlockfile is declared... yes
checking whether putc_unlocked is declared... yes
checking for d_type member in directory struct... no
checking whether the preprocessor supports include_next... no
checking whether strtoimax is declared... yes
checking whether strtoumax is declared... yes
checking whether lstat dereferences a symlink specified with a trailing 
slash... no
checking whether mbrtowc and mbstate_t are properly declared... yes
checking whether byte ordering is bigendian... yes
checking whether <limits.h> defines MIN and MAX... no
checking whether <sys/param.h> defines MIN and MAX... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unsigned long long... yes
checking for working mktime... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... yes
checking for MAP_ANONYMOUS... no
checking for nl_langinfo and CODESET... yes
checking for size_t... yes
checking for wchar_t... yes
checking whether strdup is declared... yes
checking for strftime... yes
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fgets_unlocked is declared... no
checking whether fputc_unlocked is declared... no
checking whether fread_unlocked is declared... no
checking whether fwrite_unlocked is declared... no
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking for EOVERFLOW... yes
checking for signed... yes
checking for wint_t... yes
checking for intmax_t... yes
checking for atexit... yes
checking for sys/param.h... (cached) yes
checking for resolvepath... no
checking for canonicalize_file_name... no
checking whether this system has an arbitrary file name length limit... yes
checking for mempcpy... (cached) no
checking for openat... no
checking for memrchr... no
checking for dup2... yes
checking for working POSIX fnmatch... yes
checking for stdio_ext.h... (cached) no
checking for __fpending... no
checking whether __fpending is declared... no
checking how to determine the number of pending output bytes on a stream... 
fp->_ptr - fp->_base
checking for ftruncate... yes
configure: checking how to do getaddrinfo
checking for library containing getaddrinfo... (cached) none required
checking for getaddrinfo... (cached) yes
checking for gai_strerror... (cached) yes
checking for library containing gethostbyname... (cached) none required
checking for library containing getservbyname... (cached) none required
checking whether getaddrinfo is declared... (cached) yes
checking whether freeaddrinfo is declared... (cached) yes
checking whether gai_strerror is declared... (cached) yes
checking for struct addrinfo... (cached) yes
checking for struct tm.tm_zone... no
checking for tzname... yes
checking for getdelim... no
checking for flockfile... yes
checking for funlockfile... yes
checking for gethostname... yes
checking whether getline is declared... no
checking for getline... no
checking for getdelim... (cached) no
checking for flockfile... (cached) yes
checking for funlockfile... (cached) yes
checking for getlogin_r... (cached) yes
checking OS.h usability... no
checking OS.h presence... no
checking for OS.h... no
checking for getpagesize... (cached) yes
checking whether gettimeofday clobbers localtime buffer... no
checking glob.h usability... yes
checking glob.h presence... yes
checking for glob.h... yes
checking for GNU glob interface version 1... no
checking full path to <inttypes.h>... /usr/include/inttypes.h
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... (cached) yes
checking for memchr... yes
checking for memmove... yes
checking for mempcpy... (cached) no
checking for memrchr... (cached) no
checking whether mkdir fails due to a trailing slash... no
checking for mkstemp... yes
checking for mkstemp limitations... yes
checking for __secure_getenv... no
checking for gettimeofday... (cached) yes
checking for library containing nanosleep... none required
checking for nanosleep... yes
checking for openat... (cached) no
checking for mbstate_t... (cached) yes
checking whether mbrtowc and mbstate_t are properly declared... (cached) yes
checking for readlink... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking for working re_compile_pattern... no
checking whether rename is broken... no
checking for C/C++ restrict keyword... (cached) __restrict
checking for rpmatch... no
checking for setenv... no
checking for unsetenv... no
checking search.h usability... yes
checking search.h presence... yes
checking for search.h... yes
checking for tsearch... yes
checking if errno is properly declared... yes
checking if environ is properly declared... no
checking if errno is properly declared... (cached) yes
checking if environ is properly declared... (cached) no
checking for stdint.h... (cached) yes
checking for SIZE_MAX... (((1U << 31) - 1) * 2 + 1)
checking for socklen_t... yes
checking for ssize_t... (cached) yes
checking for stdint.h... (cached) yes
checking full path to <stdint.h>... /usr/include/stdint.h
checking for inttypes.h... (cached) yes
checking full path to <inttypes.h>... (cached) /usr/include/inttypes.h
checking sys/inttypes.h usability... no
checking sys/inttypes.h presence... no
checking for sys/inttypes.h... no
checking sys/bitypes.h usability... no
checking sys/bitypes.h presence... no
checking for sys/bitypes.h... no
checking whether 'long' is 64 bit wide... no
checking whether 'long long' is 64 bit wide... yes
checking for int8_t... no
checking for int16_t... no
checking for int32_t... no
checking for int64_t... no
checking for uint8_t... no
checking for uint16_t... no
checking for uint32_t... no
checking for uint64_t... no
checking for int_least8_t... no
checking for int_least16_t... no
checking for int_least32_t... no
checking for int_least64_t... no
checking for uint_least8_t... no
checking for uint_least16_t... no
checking for uint_least32_t... no
checking for uint_least64_t... no
checking for int_fast8_t... no
checking for int_fast16_t... no
checking for int_fast32_t... no
checking for int_fast64_t... no
checking for uint_fast8_t... no
checking for uint_fast16_t... no
checking for uint_fast32_t... no
checking for uint_fast64_t... no
checking for intptr_t... no
checking for uintptr_t... no
checking for intmax_t... no
checking for uintmax_t... no
checking for int64_t... no
checking for uint64_t... no
checking for int_least64_t... no
checking for uint_least64_t... no
checking for int_fast64_t... no
checking for uint_fast64_t... no
checking for bit size of unsigned_int... 32
checking for bit size of long... 32
checking for bit size of unsigned_long... 32
checking for ptrdiff_t... yes
checking for bit size of ptrdiff_t... 32
checking for bit size of size_t... 32
checking for sig_atomic_t... yes
checking for bit size of sig_atomic_t... 32
checking whether sig_atomic_t is signed... yes
checking for bit size of wchar_t... 32
checking whether wchar_t is signed... yes
checking for wint_t... yes
checking for bit size of wint_t... 32
checking whether wint_t is signed... yes
checking for strncasecmp... yes
checking for strdup... yes
checking for strerror... yes
checking whether <inttypes.h> defines strtoimax as a macro... no
checking for strtoimax... yes
checking for strtol... yes
checking for strtoll... yes
checking for strtoul... yes
checking for strtoull... yes
checking whether <inttypes.h> defines strtoumax as a macro... no
checking for strtoumax... yes
checking whether localtime_r is compatible with its POSIX signature... yes
checking for struct timespec... (cached) yes
checking whether nanosleep is declared... (cached) yes
checking whether tzset clobbers localtime buffer... no
checking for unistd.h... (cached) yes
checking for vasnprintf... no
checking for ptrdiff_t... (cached) yes
checking for snprintf... yes
checking for wcslen... yes
checking for vasprintf... no
checking for stdint.h... (cached) yes
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking build system type... mips-sgi-irix6.5
checking host system type... mips-sgi-irix6.5
checking for non-GNU ld... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... no
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking whether NLS is requested... yes
checking for GNU gettext in libc... no
checking for iconv... yes
checking for GNU gettext in libintl... no
checking whether to use NLS... no
checking whether strerror_r is declared... (cached) no
checking for strerror_r... (cached) no
checking whether strerror_r returns char *... (cached) no
checking for fchdir... (cached) yes
checking for fchmod... yes
checking for fsync... yes
checking for ftime... yes
checking for geteuid... yes
checking for getgroups... yes
checking for getpagesize... (cached) yes
checking for gettimeofday... (cached) yes
checking for initgroups... yes
checking for login... no
checking for logout... no
checking for mknod... yes
checking for regcomp... yes
checking for regerror... yes
checking for regexec... yes
checking for regfree... yes
checking for sigaction... yes
checking for sigblock... yes
checking for sigprocmask... yes
checking for sigsetmask... yes
checking for sigvec... yes
checking for timezone... yes
checking for tzset... (cached) yes
checking for vprintf... yes
checking for wait3... yes
checking for char... yes
checking size of char... 1
checking for uniquely sized char... yes(1)
checking for short... yes
checking size of short... 2
checking for uniquely sized short... yes(2)
checking for int... yes
checking size of int... 4
checking for uniquely sized int... yes(4)
checking for long... yes
checking size of long... 4
checking for uniquely sized long... no
checking for long long... (cached) yes
checking size of long long... 8
checking for uniquely sized long long... yes(8)
checking for size_t... (cached) yes
checking size of size_t... 4
checking for uniquely sized size_t... no
checking for ptrdiff_t... (cached) yes
checking size of ptrdiff_t... 4
checking for uniquely sized ptrdiff_t... no
checking for wint_t... (cached) yes
checking size of wint_t... 4
checking for uniquely sized wint_t... no
checking for intmax_t... yes
checking size of intmax_t... 8
checking for uniquely sized intmax_t... no
checking for float... yes
checking size of float... 4
checking for uniquely sized float... yes(4)
checking for double... yes
checking size of double... 8
checking for uniquely sized double... yes(8)
checking for long double... yes
checking size of long double... 16
checking for uniquely sized long double... yes(16)
checking for unistd.h... (cached) yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... no
checking for working fork... yes
checking whether closedir returns void... no
checking for library containing getspnam... none required
checking whether utime accepts a null argument... yes
checking for long file names... yes
checking whether printf supports %p... yes
checking for main in -lnsl... yes
checking for library containing connect... none required
checking for library containing gethostbyname... (cached) none required
checking for KRB4 in /usr/kerberos... 
checking for krb.h... 
checking for krb_get_err_text... no
checking for GSSAPI... 
checking gssapi.h usability... no
checking gssapi.h presence... no
checking for gssapi.h... no
checking gssapi/gssapi.h usability... no
checking gssapi/gssapi.h presence... no
checking for gssapi/gssapi.h... no
checking krb5.h usability... no
checking krb5.h presence... no
checking for krb5.h... no
checking for GSSAPI in /usr/kerberos... 
checking gssapi.h usability... no
checking gssapi.h presence... no
checking for gssapi.h... no
checking gssapi/gssapi.h usability... no
checking gssapi/gssapi.h presence... no
checking for gssapi/gssapi.h... no
checking krb5.h usability... no
checking krb5.h presence... no
checking for krb5.h... no
checking for GSSAPI in /usr/cygnus/kerbnet... 
checking gssapi.h usability... no
checking gssapi.h presence... no
checking for gssapi.h... no
checking gssapi/gssapi.h usability... no
checking gssapi/gssapi.h presence... no
checking for gssapi/gssapi.h... no
checking krb5.h usability... no
checking krb5.h presence... no
checking for krb5.h... no
checking for GSSAPI... no
checking for external ZLIB... 
checking zlib.h usability... no
checking zlib.h presence... no
checking for zlib.h... no
checking for external ZLIB in /usr/local... 
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for external ZLIB... /usr/local
checking selected ZLIB... package
checking for ssh... no
checking for remsh... no
checking for rsh... rsh
checking for vim... vim
checking for temporary directory... /tmp
checking for library containing crypt... none required
checking for a case sensitive file system... yes
checking for cygwin32... no
configure: creating ./config.status
config.status: creating contrib/clmerge
config.status: creating contrib/cln_hist
config.status: creating contrib/commit_prep
config.status: creating contrib/cvs_acls
config.status: creating contrib/log_accum
config.status: creating contrib/log
config.status: creating contrib/mfpipe
config.status: creating contrib/pvcs2rcs
config.status: creating contrib/rcs2log
config.status: creating contrib/rcslock
config.status: creating contrib/sccs2rcs
config.status: creating contrib/validate_repo
config.status: creating doc/mkman
config.status: creating src/cvsbug
config.status: creating Makefile
config.status: creating contrib/Makefile
config.status: creating contrib/pam/Makefile
config.status: creating cvs.spec
config.status: creating diff/Makefile
config.status: creating doc/Makefile
config.status: creating doc/i18n/Makefile
config.status: creating doc/i18n/pt_BR/Makefile
config.status: creating emx/Makefile
config.status: creating lib/Makefile
config.status: creating maint-aux/Makefile
config.status: creating man/Makefile
config.status: creating os2/Makefile
config.status: creating src/Makefile
config.status: creating src/sanity.config.sh
config.status: creating tools/Makefile
config.status: creating vms/Makefile
config.status: creating windows-NT/Makefile
config.status: creating windows-NT/SCC/Makefile
config.status: creating zlib/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing default-1 commands

You are about to use an unreleased version of CVS.  Be sure to
read the relevant mailing lists, most importantly <address@hidden>.

Below you will find information on the status of this version of CVS.


* Status

  This experimental version of CVS contains new features which may not have
  been tested as thoroughly as the stable release.  It is classified as:

                          /*-------------.
                          | Experimental |
                          `-------------*/

                     /*-------------------------.
                     | Sane for full scale use. |
                     `-------------------------*/

gmake  all-recursive
gmake[1]: Entering directory `/scratch/cvs-nightly'
Making all in lib
gmake[2]: Entering directory `/scratch/cvs-nightly/lib'
cp /u/scjones/cvs-nightly/lib/getopt_.h getopt.h-t
mv getopt.h-t getopt.h
cp /u/scjones/cvs-nightly/lib/glob_.h glob.h-t
mv glob.h-t glob.h
sed -e 's/@''HAVE__BOOL''@/0/g' \
< /u/scjones/cvs-nightly/lib/stdbool_.h > stdbool.h-t
mv stdbool.h-t stdbool.h
sed -e 's/@''HAVE_STDINT_H''@/1/g' \
    -e 's|@''FULL_PATH_STDINT_H''@|/usr/include/stdint.h|g' \
    -e 's/@''HAVE_INTTYPES_H''@/1/g' \
    -e 's|@''FULL_PATH_INTTYPES_H''@|/usr/include/inttypes.h|g' \
    -e 's/@''HAVE_SYS_INTTYPES_H''@/0/g' \
    -e 's/@''HAVE_SYS_BITYPES_H''@/0/g' \
    -e 's/@''HAVE_LONG_64BIT''@/0/g' \
    -e 's/@''HAVE_LONG_LONG_64BIT''@/1/g' \
    -e 's/@''HAVE_INT8_T''@/0/g' \
    -e 's/@''HAVE_INT16_T''@/0/g' \
    -e 's/@''HAVE_INT32_T''@/0/g' \
    -e 's/@''HAVE_INT64_T''@/0/g' \
    -e 's/@''HAVE_UINT8_T''@/0/g' \
    -e 's/@''HAVE_UINT16_T''@/0/g' \
    -e 's/@''HAVE_UINT32_T''@/0/g' \
    -e 's/@''HAVE_UINT64_T''@/0/g' \
    -e 's/@''HAVE_INT_LEAST8_T''@/0/g' \
    -e 's/@''HAVE_INT_LEAST16_T''@/0/g' \
    -e 's/@''HAVE_INT_LEAST32_T''@/0/g' \
    -e 's/@''HAVE_INT_LEAST64_T''@/0/g' \
    -e 's/@''HAVE_UINT_LEAST8_T''@/0/g' \
    -e 's/@''HAVE_UINT_LEAST16_T''@/0/g' \
    -e 's/@''HAVE_UINT_LEAST32_T''@/0/g' \
    -e 's/@''HAVE_UINT_LEAST64_T''@/0/g' \
    -e 's/@''HAVE_INT_FAST8_T''@/0/g' \
    -e 's/@''HAVE_INT_FAST16_T''@/0/g' \
    -e 's/@''HAVE_INT_FAST32_T''@/0/g' \
    -e 's/@''HAVE_INT_FAST64_T''@/0/g' \
    -e 's/@''HAVE_UINT_FAST8_T''@/0/g' \
    -e 's/@''HAVE_UINT_FAST16_T''@/0/g' \
    -e 's/@''HAVE_UINT_FAST32_T''@/0/g' \
    -e 's/@''HAVE_UINT_FAST64_T''@/0/g' \
    -e 's/@''HAVE_INTPTR_T''@/0/g' \
    -e 's/@''HAVE_UINTPTR_T''@/0/g' \
    -e 's/@''HAVE_INTMAX_T''@/0/g' \
    -e 's/@''HAVE_UINTMAX_T''@/0/g' \
    -e 's/@''BITSIZEOF_UNSIGNED_INT''@/32/g' \
    -e 's/@''BITSIZEOF_LONG''@/32/g' \
    -e 's/@''BITSIZEOF_UNSIGNED_LONG''@/32/g' \
    -e 's/@''BITSIZEOF_INT8_T''@//g' \
    -e 's/@''BITSIZEOF_INT16_T''@//g' \
    -e 's/@''BITSIZEOF_INT32_T''@//g' \
    -e 's/@''BITSIZEOF_INT64_T''@//g' \
    -e 's/@''BITSIZEOF_UINT8_T''@//g' \
    -e 's/@''BITSIZEOF_UINT16_T''@//g' \
    -e 's/@''BITSIZEOF_UINT32_T''@//g' \
    -e 's/@''BITSIZEOF_UINT64_T''@//g' \
    -e 's/@''BITSIZEOF_INT_LEAST8_T''@//g' \
    -e 's/@''BITSIZEOF_INT_LEAST16_T''@//g' \
    -e 's/@''BITSIZEOF_INT_LEAST32_T''@//g' \
    -e 's/@''BITSIZEOF_INT_LEAST64_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_LEAST8_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_LEAST16_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_LEAST32_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_LEAST64_T''@//g' \
    -e 's/@''BITSIZEOF_INT_FAST8_T''@//g' \
    -e 's/@''BITSIZEOF_INT_FAST16_T''@//g' \
    -e 's/@''BITSIZEOF_INT_FAST32_T''@//g' \
    -e 's/@''BITSIZEOF_INT_FAST64_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_FAST8_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_FAST16_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_FAST32_T''@//g' \
    -e 's/@''BITSIZEOF_UINT_FAST64_T''@//g' \
    -e 's/@''BITSIZEOF_INTPTR_T''@//g' \
    -e 's/@''BITSIZEOF_UINTPTR_T''@//g' \
    -e 's/@''BITSIZEOF_INTMAX_T''@//g' \
    -e 's/@''BITSIZEOF_UINTMAX_T''@//g' \
    -e 's/@''BITSIZEOF_PTRDIFF_T''@/32/g' \
    -e 's/@''SAME_TYPE_PTRDIFF_T_LONG''@/0/g' \
    -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/32/g' \
    -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/1/g' \
    -e 's/@''SAME_TYPE_SIG_ATOMIC_T_LONG''@/0/g' \
    -e 's/@''SAME_TYPE_SIG_ATOMIC_T_UNSIGNED_LONG''@//g' \
    -e 's/@''BITSIZEOF_SIZE_T''@/32/g' \
    -e 's/@''SAME_TYPE_SIZE_T_UNSIGNED_LONG''@/0/g' \
    -e 's/@''BITSIZEOF_WCHAR_T''@/32/g' \
    -e 's/@''HAVE_SIGNED_WCHAR_T''@/1/g' \
    -e 's/@''SAME_TYPE_WCHAR_T_LONG''@/1/g' \
    -e 's/@''SAME_TYPE_WCHAR_T_UNSIGNED_LONG''@//g' \
    -e 's/@''BITSIZEOF_WINT_T''@/32/g' \
    -e 's/@''HAVE_SIGNED_WINT_T''@/1/g' \
    -e 's/@''SAME_TYPE_WINT_T_LONG''@/1/g' \
    -e 's/@''SAME_TYPE_WINT_T_UNSIGNED_LONG''@//g' \
    < /u/scjones/cvs-nightly/lib/stdint_.h > stdint.h-t
mv stdint.h-t stdint.h
gmake  all-am
gmake[3]: Entering directory `/scratch/cvs-nightly/lib'
source='/u/scjones/cvs-nightly/lib/sighandle.c' object='sighandle.o' libtool=no 
\
DEPDIR=.deps depmode=sgi /bin/sh /u/scjones/cvs-nightly/build-aux/depcomp \
cc -mips3 -DHAVE_CONFIG_H -I. -I/u/scjones/cvs-nightly/lib -I..  -I../intl 
-Ino/include  -g -c /u/scjones/cvs-nightly/lib/sighandle.c
cc-1013 cc: ERROR File = ./stdint.h, Line = 67
  An expected file name is missing.

  # include /usr/include/stdint.h
            ^

1 catastrophic error detected in the compilation of 
"/u/scjones/cvs-nightly/lib/sighandle.c".
Compilation terminated.
gmake[3]: *** [sighandle.o] Error 2
gmake[3]: Leaving directory `/scratch/cvs-nightly/lib'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory `/scratch/cvs-nightly/lib'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/scratch/cvs-nightly'
gmake: *** [all] Error 2

--%--multipart-mixed-boundary-1.4383.1150578062--%--




reply via email to

[Prev in Thread] Current Thread [Next in Thread]