pspp-dev
[Top][All Lists]
Advanced

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

Re: error when building


From: Harry Thijssen
Subject: Re: error when building
Date: Sun, 16 Apr 2017 15:55:13 +0200

Hi

It seems to me this is fixed, but I get a new issue.See below

I usually don't do a git-pull, so maybe I made a mistake there.

Have

mv doc/help-pages-list,tmp doc/help-pages-list
/bin/sh /home/harry/pspp-master-20170416/pspp-g70416/build-aux/missing makeinfo  --docbook -I . \
        ./doc/pspp.texi -o - \
        | /usr/bin/sed -e 's/Time-&-Date/Time-\&-Date/g' \
        -e 's/“/\“/g' \
        -e 's/”/\”/g' \
        -e 's/‘/\‘/g' \
        -e 's/’/\’/g' \
        -e 's/—/\—/g' \
        -e 's/–/\′/g' \
                -e 's/é/\é/g' \
        -e 's/©/\©/g' \
        -e 's/−/\−/g' \
        -e 's/…/\…/g' \
        -e 's/•/\ߦ/g' \
        -e 's/././g' \
        -e 's%\(<figure [^>]*\)>%\1/>%g' \
 | gawk '/<para>.*<table.*>.*<\/para>/{x=sub("</para>",""); print; s=1;next}/<\/table>/{print; if (s==1) print "</para>"; s=0; next}1' \
> doc/pspp.xml,tmp
/usr/bin/X11/xmllint --output /dev/null doc/pspp.xml,tmp
cat ./doc/help-pages-list | while read node ; do \
 /usr/bin/X11/xmllint --xpath "$node" doc/pspp.xml,tmp > /dev/null; \
 if test $? -ne 0 ; then  echo "$node does not appear in doc/pspp.xml" ; exit 1; fi ; \
 done
XPath set is empty
//address@hidden'T_002dTEST'] does not appear in doc/pspp.xml
Makefile:12283: recipe for target 'doc/pspp.xml' failed
make[2]: *** [doc/pspp.xml] Error 1
make[2]: Leaving directory '/home/harry/pspp-master-20170416/pspp-g70416'
Makefile:11574: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1                                                                                                                                                                                                                          

2017-04-16 14:20 GMT+02:00 John Darrington <address@hidden>:
Thanks.

I pushed a fix.  Please run git pull and try again.

J'

On Sun, Apr 16, 2017 at 01:58:33PM +0200, Harry Thijssen wrote:
     Sure.

     Maybe config.log will help too.

     Have fun

     2017-04-16 13:43 GMT+02:00 John Darrington <address@hidden>:

     > Can you post a copy of your config.h
     > ??
     >
     > On Sun, Apr 16, 2017 at 12:34:48PM +0200, Harry Thijssen wrote:
     >      Hi
     >
     >      There seems to be a new issue introduced. Now I get:
     >
     >      libtool: compile:  i686-w64-mingw32-gcc -DHAVE_CONFIG_H -I. -I./gl
     > -I./gl
     >      -DINSTALLDIR=\"/usr/i686-w64-mingw32/sys-root/mingw/bin\" -I./src
     > -I./lib
     >      -I./src/language/stats -I./src/language/expressions
     >      -I./src/language/expressions -Isrc
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include -mms-bitfields
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/pango-1.0
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/harfbuzz
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/pango-1.0
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/cairo
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/glib-2.0
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/lib/glib-2.0/include
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/pixman-1
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/freetype2
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include
     >      -I/usr/i686-w64-mingw32/sys-root/mingw/include/libpng16 -ggdb -MT
     >      src/ui/terminal/src_ui_terminal_libui_la-terminal.lo -MD -MP -MF
     >      src/ui/terminal/.deps/src_ui_terminal_libui_la-terminal.Tpo -c
     >      src/ui/terminal/terminal.c  -DDLL_EXPORT -DPIC -o
     >      src/ui/terminal/.libs/src_ui_terminal_libui_la-terminal.o
     >      src/ui/terminal/terminal.c: In function 'terminal_check_size':
     >      src/ui/terminal/terminal.c:51:18: error: storage size of 'ws' isn't
     > known
     >         struct winsize ws;
     >                        ^~
     >      src/ui/terminal/terminal.c:52:12: warning: implicit declaration of
     > function
     >      'ioctl' [-Wimplicit-function-declaration]
     >         if (0 == ioctl (0, TIOCGWINSZ, &ws))
     >                  ^~~~~
     >      src/ui/terminal/terminal.c:52:22: error: 'TIOCGWINSZ' undeclared
     > (first use
     >      in this function)
     >         if (0 == ioctl (0, TIOCGWINSZ, &ws))
     >                            ^~~~~~~~~~
     >      src/ui/terminal/terminal.c:52:22: note: each undeclared identifier is
     >      reported only once for each function it appears in
     >      Makefile:8870: recipe for target
     >      'src/ui/terminal/src_ui_terminal_libui_la-terminal.lo' failed
     >      make[2]: *** [src/ui/terminal/src_ui_terminal_libui_la-terminal.lo]
     > Error 1
     >      make[2]: Leaving directory
     >      '/home/harry/pspp-master-20170416/pspp-0.10.4-g0ff73f'
     >      Makefile:11578: recipe for target 'all-recursive' failed
     >      make[1]: *** [all-recursive] Error 1
     >
     >      Have fun
     >
     >

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

     /* Define if building universal (internal helper macro) */
     /* #undef AC_APPLE_UNIVERSAL_BUILD */

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

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

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

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

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

     /* Define if you wish *printf() functions that have a safe handling of
        non-IEEE-754 'long double' values. */
     #define CHECK_PRINTF_SAFE 1

     /* 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 to 1 if using `alloca.c'. */
     /* #undef C_ALLOCA */

     /* Define to 1 if the C locale may have encoding errors. */
     #define C_LOCALE_MAYBE_EILSEQ 1

     /* Define as the bit index in the word where to find bit 0 of the exponent of
        'double'. */
     #define DBL_EXPBIT0_BIT 20

     /* Define as the word index where to find the exponent of 'double'. */
     #define DBL_EXPBIT0_WORD 1

     /* Define as the bit index in the word where to find the sign of 'double'. */
     /* #undef DBL_SIGNBIT_BIT */

     /* Define as the word index where to find the sign of 'double'. */
     /* #undef DBL_SIGNBIT_WORD */

     /* Define to 1 if debugging is enabled. */
     /* #undef DEBUGGING */

     /* Define to 1 if // is a file system root distinct from /. */
     /* #undef DOUBLE_SLASH_IS_DISTINCT_ROOT */

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

     /* Define to 1 if the package shall run at any location in the file system. */
     #define ENABLE_RELOCATABLE 1

     /* Define this to 1 if F_DUPFD behavior does not match POSIX */
     /* #undef FCNTL_DUPFD_BUGGY */

     /* Define to nothing if C supports flexible array members, and to 1 if it does
        not. That way, with a declaration like 'struct s { int n; double
        d[FLEXIBLE_ARRAY_MEMBER]; };', the struct hack can be used with pre-C99
        compilers. When computing the size of such an object, don't use 'sizeof
        (struct s)' as it overestimates the size. Use 'offsetof (struct s, d)'
        instead. Don't use 'offsetof (struct s, d[0])', as this doesn't work with
        MSVC and with C++ compilers. */
     #define FLEXIBLE_ARRAY_MEMBER /**/

     /* Define as the bit index in the word where to find bit 0 of the exponent of
        'float'. */
     #define FLT_EXPBIT0_BIT 23

     /* Define as the word index where to find the exponent of 'float'. */
     #define FLT_EXPBIT0_WORD 0

     /* Define as the bit index in the word where to find the sign of 'float'. */
     /* #undef FLT_SIGNBIT_BIT */

     /* Define as the word index where to find the sign of 'float'. */
     /* #undef FLT_SIGNBIT_WORD */

     /* Define to 1 if the system's ftello function has the Solaris bug. */
     /* #undef FTELLO_BROKEN_AFTER_SWITCHING_FROM_READ_TO_WRITE */

     /* Define to 1 if nl_langinfo (YESEXPR) returns a non-empty string. */
     /* #undef FUNC_NL_LANGINFO_YESEXPR_WORKS */

     /* Define to 1 if realpath() can malloc memory, always gives an absolute path,
        and handles trailing slash correctly. */
     /* #undef FUNC_REALPATH_WORKS */

     /* Define if gettimeofday clobbers the localtime buffer. */
     #define GETTIMEOFDAY_CLOBBERS_LOCALTIME 1

     /* Define this to 'void' or 'struct timezone' to match the system's
        declaration of the second argument to gettimeofday. */
     #define GETTIMEOFDAY_TIMEZONE void

     /* Define to 1 if building in support for reading Gnumeric files. */
     #define GNM_READ_SUPPORT 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module canonicalize-lgpl shall be considered present. */
     #define GNULIB_CANONICALIZE_LGPL 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module dirname shall be considered present. */
     #define GNULIB_DIRNAME 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module fscanf shall be considered present. */
     #define GNULIB_FSCANF 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module fwriteerror shall be considered present. */
     #define GNULIB_FWRITEERROR 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module lock shall be considered present. */
     #define GNULIB_LOCK 1

     /* Define to 1 if printf and friends should be labeled with attribute
        "__gnu_printf__" instead of "__printf__" */
     #define GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module scanf shall be considered present. */
     #define GNULIB_SCANF 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module snprintf shall be considered present. */
     #define GNULIB_SNPRINTF 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module strerror shall be considered present. */
     #define GNULIB_STRERROR 1

     /* Define to 1 when the gnulib module btowc should be tested. */
     #define GNULIB_TEST_BTOWC 1

     /* Define to 1 when the gnulib module canonicalize_file_name should be tested.
        */
     #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1

     /* Define to 1 when the gnulib module chdir should be tested. */
     #define GNULIB_TEST_CHDIR 1

     /* Define to 1 when the gnulib module close should be tested. */
     #define GNULIB_TEST_CLOSE 1

     /* Define to 1 when the gnulib module dup2 should be tested. */
     #define GNULIB_TEST_DUP2 1

     /* Define to 1 when the gnulib module environ should be tested. */
     #define GNULIB_TEST_ENVIRON 1

     /* Define to 1 when the gnulib module fcntl should be tested. */
     #define GNULIB_TEST_FCNTL 1

     /* Define to 1 when the gnulib module floor should be tested. */
     #define GNULIB_TEST_FLOOR 1

     /* Define to 1 when the gnulib module fprintf-posix should be tested. */
     #define GNULIB_TEST_FPRINTF_POSIX 1

     /* Define to 1 when the gnulib module frexp should be tested. */
     #define GNULIB_TEST_FREXP 1

     /* Define to 1 when the gnulib module frexpl should be tested. */
     #define GNULIB_TEST_FREXPL 1

     /* Define to 1 when the gnulib module fseek should be tested. */
     #define GNULIB_TEST_FSEEK 1

     /* Define to 1 when the gnulib module fseeko should be tested. */
     #define GNULIB_TEST_FSEEKO 1

     /* Define to 1 when the gnulib module fstat should be tested. */
     #define GNULIB_TEST_FSTAT 1

     /* Define to 1 when the gnulib module ftell should be tested. */
     #define GNULIB_TEST_FTELL 1

     /* Define to 1 when the gnulib module ftello should be tested. */
     #define GNULIB_TEST_FTELLO 1

     /* Define to 1 when the gnulib module getdelim should be tested. */
     #define GNULIB_TEST_GETDELIM 1

     /* Define to 1 when the gnulib module getdtablesize should be tested. */
     #define GNULIB_TEST_GETDTABLESIZE 1

     /* Define to 1 when the gnulib module getline should be tested. */
     #define GNULIB_TEST_GETLINE 1

     /* Define to 1 when the gnulib module getopt-gnu should be tested. */
     #define GNULIB_TEST_GETOPT_GNU 1

     /* Define to 1 when the gnulib module gettimeofday should be tested. */
     #define GNULIB_TEST_GETTIMEOFDAY 1

     /* Define to 1 when the gnulib module isfinite should be tested. */
     #define GNULIB_TEST_ISFINITE 1

     /* Define to 1 when the gnulib module isinf should be tested. */
     #define GNULIB_TEST_ISINF 1

     /* Define to 1 when the gnulib module isnan should be tested. */
     #define GNULIB_TEST_ISNAN 1

     /* Define to 1 when the gnulib module isnand should be tested. */
     #define GNULIB_TEST_ISNAND 1

     /* Define to 1 when the gnulib module isnanf should be tested. */
     #define GNULIB_TEST_ISNANF 1

     /* Define to 1 when the gnulib module isnanl should be tested. */
     #define GNULIB_TEST_ISNANL 1

     /* Define to 1 when the gnulib module iswblank should be tested. */
     #define GNULIB_TEST_ISWBLANK 1

     /* Define to 1 when the gnulib module localeconv should be tested. */
     #define GNULIB_TEST_LOCALECONV 1

     /* Define to 1 when the gnulib module lseek should be tested. */
     #define GNULIB_TEST_LSEEK 1

     /* Define to 1 when the gnulib module lstat should be tested. */
     #define GNULIB_TEST_LSTAT 1

     /* Define to 1 when the gnulib module malloc-posix should be tested. */
     #define GNULIB_TEST_MALLOC_POSIX 1

     /* Define to 1 when the gnulib module mbrtowc should be tested. */
     #define GNULIB_TEST_MBRTOWC 1

     /* Define to 1 when the gnulib module mbsinit should be tested. */
     #define GNULIB_TEST_MBSINIT 1

     /* Define to 1 when the gnulib module mbtowc should be tested. */
     #define GNULIB_TEST_MBTOWC 1

     /* Define to 1 when the gnulib module memchr should be tested. */
     #define GNULIB_TEST_MEMCHR 1

     /* Define to 1 when the gnulib module mempcpy should be tested. */
     #define GNULIB_TEST_MEMPCPY 1

     /* Define to 1 when the gnulib module memrchr should be tested. */
     #define GNULIB_TEST_MEMRCHR 1

     /* Define to 1 when the gnulib module mkdtemp should be tested. */
     #define GNULIB_TEST_MKDTEMP 1

     /* Define to 1 when the gnulib module mkstemp should be tested. */
     #define GNULIB_TEST_MKSTEMP 1

     /* Define to 1 when the gnulib module mktime should be tested. */
     #define GNULIB_TEST_MKTIME 1

     /* Define to 1 when the gnulib module nl_langinfo should be tested. */
     #define GNULIB_TEST_NL_LANGINFO 1

     /* Define to 1 when the gnulib module open should be tested. */
     #define GNULIB_TEST_OPEN 1

     /* Define to 1 when the gnulib module pipe2 should be tested. */
     #define GNULIB_TEST_PIPE2 1

     /* Define to 1 when the gnulib module printf-posix should be tested. */
     #define GNULIB_TEST_PRINTF_POSIX 1

     /* Define to 1 when the gnulib module raise should be tested. */
     #define GNULIB_TEST_RAISE 1

     /* Define to 1 when the gnulib module rawmemchr should be tested. */
     #define GNULIB_TEST_RAWMEMCHR 1

     /* Define to 1 when the gnulib module read should be tested. */
     #define GNULIB_TEST_READ 1

     /* Define to 1 when the gnulib module readlink should be tested. */
     #define GNULIB_TEST_READLINK 1

     /* Define to 1 when the gnulib module realloc-posix should be tested. */
     #define GNULIB_TEST_REALLOC_POSIX 1

     /* Define to 1 when the gnulib module realpath should be tested. */
     #define GNULIB_TEST_REALPATH 1

     /* Define to 1 when the gnulib module rename should be tested. */
     #define GNULIB_TEST_RENAME 1

     /* Define to 1 when the gnulib module rmdir should be tested. */
     #define GNULIB_TEST_RMDIR 1

     /* Define to 1 when the gnulib module round should be tested. */
     #define GNULIB_TEST_ROUND 1

     /* Define to 1 when the gnulib module secure_getenv should be tested. */
     #define GNULIB_TEST_SECURE_GETENV 1

     /* Define to 1 when the gnulib module select should be tested. */
     #define GNULIB_TEST_SELECT 1

     /* Define to 1 when the gnulib module setenv should be tested. */
     #define GNULIB_TEST_SETENV 1

     /* Define to 1 when the gnulib module sigaction should be tested. */
     #define GNULIB_TEST_SIGACTION 1

     /* Define to 1 when the gnulib module signbit should be tested. */
     #define GNULIB_TEST_SIGNBIT 1

     /* Define to 1 when the gnulib module sigprocmask should be tested. */
     #define GNULIB_TEST_SIGPROCMASK 1

     /* Define to 1 when the gnulib module snprintf should be tested. */
     #define GNULIB_TEST_SNPRINTF 1

     /* Define to 1 when the gnulib module sprintf-posix should be tested. */
     #define GNULIB_TEST_SPRINTF_POSIX 1

     /* Define to 1 when the gnulib module stat should be tested. */
     #define GNULIB_TEST_STAT 1

     /* Define to 1 when the gnulib module stpcpy should be tested. */
     #define GNULIB_TEST_STPCPY 1

     /* Define to 1 when the gnulib module strcasestr should be tested. */
     #define GNULIB_TEST_STRCASESTR 1

     /* Define to 1 when the gnulib module strdup should be tested. */
     #define GNULIB_TEST_STRDUP 1

     /* Define to 1 when the gnulib module strerror should be tested. */
     #define GNULIB_TEST_STRERROR 1

     /* Define to 1 when the gnulib module strncat should be tested. */
     #define GNULIB_TEST_STRNCAT 1

     /* Define to 1 when the gnulib module strndup should be tested. */
     #define GNULIB_TEST_STRNDUP 1

     /* Define to 1 when the gnulib module strnlen should be tested. */
     #define GNULIB_TEST_STRNLEN 1

     /* Define to 1 when the gnulib module strsep should be tested. */
     #define GNULIB_TEST_STRSEP 1

     /* Define to 1 when the gnulib module strtod should be tested. */
     #define GNULIB_TEST_STRTOD 1

     /* Define to 1 when the gnulib module strtok_r should be tested. */
     #define GNULIB_TEST_STRTOK_R 1

     /* Define to 1 when the gnulib module timegm should be tested. */
     #define GNULIB_TEST_TIMEGM 1

     /* Define to 1 when the gnulib module time_r should be tested. */
     #define GNULIB_TEST_TIME_R 1

     /* Define to 1 when the gnulib module time_rz should be tested. */
     #define GNULIB_TEST_TIME_RZ 1

     /* Define to 1 when the gnulib module trunc should be tested. */
     #define GNULIB_TEST_TRUNC 1

     /* Define to 1 when the gnulib module uninorm/u8-normalize should be tested.
        */
     #define GNULIB_TEST_UNINORM_U8_NORMALIZE 1

     /* Define to 1 when the gnulib module unsetenv should be tested. */
     #define GNULIB_TEST_UNSETENV 1

     /* Define to 1 when the gnulib module vasprintf should be tested. */
     #define GNULIB_TEST_VASPRINTF 1

     /* Define to 1 when the gnulib module vfprintf-posix should be tested. */
     #define GNULIB_TEST_VFPRINTF_POSIX 1

     /* Define to 1 when the gnulib module vprintf-posix should be tested. */
     #define GNULIB_TEST_VPRINTF_POSIX 1

     /* Define to 1 when the gnulib module vsnprintf should be tested. */
     #define GNULIB_TEST_VSNPRINTF 1

     /* Define to 1 when the gnulib module vsprintf-posix should be tested. */
     #define GNULIB_TEST_VSPRINTF_POSIX 1

     /* Define to 1 when the gnulib module wcrtomb should be tested. */
     #define GNULIB_TEST_WCRTOMB 1

     /* Define to 1 when the gnulib module wcwidth should be tested. */
     #define GNULIB_TEST_WCWIDTH 1

     /* Define to 1 when the gnulib module write should be tested. */
     #define GNULIB_TEST_WRITE 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module unistr/u8-mbtouc shall be considered present. */
     #define GNULIB_UNISTR_U8_MBTOUC 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module unistr/u8-mbtoucr shall be considered present. */
     #define GNULIB_UNISTR_U8_MBTOUCR 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module unistr/u8-mbtouc-unsafe shall be considered
        present. */
     #define GNULIB_UNISTR_U8_MBTOUC_UNSAFE 1

     /* Define to a C preprocessor _expression_ that evaluates to 1 or 0, depending
        whether the gnulib module unistr/u8-uctomb shall be considered present. */
     #define GNULIB_UNISTR_U8_UCTOMB 1

     /* Define to 1 if `TIOCGWINSZ' requires <sys/ioctl.h>. */
     /* #undef GWINSZ_IN_SYS_IOCTL */

     /* 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 to 1 if you have <alloca.h> and it should be used (not on Ultrix).
        */
     /* #undef HAVE_ALLOCA_H */

     /* 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. */
     #define HAVE_BTOWC 1

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

     /* Define to 1 if strtold conforms to C99. */
     #define HAVE_C99_STRTOLD 1

     /* Define to 1 if Cairo and Pango are available. */
     #define HAVE_CAIRO 1

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

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

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

     /* Define if the copysignf function is declared in <math.h> and available in
        libc. */
     #define HAVE_COPYSIGNF_IN_LIBC 1

     /* Define if the copysignl function is declared in <math.h> and available in
        libc. */
     #define HAVE_COPYSIGNL_IN_LIBC 1

     /* Define if the copysign function is declared in <math.h> and available in
        libc. */
     #define HAVE_COPYSIGN_IN_LIBC 1

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

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

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

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

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

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

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

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

     /* 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 0

     /* 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 `fseeko', and to 0 if you don't.
        */
     #define HAVE_DECL_FSEEKO 1

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

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

     /* 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 `getchar_unlocked', and to 0 if
        you don't. */
     #define HAVE_DECL_GETCHAR_UNLOCKED 0

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

     /* 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 `getdtablesize', and to 0 if you
        don't. */
     #define HAVE_DECL_GETDTABLESIZE 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 `getpass', and to 0 if you
        don't. */
     #define HAVE_DECL_GETPASS 0

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

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

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

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

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

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

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

     /* 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 `program_invocation_name', and
        to 0 if you don't. */
     #define HAVE_DECL_PROGRAM_INVOCATION_NAME 0

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

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

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

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

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

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

     /* Define to 1 if you have the declaration of `snprintf', and to 0 if you
        don't. */
     #define HAVE_DECL_SNPRINTF 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 `strncasecmp', and to 0 if you
        don't. */
     #define HAVE_DECL_STRNCASECMP 1

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

     /* Define to 1 if you have the `execl' function. */
     #define HAVE_EXECL 1

     /* Define to 1 if you have the `fcntl' function. */
     /* #undef HAVE_FCNTL */

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

     /* Define to 1 if you have the `feholdexcept' function. */
     #define HAVE_FEHOLDEXCEPT 1

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

     /* Define to 1 if you have the `finite' function. */
     #define HAVE_FINITE 1

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

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

     /* Define to 1 if you have the `fpsetmask' function. */
     /* #undef HAVE_FPSETMASK */

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

     /* Define if the frexpl function is available in libc. */
     /* #undef HAVE_FREXPL_IN_LIBC */

     /* Define if the frexp function is available in libc. */
     /* #undef HAVE_FREXP_IN_LIBC */

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

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

     /* Define to 1 if you have the `getcwd' function. */
     #define HAVE_GETCWD 1

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

     /* Define to 1 if you have the `getdtablesize' function. */
     /* #undef HAVE_GETDTABLESIZE */

     /* Define to 1 if you have the `getegid' function. */
     /* #undef HAVE_GETEGID */

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

     /* Define to 1 if you have the `getgid' function. */
     /* #undef HAVE_GETGID */

     /* 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. */
     #define HAVE_GETOPT_LONG_ONLY 1

     /* Define to 1 if you have the `getpass' function. */
     /* #undef HAVE_GETPASS */

     /* Define to 1 if you have the `getpid' function. */
     #define HAVE_GETPID 1

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

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

     /* Define to 1 if you have the `getuid' function. */
     /* #undef HAVE_GETUID */

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

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

     /* Define to 1 if the compiler supports one of the keywords 'inline',
        '__inline__', '__inline' and effectively inlines functions marked as such.
        */
     #define HAVE_INLINE 1

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

     /* Define to 1 if you have the <inttypes.h> header file. */
     #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 you have the `isblank' function. */
     #define HAVE_ISBLANK 1

     /* Define to 1 if you have the `isinf' function. */
     /* #undef HAVE_ISINF */

     /* Define to 1 if you have the `isnan' function. */
     #define HAVE_ISNAN 1

     /* Define if the isnan(double) function is available in libc. */
     #define HAVE_ISNAND_IN_LIBC 1

     /* Define if the isnan(float) function is available in libc. */
     #define HAVE_ISNANF_IN_LIBC 1

     /* Define if the isnan(long double) function is available in libc. */
     #define HAVE_ISNANL_IN_LIBC 1

     /* Define to 1 if you have the `issetugid' function. */
     /* #undef HAVE_ISSETUGID */

     /* Define to 1 if you have the `iswblank' function. */
     #define HAVE_ISWBLANK 1

     /* Define to 1 if you have the `iswcntrl' function. */
     #define HAVE_ISWCNTRL 1

     /* Define to 1 if you have the `iswctype' function. */
     #define HAVE_ISWCTYPE 1

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

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

     /* Define if you have LC_PAPER. */
     /* #undef HAVE_LC_PAPER */

     /* Define if the ldexpl function is available in libc. */
     #define HAVE_LDEXPL_IN_LIBC 1

     /* Define if the ldexp function is available in libc. */
     #define HAVE_LDEXP_IN_LIBC 1

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

     /* Define to 1 if you have the `link' function. */
     /* #undef HAVE_LINK */

     /* Define to 1 if you have the `localtime_r' function. */
     /* #undef HAVE_LOCALTIME_R */

     /* Define to 1 if the system has the type 'long long int'. */
     #define HAVE_LONG_LONG_INT 1

     /* Define to 1 if you have the `lstat' function. */
     /* #undef HAVE_LSTAT */

     /* Define to 1 if you have the <mach-o/dyld.h> header file. */
     /* #undef HAVE_MACH_O_DYLD_H */

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

     /* Define if the 'malloc' function is POSIX compliant. */
     /* #undef HAVE_MALLOC_POSIX */

     /* 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 <math.h> header file. */
     #define HAVE_MATH_H 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 <wchar.h> declares mbstate_t. */
     #define HAVE_MBSTATE_T 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. */
     #define HAVE_MEMPCPY 1

     /* 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. */
     /* #undef HAVE_MINMAX_IN_SYS_PARAM_H */

     /* Define to 1 if you have the `mkdtemp' function. */
     /* #undef HAVE_MKDTEMP */

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

     /* Define to 1 if you have the `mprotect' function. */
     #define HAVE_MPROTECT 1

     /* Define to 1 on MSVC platforms that have the "invalid parameter handler"
        concept. */
     #define HAVE_MSVC_INVALID_PARAMETER_HANDLER 1

     /* Define to 1 if you have the `nl_langinfo' function. */
     /* #undef HAVE_NL_LANGINFO */

     /* Define to 1 if you have the `pipe2' function. */
     /* #undef HAVE_PIPE2 */

     /* Define to 1 if you have the `popen' function. */
     #define HAVE_POPEN 1

     /* Define if the <pthread.h> defines PTHREAD_MUTEX_RECURSIVE. */
     #define HAVE_PTHREAD_MUTEX_RECURSIVE 1

     /* Define if the POSIX multithreading library has read/write locks. */
     #define HAVE_PTHREAD_RWLOCK 1

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

     /* Define to 1 if you have the `raise' function. */
     #define HAVE_RAISE 1

     /* Define to 1 if you have the `rawmemchr' function. */
     /* #undef HAVE_RAWMEMCHR */

     /* Define to 1 if accept is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_ACCEPT */

     /* Define to 1 if accept4 is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_ACCEPT4 */

     /* Define to 1 if acosf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ACOSF 1

     /* Define to 1 if acosl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ACOSL 1

     /* Define to 1 if asinf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ASINF 1

     /* Define to 1 if asinl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ASINL 1

     /* Define to 1 if atanf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ATANF 1

     /* Define to 1 if atanl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ATANL 1

     /* Define to 1 if atoll is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ATOLL 1

     /* Define to 1 if bind is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_BIND */

     /* Define to 1 if btowc is declared even after undefining macros. */
     #define HAVE_RAW_DECL_BTOWC 1

     /* Define to 1 if canonicalize_file_name is declared even after undefining
        macros. */
     /* #undef HAVE_RAW_DECL_CANONICALIZE_FILE_NAME */

     /* Define to 1 if cbrt is declared even after undefining macros. */
     #define HAVE_RAW_DECL_CBRT 1

     /* Define to 1 if cbrtf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_CBRTF 1

     /* Define to 1 if cbrtl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_CBRTL 1

     /* Define to 1 if ceilf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_CEILF 1

     /* Define to 1 if ceill is declared even after undefining macros. */
     #define HAVE_RAW_DECL_CEILL 1

     /* Define to 1 if chdir is declared even after undefining macros. */
     #define HAVE_RAW_DECL_CHDIR 1

     /* Define to 1 if chown is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_CHOWN */

     /* Define to 1 if connect is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_CONNECT */

     /* Define to 1 if copysign is declared even after undefining macros. */
     #define HAVE_RAW_DECL_COPYSIGN 1

     /* Define to 1 if copysignf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_COPYSIGNF 1

     /* Define to 1 if copysignl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_COPYSIGNL 1

     /* Define to 1 if cosf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_COSF 1

     /* Define to 1 if coshf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_COSHF 1

     /* Define to 1 if cosl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_COSL 1

     /* Define to 1 if dprintf is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_DPRINTF */

     /* Define to 1 if dup is declared even after undefining macros. */
     #define HAVE_RAW_DECL_DUP 1

     /* Define to 1 if dup2 is declared even after undefining macros. */
     #define HAVE_RAW_DECL_DUP2 1

     /* Define to 1 if dup3 is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_DUP3 */

     /* Define to 1 if duplocale is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_DUPLOCALE */

     /* Define to 1 if endusershell is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_ENDUSERSHELL */

     /* Define to 1 if environ is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_ENVIRON */

     /* Define to 1 if euidaccess is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_EUIDACCESS */

     /* Define to 1 if exp2 is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXP2 1

     /* Define to 1 if exp2f is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXP2F 1

     /* Define to 1 if exp2l is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXP2L 1

     /* Define to 1 if expf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXPF 1

     /* Define to 1 if expl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXPL 1

     /* Define to 1 if expm1 is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXPM1 1

     /* Define to 1 if expm1f is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXPM1F 1

     /* Define to 1 if expm1l is declared even after undefining macros. */
     #define HAVE_RAW_DECL_EXPM1L 1

     /* Define to 1 if fabsf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FABSF 1

     /* Define to 1 if fabsl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FABSL 1

     /* Define to 1 if faccessat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FACCESSAT */

     /* Define to 1 if fchdir is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FCHDIR */

     /* Define to 1 if fchmodat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FCHMODAT */

     /* Define to 1 if fchownat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FCHOWNAT */

     /* Define to 1 if fcntl is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FCNTL */

     /* Define to 1 if fdatasync is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FDATASYNC */

     /* Define to 1 if ffs is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FFS */

     /* Define to 1 if ffsl is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FFSL */

     /* Define to 1 if ffsll is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FFSLL */

     /* Define to 1 if floorf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FLOORF 1

     /* Define to 1 if floorl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FLOORL 1

     /* Define to 1 if fma is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FMA 1

     /* Define to 1 if fmaf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FMAF 1

     /* Define to 1 if fmal is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FMAL 1

     /* Define to 1 if fmod is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FMOD 1

     /* Define to 1 if fmodf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FMODF 1

     /* Define to 1 if fmodl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FMODL 1

     /* Define to 1 if fpurge is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FPURGE */

     /* Define to 1 if frexpf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FREXPF 1

     /* Define to 1 if frexpl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FREXPL 1

     /* Define to 1 if fseeko is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FSEEKO 1

     /* Define to 1 if fstat is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FSTAT 1

     /* Define to 1 if fstatat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FSTATAT */

     /* Define to 1 if fsync is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FSYNC */

     /* Define to 1 if ftello is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FTELLO 1

     /* Define to 1 if ftruncate is declared even after undefining macros. */
     #define HAVE_RAW_DECL_FTRUNCATE 1

     /* Define to 1 if futimens is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_FUTIMENS */

     /* Define to 1 if getcwd is declared even after undefining macros. */
     #define HAVE_RAW_DECL_GETCWD 1

     /* Define to 1 if getdelim is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETDELIM */

     /* Define to 1 if getdomainname is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETDOMAINNAME */

     /* Define to 1 if getdtablesize is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETDTABLESIZE */

     /* Define to 1 if getgroups is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETGROUPS */

     /* Define to 1 if gethostname is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETHOSTNAME */

     /* Define to 1 if getline is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETLINE */

     /* Define to 1 if getloadavg is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETLOADAVG */

     /* Define to 1 if getlogin is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETLOGIN */

     /* Define to 1 if getlogin_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETLOGIN_R */

     /* Define to 1 if getpagesize is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETPAGESIZE */

     /* Define to 1 if getpeername is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETPEERNAME */

     /* Define to 1 if gets is declared even after undefining macros. */
     #define HAVE_RAW_DECL_GETS 1

     /* Define to 1 if getsockname is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETSOCKNAME */

     /* Define to 1 if getsockopt is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETSOCKOPT */

     /* Define to 1 if getsubopt is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETSUBOPT */

     /* Define to 1 if gettimeofday is declared even after undefining macros. */
     #define HAVE_RAW_DECL_GETTIMEOFDAY 1

     /* Define to 1 if getusershell is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GETUSERSHELL */

     /* Define to 1 if grantpt is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GRANTPT */

     /* Define to 1 if group_member is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_GROUP_MEMBER */

     /* Define to 1 if hypotf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_HYPOTF 1

     /* Define to 1 if hypotl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_HYPOTL 1

     /* Define to 1 if ilogb is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ILOGB 1

     /* Define to 1 if ilogbf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ILOGBF 1

     /* Define to 1 if ilogbl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ILOGBL 1

     /* Define to 1 if initstate is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_INITSTATE */

     /* Define to 1 if initstate_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_INITSTATE_R */

     /* Define to 1 if isatty is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ISATTY 1

     /* Define to 1 if iswctype is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ISWCTYPE 1

     /* Define to 1 if lchmod is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_LCHMOD */

     /* Define to 1 if lchown is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_LCHOWN */

     /* Define to 1 if ldexpf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LDEXPF 1

     /* Define to 1 if ldexpl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LDEXPL 1

     /* Define to 1 if link is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_LINK */

     /* Define to 1 if linkat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_LINKAT */

     /* Define to 1 if listen is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_LISTEN */

     /* Define to 1 if log is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG 1

     /* Define to 1 if log10 is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG10 1

     /* Define to 1 if log10f is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG10F 1

     /* Define to 1 if log10l is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG10L 1

     /* Define to 1 if log1p is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG1P 1

     /* Define to 1 if log1pf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG1PF 1

     /* Define to 1 if log1pl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG1PL 1

     /* Define to 1 if log2 is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG2 1

     /* Define to 1 if log2f is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG2F 1

     /* Define to 1 if log2l is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOG2L 1

     /* Define to 1 if logb is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOGB 1

     /* Define to 1 if logbf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOGBF 1

     /* Define to 1 if logbl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOGBL 1

     /* Define to 1 if logf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOGF 1

     /* Define to 1 if logl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LOGL 1

     /* Define to 1 if lseek is declared even after undefining macros. */
     #define HAVE_RAW_DECL_LSEEK 1

     /* Define to 1 if lstat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_LSTAT */

     /* Define to 1 if mbrlen is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MBRLEN 1

     /* Define to 1 if mbrtowc is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MBRTOWC 1

     /* Define to 1 if mbsinit is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MBSINIT 1

     /* Define to 1 if mbsnrtowcs is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MBSNRTOWCS */

     /* Define to 1 if mbsrtowcs is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MBSRTOWCS 1

     /* Define to 1 if memmem is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MEMMEM */

     /* Define to 1 if mempcpy is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MEMPCPY 1

     /* Define to 1 if memrchr is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MEMRCHR */

     /* Define to 1 if mkdirat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKDIRAT */

     /* Define to 1 if mkdtemp is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKDTEMP */

     /* Define to 1 if mkfifo is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKFIFO */

     /* Define to 1 if mkfifoat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKFIFOAT */

     /* Define to 1 if mknod is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKNOD */

     /* Define to 1 if mknodat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKNODAT */

     /* Define to 1 if mkostemp is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKOSTEMP */

     /* Define to 1 if mkostemps is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKOSTEMPS */

     /* Define to 1 if mkstemp is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MKSTEMP 1

     /* Define to 1 if mkstemps is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_MKSTEMPS */

     /* Define to 1 if modf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MODF 1

     /* Define to 1 if modff is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MODFF 1

     /* Define to 1 if modfl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_MODFL 1

     /* Define to 1 if nl_langinfo is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_NL_LANGINFO */

     /* Define to 1 if openat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_OPENAT */

     /* Define to 1 if pclose is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PCLOSE */

     /* Define to 1 if pipe is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PIPE */

     /* Define to 1 if pipe2 is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PIPE2 */

     /* Define to 1 if popen is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_POPEN */

     /* Define to 1 if posix_openpt is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_POSIX_OPENPT */

     /* Define to 1 if powf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_POWF 1

     /* Define to 1 if pread is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PREAD */

     /* Define to 1 if pselect is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PSELECT */

     /* Define to 1 if pthread_sigmask is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PTHREAD_SIGMASK */

     /* Define to 1 if ptsname is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PTSNAME */

     /* Define to 1 if ptsname_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PTSNAME_R */

     /* Define to 1 if pwrite is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_PWRITE */

     /* Define to 1 if random is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_RANDOM */

     /* Define to 1 if random_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_RANDOM_R */

     /* Define to 1 if rawmemchr is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_RAWMEMCHR */

     /* Define to 1 if readlink is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_READLINK */

     /* Define to 1 if readlinkat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_READLINKAT */

     /* Define to 1 if realpath is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_REALPATH */

     /* Define to 1 if recv is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_RECV */

     /* Define to 1 if recvfrom is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_RECVFROM */

     /* Define to 1 if remainder is declared even after undefining macros. */
     #define HAVE_RAW_DECL_REMAINDER 1

     /* Define to 1 if remainderf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_REMAINDERF 1

     /* Define to 1 if remainderl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_REMAINDERL 1

     /* Define to 1 if renameat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_RENAMEAT */

     /* Define to 1 if rint is declared even after undefining macros. */
     #define HAVE_RAW_DECL_RINT 1

     /* Define to 1 if rintf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_RINTF 1

     /* Define to 1 if rintl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_RINTL 1

     /* Define to 1 if rmdir is declared even after undefining macros. */
     #define HAVE_RAW_DECL_RMDIR 1

     /* Define to 1 if round is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ROUND 1

     /* Define to 1 if roundf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ROUNDF 1

     /* Define to 1 if roundl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_ROUNDL 1

     /* Define to 1 if rpmatch is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_RPMATCH */

     /* Define to 1 if secure_getenv is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SECURE_GETENV */

     /* Define to 1 if select is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SELECT */

     /* Define to 1 if send is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SEND */

     /* Define to 1 if sendto is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SENDTO */

     /* Define to 1 if setenv is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SETENV */

     /* Define to 1 if sethostname is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SETHOSTNAME */

     /* Define to 1 if setlocale is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SETLOCALE 1

     /* Define to 1 if setsockopt is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SETSOCKOPT */

     /* Define to 1 if setstate is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SETSTATE */

     /* Define to 1 if setstate_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SETSTATE_R */

     /* Define to 1 if setusershell is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SETUSERSHELL */

     /* Define to 1 if shutdown is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SHUTDOWN */

     /* Define to 1 if sigaction is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGACTION */

     /* Define to 1 if sigaddset is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGADDSET */

     /* Define to 1 if sigdelset is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGDELSET */

     /* Define to 1 if sigemptyset is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGEMPTYSET */

     /* Define to 1 if sigfillset is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGFILLSET */

     /* Define to 1 if sigismember is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGISMEMBER */

     /* Define to 1 if sigpending is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGPENDING */

     /* Define to 1 if sigprocmask is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SIGPROCMASK */

     /* Define to 1 if sinf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SINF 1

     /* Define to 1 if sinhf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SINHF 1

     /* Define to 1 if sinl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SINL 1

     /* Define to 1 if sleep is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SLEEP 1

     /* Define to 1 if snprintf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SNPRINTF 1

     /* Define to 1 if socket is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SOCKET */

     /* Define to 1 if sqrtf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SQRTF 1

     /* Define to 1 if sqrtl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_SQRTL 1

     /* Define to 1 if srandom is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SRANDOM */

     /* Define to 1 if srandom_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SRANDOM_R */

     /* Define to 1 if stat is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STAT 1

     /* Define to 1 if stpcpy is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STPCPY */

     /* Define to 1 if stpncpy is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STPNCPY */

     /* Define to 1 if strcasecmp is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRCASECMP 1

     /* Define to 1 if strcasestr is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STRCASESTR */

     /* Define to 1 if strchrnul is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STRCHRNUL */

     /* Define to 1 if strdup is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRDUP 1

     /* Define to 1 if strerror_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STRERROR_R */

     /* Define to 1 if strncasecmp is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRNCASECMP 1

     /* Define to 1 if strncat is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRNCAT 1

     /* Define to 1 if strndup is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STRNDUP */

     /* Define to 1 if strnlen is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRNLEN 1

     /* Define to 1 if strpbrk is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRPBRK 1

     /* Define to 1 if strsep is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STRSEP */

     /* Define to 1 if strsignal is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STRSIGNAL */

     /* Define to 1 if strtod is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRTOD 1

     /* Define to 1 if strtok_r is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRTOK_R 1

     /* Define to 1 if strtoll is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRTOLL 1

     /* Define to 1 if strtoull is declared even after undefining macros. */
     #define HAVE_RAW_DECL_STRTOULL 1

     /* Define to 1 if strverscmp is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_STRVERSCMP */

     /* Define to 1 if symlink is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SYMLINK */

     /* Define to 1 if symlinkat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_SYMLINKAT */

     /* Define to 1 if tanf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TANF 1

     /* Define to 1 if tanhf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TANHF 1

     /* Define to 1 if tanl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TANL 1

     /* Define to 1 if tcgetsid is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_TCGETSID */

     /* Define to 1 if tmpfile is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TMPFILE 1

     /* Define to 1 if towctrans is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TOWCTRANS 1

     /* Define to 1 if trunc is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TRUNC 1

     /* Define to 1 if truncf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TRUNCF 1

     /* Define to 1 if truncl is declared even after undefining macros. */
     #define HAVE_RAW_DECL_TRUNCL 1

     /* Define to 1 if ttyname_r is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_TTYNAME_R */

     /* Define to 1 if unlink is declared even after undefining macros. */
     #define HAVE_RAW_DECL_UNLINK 1

     /* Define to 1 if unlinkat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_UNLINKAT */

     /* Define to 1 if unlockpt is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_UNLOCKPT */

     /* Define to 1 if unsetenv is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_UNSETENV */

     /* Define to 1 if usleep is declared even after undefining macros. */
     #define HAVE_RAW_DECL_USLEEP 1

     /* Define to 1 if utimensat is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_UTIMENSAT */

     /* Define to 1 if vdprintf is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_VDPRINTF */

     /* Define to 1 if vsnprintf is declared even after undefining macros. */
     #define HAVE_RAW_DECL_VSNPRINTF 1

     /* Define to 1 if wcpcpy is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_WCPCPY */

     /* Define to 1 if wcpncpy is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_WCPNCPY */

     /* Define to 1 if wcrtomb is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCRTOMB 1

     /* Define to 1 if wcscasecmp is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_WCSCASECMP */

     /* Define to 1 if wcscat is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSCAT 1

     /* Define to 1 if wcschr is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSCHR 1

     /* Define to 1 if wcscmp is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSCMP 1

     /* Define to 1 if wcscoll is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSCOLL 1

     /* Define to 1 if wcscpy is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSCPY 1

     /* Define to 1 if wcscspn is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSCSPN 1

     /* Define to 1 if wcsdup is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSDUP 1

     /* Define to 1 if wcslen is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSLEN 1

     /* Define to 1 if wcsncasecmp is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_WCSNCASECMP */

     /* Define to 1 if wcsncat is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSNCAT 1

     /* Define to 1 if wcsncmp is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSNCMP 1

     /* Define to 1 if wcsncpy is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSNCPY 1

     /* Define to 1 if wcsnlen is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSNLEN 1

     /* Define to 1 if wcsnrtombs is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_WCSNRTOMBS */

     /* Define to 1 if wcspbrk is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSPBRK 1

     /* Define to 1 if wcsrchr is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSRCHR 1

     /* Define to 1 if wcsrtombs is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSRTOMBS 1

     /* Define to 1 if wcsspn is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSSPN 1

     /* Define to 1 if wcsstr is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSSTR 1

     /* Define to 1 if wcstok is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSTOK 1

     /* Define to 1 if wcswidth is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_WCSWIDTH */

     /* Define to 1 if wcsxfrm is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCSXFRM 1

     /* Define to 1 if wctob is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCTOB 1

     /* Define to 1 if wctrans is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCTRANS 1

     /* Define to 1 if wctype is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WCTYPE 1

     /* Define to 1 if wcwidth is declared even after undefining macros. */
     /* #undef HAVE_RAW_DECL_WCWIDTH */

     /* Define to 1 if wmemchr is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WMEMCHR 1

     /* Define to 1 if wmemcmp is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WMEMCMP 1

     /* Define to 1 if wmemcpy is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WMEMCPY 1

     /* Define to 1 if wmemmove is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WMEMMOVE 1

     /* Define to 1 if wmemset is declared even after undefining macros. */
     #define HAVE_RAW_DECL_WMEMSET 1

     /* Define to 1 if _Exit is declared even after undefining macros. */
     #define HAVE_RAW_DECL__EXIT 1

     /* Define if you have the readline library. */
     #define HAVE_READLINE 1

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

     /* Define to 1 if you have the `readlinkat' function. */
     /* #undef HAVE_READLINKAT */

     /* Define if the 'realloc' function is POSIX compliant. */
     /* #undef HAVE_REALLOC_POSIX */

     /* Define to 1 if you have the `realpath' function. */
     /* #undef HAVE_REALPATH */

     /* Define if the readline library provides rl_echo_signal_char. */
     #define HAVE_RL_ECHO_SIGNAL_CHAR 1

     /* Define if the readline library provides rl_outstream. */
     #define HAVE_RL_OUTSTREAM 1

     /* Define to 1 if you have the `round' function. */
     #define HAVE_ROUND 1

     /* Define to 1 if 'long double' and 'double' have the same representation. */
     /* #undef HAVE_SAME_LONG_DOUBLE_AS_DOUBLE */

     /* Define to 1 if the system has the type `sa_family_t'. */
     /* #undef HAVE_SA_FAMILY_T */

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

     /* Define to 1 if you have the `secure_getenv' function. */
     /* #undef HAVE_SECURE_GETENV */

     /* Define to 1 if you have the `setdtablesize' function. */
     /* #undef HAVE_SETDTABLESIZE */

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

     /* Define to 1 if you have the `shutdown' function. */
     /* #undef HAVE_SHUTDOWN */

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

     /* Define to 1 if you have the `sigaltstack' function. */
     /* #undef HAVE_SIGALTSTACK */

     /* Define to 1 if the system has the type `siginfo_t'. */
     /* #undef HAVE_SIGINFO_T */

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

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

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

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

     /* Define to 1 if the system has the type `sigset_t'. */
     /* #undef HAVE_SIGSET_T */

     /* 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 if the return value of the snprintf function is the number of of
        bytes (excluding the terminating NUL) that would have been produced if the
        buffer had been large enough. */
     /* #undef HAVE_SNPRINTF_RETVAL_C99 */

     /* 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 to 1 if you have the `stpcpy' function. */
     /* #undef HAVE_STPCPY */

     /* Define to 1 if you have the `strcasecmp' function. */
     #define HAVE_STRCASECMP 1

     /* Define to 1 if you have the `strcasestr' function. */
     /* #undef HAVE_STRCASESTR */

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

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

     /* 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 `strndup' function. */
     /* #undef HAVE_STRNDUP */

     /* Define to 1 if you have the `strnlen' function. */
     #define HAVE_STRNLEN 1

     /* Define to 1 if you have the `strsep' function. */
     /* #undef HAVE_STRSEP */

     /* Define to 1 if you have the `strtod_l' function. */
     /* #undef HAVE_STRTOD_L */

     /* Define to 1 if you have the `strtok_r' function. */
     #define HAVE_STRTOK_R 1

     /* Define to 1 if `decimal_point' is a member of `struct lconv'. */
     #define HAVE_STRUCT_LCONV_DECIMAL_POINT 1

     /* Define to 1 if `sa_sigaction' is a member of `struct sigaction'. */
     /* #undef HAVE_STRUCT_SIGACTION_SA_SIGACTION */

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

     /* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */
     #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1

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

     /* Define to 1 if you have the `symlink' function. */
     /* #undef HAVE_SYMLINK */

     /* 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/inttypes.h> header file. */
     /* #undef HAVE_SYS_INTTYPES_H */

     /* Define to 1 if you have the <sys/mman.h> header file. */
     /* #undef HAVE_SYS_MMAN_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/select.h> header file. */
     /* #undef HAVE_SYS_SELECT_H */

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

     /* 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/timeb.h> header file. */
     #define HAVE_SYS_TIMEB_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 the <sys/uio.h> header file. */
     /* #undef HAVE_SYS_UIO_H */

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

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

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

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

     /* Define to 1 if you have the `timegm' function. */
     /* #undef HAVE_TIMEGM */

     /* Define to 1 if the system has the type `timezone_t'. */
     /* #undef HAVE_TIMEZONE_T */

     /* 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 `towlower' function. */
     #define HAVE_TOWLOWER 1

     /* 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 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 to 1 if the system has the type 'unsigned long long int'. */
     #define HAVE_UNSIGNED_LONG_LONG_INT 1

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

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

     /* Define to 1 if you have the `vsnprintf' function. */
     #define HAVE_VSNPRINTF 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 `wcslen' function. */
     #define HAVE_WCSLEN 1

     /* Define to 1 if you have the `wcsnlen' function. */
     #define HAVE_WCSNLEN 1

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

     /* Define to 1 if you have the `wcwidth' function. */
     /* #undef HAVE_WCWIDTH */

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

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

     /* Define to 1 if O_NOATIME works. */
     #define HAVE_WORKING_O_NOATIME 0

     /* Define to 1 if O_NOFOLLOW works. */
     #define HAVE_WORKING_O_NOFOLLOW 0

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

     /* Define to 1 if you have the <xlocale.h> header file. */
     /* #undef HAVE_XLOCALE_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'. */
     #define HAVE__BOOL 1

     /* Define to 1 if you have the `_fseeki64' function. */
     /* #undef HAVE__FSEEKI64 */

     /* Define to 1 if you have the `_ftelli64' function. */
     /* #undef HAVE__FTELLI64 */

     /* Define to 1 if you have the `_ftime' function. */
     #define HAVE__FTIME 1

     /* Define to 1 if you have the `_NSGetExecutablePath' function. */
     /* #undef HAVE__NSGETEXECUTABLEPATH */

     /* Define to 1 if you have the `_set_invalid_parameter_handler' function. */
     #define HAVE__SET_INVALID_PARAMETER_HANDLER 1

     /* Define to 1 if you have the `__fseterr' function. */
     /* #undef HAVE___FSETERR */

     /* 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 to 1 if you have the `__setfpucw' function. */
     /* #undef HAVE___SETFPUCW */

     /* Define as const if the declaration of iconv() needs const. */
     #define ICONV_CONST

     /* Define to the value of ${prefix}, as a string. */
     #define INSTALLPREFIX "/usr/i686-w64-mingw32/sys-root/mingw"

     /* Define as the bit index in the word where to find bit 0 of the exponent of
        'long double'. */
     /* #undef LDBL_EXPBIT0_BIT */

     /* Define as the word index where to find the exponent of 'long double'. */
     /* #undef LDBL_EXPBIT0_WORD */

     /* Define as the bit index in the word where to find the sign of 'long
        double'. */
     /* #undef LDBL_SIGNBIT_BIT */

     /* Define as the word index where to find the sign of 'long double'. */
     /* #undef LDBL_SIGNBIT_WORD */

     /* Define to 1 if lseek does not detect pipes. */
     #define LSEEK_PIPE_BROKEN 1

     /* Define to 1 if 'lstat' dereferences a symlink specified with a trailing
        slash. */
     /* #undef LSTAT_FOLLOWS_SLASHED_SYMLINK */

     /* Define to the sub-directory in which libtool stores uninstalled libraries.
        */
     #define LT_OBJDIR ".libs/"

     /* 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 */

     /* Define if the mbrtowc function does not return (size_t) -2 for empty input.
        */
     /* #undef MBRTOWC_EMPTY_INPUT_BUG */

     /* Define if the mbrtowc function has the NULL pwc argument bug. */
     /* #undef MBRTOWC_NULL_ARG1_BUG */

     /* Define if the mbrtowc function has the NULL string argument bug. */
     /* #undef MBRTOWC_NULL_ARG2_BUG */

     /* Define if the mbrtowc function does not return 0 for a NUL character. */
     /* #undef MBRTOWC_NUL_RETVAL_BUG */

     /* Define if the mbrtowc function returns a wrong return value. */
     #define MBRTOWC_RETVAL_BUG 1

     /* Define to 1 if assertions should be disabled. */
     /* #undef NDEBUG */

     /* Define if the vasnprintf implementation needs special code for the 'a' and
        'A' directives. */
     #define NEED_PRINTF_DIRECTIVE_A 1

     /* Define if the vasnprintf implementation needs special code for the 'F'
        directive. */
     #define NEED_PRINTF_DIRECTIVE_F 1

     /* Define if the vasnprintf implementation needs special code for the 'ls'
        directive. */
     /* #undef NEED_PRINTF_DIRECTIVE_LS */

     /* Define if the vasnprintf implementation needs special code for 'double'
        arguments. */
     #define NEED_PRINTF_DOUBLE 1

     /* Define if the vasnprintf implementation needs special code for surviving
        out-of-memory conditions. */
     #define NEED_PRINTF_ENOMEM 1

     /* Define if the vasnprintf implementation needs special code for the ' flag.
        */
     #define NEED_PRINTF_FLAG_GROUPING 1

     /* Define if the vasnprintf implementation needs special code for the '-'
        flag. */
     /* #undef NEED_PRINTF_FLAG_LEFTADJUST */

     /* Define if the vasnprintf implementation needs special code for the 0 flag.
        */
     #define NEED_PRINTF_FLAG_ZERO 1

     /* Define if the vasnprintf implementation needs special code for infinite
        'double' arguments. */
     #define NEED_PRINTF_INFINITE_DOUBLE 1

     /* Define if the vasnprintf implementation needs special code for infinite
        'long double' arguments. */
     /* #undef NEED_PRINTF_INFINITE_LONG_DOUBLE */

     /* Define if the vasnprintf implementation needs special code for 'long
        double' arguments. */
     #define NEED_PRINTF_LONG_DOUBLE 1

     /* Define if the vasnprintf implementation needs special code for supporting
        large precisions without arbitrary bounds. */
     #define NEED_PRINTF_UNBOUNDED_PRECISION 1

     /* Define to 1 if building in support for reading OpenDocument files. */
     #define ODF_READ_SUPPORT 1

     /* Define to 1 if building in support for writing OpenDocument files. */
     #define ODF_WRITE_SUPPORT 1

     /* Define to 1 if open() fails to recognize a trailing slash. */
     /* #undef OPEN_TRAILING_SLASH_BUG */

     /* Name of package */
     #define PACKAGE "pspp"

     /* 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 "GNU PSPP"

     /* String identifying the packager of this software */
     /* #undef PACKAGE_PACKAGER */

     /* Packager info for bug reports (URL/e-mail/...) */
     /* #undef PACKAGE_PACKAGER_BUG_REPORTS */

     /* Packager-specific version information */
     /* #undef PACKAGE_PACKAGER_VERSION */

     /* Define to the full name and version of this package. */
     #define PACKAGE_STRING "GNU PSPP 0.10.4-g0ff73f"

     /* Define to the one symbol short name of this package. */
     #define PACKAGE_TARNAME "pspp"

     /* Define to the home page for this package. */
     #define PACKAGE_URL "http://www.gnu.org/software/pspp/"

     /* Define to the version of this package. */
     #define PACKAGE_VERSION "0.10.4-g0ff73f"

     /* Define to the type that is the result of default argument promotions of
        type mode_t. */
     #define PROMOTED_MODE_T int

     /* Define to 1 if building in support for reading from postgres databases. */
     #define PSQL_SUPPORT 1

     /* Define if the pthread_in_use() detection is hard. */
     /* #undef PTHREAD_IN_USE_DETECTION_HARD */

     /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
        'ptrdiff_t'. */
     /* #undef PTRDIFF_T_SUFFIX */

     /* Define to 1 if readlink fails to recognize a trailing slash. */
     /* #undef READLINK_TRAILING_SLASH_BUG */

     /* Define if rename does not work when the destination file exists, as on
        Cygwin 1.5 or Windows. */
     #define RENAME_DEST_EXISTS_BUG 1

     /* Define if rename fails to leave hard links alone, as on NetBSD 1.6 or
        Cygwin 1.5. */
     /* #undef RENAME_HARD_LINK_BUG */

     /* Define if rename does not correctly handle slashes on the destination
        argument, such as on Solaris 10 or NetBSD 1.6. */
     #define RENAME_TRAILING_SLASH_DEST_BUG 1

     /* Define if rename does not correctly handle slashes on the source argument,
        such as on Solaris 9 or cygwin 1.5. */
     #define RENAME_TRAILING_SLASH_SOURCE_BUG 1

     /* Define if fprintf is overridden by a POSIX compliant gnulib implementation.
        */
     #define REPLACE_FPRINTF_POSIX 1

     /* Define to 1 if stat needs help when passed a directory name with a trailing
        slash */
     #define REPLACE_FUNC_STAT_DIR 1

     /* Define to 1 if stat needs help when passed a file name with a trailing
        slash */
     #define REPLACE_FUNC_STAT_FILE 1

     /* Define if nl_langinfo exists but is overridden by gnulib. */
     /* #undef REPLACE_NL_LANGINFO */

     /* Define if printf is overridden by a POSIX compliant gnulib implementation.
        */
     #define REPLACE_PRINTF_POSIX 1

     /* Define to 1 if strerror(0) does not return a message implying success. */
     #define REPLACE_STRERROR_0 1

     /* Define if vasnprintf exists but is overridden by gnulib. */
     /* #undef REPLACE_VASNPRINTF */

     /* Define if vfprintf is overridden by a POSIX compliant gnulib
        implementation. */
     #define REPLACE_VFPRINTF_POSIX 1

     /* Define if vprintf is overridden by a POSIX compliant gnulib implementation.
        */
     #define REPLACE_VPRINTF_POSIX 1

     /* Define if lists must be signal-safe. */
     #define SIGNAL_SAFE_LIST 1

     /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
        'sig_atomic_t'. */
     /* #undef SIG_ATOMIC_T_SUFFIX */

     /* Define as the maximum value of type 'size_t', if the system doesn't define
        it. */
     #ifndef SIZE_MAX
     /* # undef SIZE_MAX */
     #endif

     /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
        'size_t'. */
     /* #undef SIZE_T_SUFFIX */

     /* 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 runtime.
        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 */

     /* Define to 1 if time_t is signed. */
     #define TIME_T_IS_SIGNED 1

     /* Define to 1 if your <sys/time.h> declares `struct tm'. */
     /* #undef TM_IN_SYS_TIME */

     /* Define to the prefix of C symbols at the assembler and linker level, either
        an underscore or empty. */
     #define USER_LABEL_PREFIX

     /* Define if the POSIX multithreading library can be used. */
     #define USE_POSIX_THREADS 1

     /* Define if references to the POSIX multithreading library should be made
        weak. */
     /* #undef USE_POSIX_THREADS_WEAK */

     /* Define if the GNU Pth multithreading library can be used. */
     /* #undef USE_PTH_THREADS */

     /* Define if references to the GNU Pth multithreading library should be made
        weak. */
     /* #undef USE_PTH_THREADS_WEAK */

     /* Define if the old Solaris multithreading library can be used. */
     /* #undef USE_SOLARIS_THREADS */

     /* Define if references to the old Solaris multithreading library should be
        made weak. */
     /* #undef USE_SOLARIS_THREADS_WEAK */

     /* Define to 1 if the openssl library is present. */
     /* #undef USE_SSL */

     /* Enable extensions on AIX 3, Interix.  */
     #ifndef _ALL_SOURCE
     # define _ALL_SOURCE 1
     #endif
     /* Enable general extensions on OS X.  */
     #ifndef _DARWIN_C_SOURCE
     # define _DARWIN_C_SOURCE 1
     #endif
     /* Enable GNU extensions on systems that have them.  */
     #ifndef _GNU_SOURCE
     # define _GNU_SOURCE 1
     #endif
     /* Use GNU style printf and scanf.  */
     #ifndef __USE_MINGW_ANSI_STDIO
     # define __USE_MINGW_ANSI_STDIO 1
     #endif
     /* Enable threading extensions on Solaris.  */
     #ifndef _POSIX_PTHREAD_SEMANTICS
     # define _POSIX_PTHREAD_SEMANTICS 1
     #endif
     /* Enable extensions on HP NonStop.  */
     #ifndef _TANDEM_SOURCE
     # define _TANDEM_SOURCE 1
     #endif
     /* Enable X/Open extensions if necessary.  HP-UX 11.11 defines
        mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of
        whether compiling with -Ae or -D_HPUX_SOURCE=1.  */
     #ifndef _XOPEN_SOURCE
     /* # undef _XOPEN_SOURCE */
     #endif
     /* Enable general extensions on Solaris.  */
     #ifndef __EXTENSIONS__
     # define __EXTENSIONS__ 1
     #endif


     /* 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 the native Windows multithreading API can be used. */
     /* #undef USE_WINDOWS_THREADS */

     /* Version number of package */
     #define VERSION "0.10.4-g0ff73f"

     /* Define to 1 if unsetenv returns void instead of int. */
     /* #undef VOID_UNSETENV */

     /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
        'wchar_t'. */
     /* #undef WCHAR_T_SUFFIX */

     /* Define if WSAStartup is needed. */
     #define WINDOWS_SOCKETS 1

     /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
        'wint_t'. */
     /* #undef WINT_T_SUFFIX */

     /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
        significant byte first (like Motorola and SPARC, unlike Intel). */
     #if defined AC_APPLE_UNIVERSAL_BUILD
     # if defined __BIG_ENDIAN__
     #  define WORDS_BIGENDIAN 1
     # endif
     #else
     # ifndef WORDS_BIGENDIAN
     /* #  undef WORDS_BIGENDIAN */
     # endif
     #endif

     /* Enable large inode numbers on Mac OS X 10.5. */
     #define _DARWIN_USE_64_BIT_INODE 1

     /* Number of bits in a file offset, on hosts where this is settable. */
     #define _FILE_OFFSET_BITS 64

     /* Define to 1 if Gnulib overrides 'struct stat' on Windows so that struct
        stat.st_size becomes 64-bit. */
     #define _GL_WINDOWS_64_BIT_ST_SIZE 1

     /* 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 on Solaris. */
     /* #undef _LCONV_C99 */

     /* Define to 1 if on MINIX. */
     /* #undef _MINIX */

     /* Define to 1 to make NetBSD features available. MINIX 3 needs this. */
     /* #undef _NETBSD_SOURCE */

     /* The _Noreturn keyword of C11.  */
     #if ! (defined _Noreturn \
            || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))
     # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
           || 0x5110 <= __SUNPRO_C)
     #  define _Noreturn __attribute__ ((__noreturn__))
     # elif defined _MSC_VER && 1200 <= _MSC_VER
     #  define _Noreturn __declspec (noreturn)
     # else
     #  define _Noreturn
     # endif
     #endif


     /* Define to 2 if the system does not provide POSIX.1 features except with
        this defined. */
     /* #undef _POSIX_1_SOURCE */

     /* Define to 1 in order to get the POSIX compatible declarations of socket
        functions. */
     /* #undef _POSIX_PII_SOCKET */

     /* Define to 1 if you need to in order for 'stat' and other things to work. */
     /* #undef _POSIX_SOURCE */

     /* Define if you want <regex.h> to include <limits.h>, so that it consistently
        overrides <limits.h>'s RE_DUP_MAX. */
     #define _REGEX_INCLUDE_LIMITS_H 1

     /* Define if you want regoff_t to be at least as wide POSIX requires. */
     #define _REGEX_LARGE_OFFSETS 1

     /* Define to rpl_ if the getopt replacement functions and variables should be
        used. */
     #define __GETOPT_PREFIX rpl_

     /* Define to 1 if the system <stdint.h> predates C++11. */
     /* #undef __STDC_CONSTANT_MACROS */

     /* Define to 1 if the system <stdint.h> predates C++11. */
     /* #undef __STDC_LIMIT_MACROS */

     /* Avoid making zlib call gnulib's crc32() instead of its own. */
     #define crc32 gl_crc32

     /* Please see the Gnulib manual for how to use these macros.

        Suppress extern inline with HP-UX cc, as it appears to be broken; see
        <http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html>.

        Suppress extern inline with Sun C in standards-conformance mode, as it
        mishandles inline functions that call each other.  E.g., for 'inline void f
        (void) { } inline void g (void) { f (); }', c99 incorrectly complains
        'reference to static identifier "f" in extern inline function'.
        This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16.

        Suppress extern inline (with or without __attribute__ ((__gnu_inline__)))
        on configurations that mistakenly use 'static inline' to implement
        functions or macros in standard C headers like <ctype.h>.  For example,
        if isdigit is mistakenly implemented via a static inline function,
        a program containing an extern inline function that calls isdigit
        may not work since the C standard prohibits extern inline functions
        from calling static functions.  This bug is known to occur on:

          OS X 10.8 and earlier; see:
          http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html

          DragonFly; see
          http://muscles.dragonflybsd.org/...

[Bericht is afgebroken]  


reply via email to

[Prev in Thread] Current Thread [Next in Thread]