This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by OpenDKIM configure 2.3.1, which was generated by GNU Autoconf 2.68. Invocation command line was $ ./configure --with-openssl=/usr/local/ssl ## --------- ## ## Platform. ## ## --------- ## hostname = aft03-mail2 uname -m = sun4v uname -r = 5.10 uname -s = SunOS uname -v = Generic_142909-17 /usr/bin/uname -p = sparc /bin/uname -X = System = SunOS Node = aft03-mail2 Release = 5.10 KernelID = Generic_142909-17 Machine = sun4v BusType = Serial = Users = OEM# = 0 Origin# = 1 NumCPU = 32 /bin/arch = sun4 /usr/bin/arch -k = sun4v /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/bin PATH: /usr/sbin PATH: /usr/local/bin PATH: /usr/local/sbin PATH: /usr/sfw/bin PATH: /usr/ccs/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2729: checking for a BSD-compatible install configure:2797: result: /usr/local/bin/install -c configure:2808: checking whether build environment is sane configure:2858: result: yes configure:2999: checking for a thread-safe mkdir -p configure:3038: result: /usr/local/bin/mkdir -p configure:3051: checking for gawk configure:3081: result: no configure:3051: checking for mawk configure:3081: result: no configure:3051: checking for nawk configure:3067: found /usr/bin/nawk configure:3078: result: nawk configure:3089: checking whether make sets $(MAKE) configure:3111: result: yes configure:3260: checking for gcc configure:3276: found /usr/local/bin/gcc configure:3287: result: gcc configure:3516: checking for C compiler version configure:3525: gcc --version >&5 gcc (GCC) 3.4.6 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3536: $? = 0 configure:3525: gcc -v >&5 Reading specs from /usr/local/lib/gcc/sparc-sun-solaris2.10/3.4.6/specs Configured with: ../configure --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/ld --enable-shared --enable-languages=c,c++,f77 Thread model: posix gcc version 3.4.6 configure:3536: $? = 0 configure:3525: gcc -V >&5 gcc: `-V' option must have argument configure:3536: $? = 1 configure:3525: gcc -qversion >&5 gcc: unrecognized option `-qversion' gcc: no input files configure:3536: $? = 1 configure:3556: checking whether the C compiler works configure:3578: gcc conftest.c >&5 configure:3582: $? = 0 configure:3630: result: yes configure:3633: checking for C compiler default output file name configure:3635: result: a.out configure:3641: checking for suffix of executables configure:3648: gcc -o conftest conftest.c >&5 configure:3652: $? = 0 configure:3674: result: configure:3696: checking whether we are cross compiling configure:3704: gcc -o conftest conftest.c >&5 configure:3708: $? = 0 configure:3715: ./conftest configure:3719: $? = 0 configure:3734: result: no configure:3739: checking for suffix of object files configure:3761: gcc -c conftest.c >&5 configure:3765: $? = 0 configure:3786: result: o configure:3790: checking whether we are using the GNU C compiler configure:3809: gcc -c conftest.c >&5 configure:3809: $? = 0 configure:3818: result: yes configure:3827: checking whether gcc accepts -g configure:3847: gcc -c -g conftest.c >&5 configure:3847: $? = 0 configure:3888: result: yes configure:3905: checking for gcc option to accept ISO C89 configure:3969: gcc -c -g -O2 conftest.c >&5 configure:3969: $? = 0 configure:3982: result: none needed configure:4013: checking for style of include used by make configure:4041: result: GNU configure:4066: checking dependency style of gcc configure:4176: result: gcc3 configure:4191: checking for gcc option to accept ISO C99 configure:4340: gcc -c -g -O2 conftest.c >&5 conftest.c:61: error: syntax error before "text" conftest.c: In function `test_restrict': conftest.c:66: error: 'for' loop initial declaration used outside C99 mode conftest.c:66: error: `text' undeclared (first use in this function) conftest.c:66: error: (Each undeclared identifier is reported only once conftest.c:66: error: for each function it appears in.) conftest.c: In function `main': conftest.c:115: error: syntax error before "newvar" conftest.c:125: error: 'for' loop initial declaration used outside C99 mode conftest.c:141: error: `newvar' undeclared (first use in this function) configure:4340: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | /* end confdefs.h. */ | #include | #include | #include | #include | #include | | // Check varargs macros. These examples are taken from C99 6.10.3.5. | #define debug(...) fprintf (stderr, __VA_ARGS__) | #define showlist(...) puts (#__VA_ARGS__) | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) | static void | test_varargs_macros (void) | { | int x = 1234; | int y = 5678; | debug ("Flag"); | debug ("X = %d\n", x); | showlist (The first, second, and third items.); | report (x>y, "x is %d but y is %d", x, y); | } | | // Check long long types. | #define BIG64 18446744073709551615ull | #define BIG32 4294967295ul | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) | #if !BIG_OK | your preprocessor is broken; | #endif | #if BIG_OK | #else | your preprocessor is broken; | #endif | static long long int bignum = -9223372036854775807LL; | static unsigned long long int ubignum = BIG64; | | struct incomplete_array | { | int datasize; | double data[]; | }; | | struct named_init { | int number; | const wchar_t *name; | double average; | }; | | typedef const char *ccp; | | static inline int | test_restrict (ccp restrict text) | { | // See if C++-style comments work. | // Iterate through items via the restricted pointer. | // Also check for declarations in for loops. | for (unsigned int i = 0; *(text+i) != '\0'; ++i) | continue; | return 0; | } | | // Check varargs and va_copy. | static void | test_varargs (const char *format, ...) | { | va_list args; | va_start (args, format); | va_list args_copy; | va_copy (args_copy, args); | | const char *str; | int number; | float fnumber; | | while (*format) | { | switch (*format++) | { | case 's': // string | str = va_arg (args_copy, const char *); | break; | case 'd': // int | number = va_arg (args_copy, int); | break; | case 'f': // float | fnumber = va_arg (args_copy, double); | break; | default: | break; | } | } | va_end (args_copy); | va_end (args); | } | | int | main () | { | | // Check bool. | _Bool success = false; | | // Check restrict. | if (test_restrict ("String literal") == 0) | success = true; | char *restrict newvar = "Another string"; | | // Check varargs. | test_varargs ("s, d' f .", "string", 65, 34.234); | test_varargs_macros (); | | // Check flexible array members. | struct incomplete_array *ia = | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); | ia->datasize = 10; | for (int i = 0; i < ia->datasize; ++i) | ia->data[i] = i * 1.234; | | // Check named initializers. | struct named_init ni = { | .number = 34, | .name = L"Test wide string", | .average = 543.34343, | }; | | ni.number = 58; | | int dynamic_array[ni.number]; | dynamic_array[ni.number - 1] = 543; | | // work around unused variable warnings | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' | || dynamic_array[ni.number - 1] != 543); | | ; | return 0; | } configure:4340: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4340: $? = 0 configure:4360: result: -std=gnu99 configure:4369: checking whether gcc -std=gnu99 and cc understand -c and -o together configure:4400: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5 configure:4404: $? = 0 configure:4410: gcc -std=gnu99 -c conftest.c -o conftest2.o >&5 configure:4414: $? = 0 configure:4425: cc -c conftest.c >&5 ./configure: line 4427: cc: command not found configure:4429: $? = 127 configure:4469: result: yes configure:4523: checking build system type configure:4537: result: sparc-sun-solaris2.10 configure:4557: checking host system type configure:4570: result: sparc-sun-solaris2.10 configure:4611: checking how to print strings configure:4638: result: printf configure:4659: checking for a sed that does not truncate output configure:4723: result: /usr/bin/sed configure:4741: checking for grep that handles long lines and -e configure:4799: result: /usr/sfw/bin/ggrep configure:4804: checking for egrep configure:4866: result: /usr/sfw/bin/ggrep -E configure:4871: checking for fgrep configure:4933: result: /usr/sfw/bin/ggrep -F configure:4968: checking for ld used by gcc -std=gnu99 configure:5035: result: /usr/ccs/bin/ld configure:5042: checking if the linker (/usr/ccs/bin/ld) is GNU ld configure:5057: result: no configure:5069: checking for BSD- or MS-compatible name lister (nm) configure:5118: result: /usr/ccs/bin/nm -p configure:5248: checking the name lister (/usr/ccs/bin/nm -p) interface configure:5255: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5258: /usr/ccs/bin/nm -p "conftest.o" configure:5261: output conftest.o: 0000000000 s 0000000000 s 0000000000 s 0000000000 b 0000000000 s 0000000000 s 0000000000 f conftest.c 0000000000 B some_variable configure:5268: result: BSD nm configure:5271: checking whether ln -s works configure:5275: result: yes configure:5283: checking the maximum length of command line arguments configure:5408: result: 786240 configure:5425: checking whether the shell understands some XSI constructs configure:5435: result: yes configure:5439: checking whether the shell understands "+=" configure:5445: result: no configure:5480: checking how to convert sparc-sun-solaris2.10 file names to sparc-sun-solaris2.10 format configure:5520: result: func_convert_file_noop configure:5527: checking how to convert sparc-sun-solaris2.10 file names to toolchain format configure:5547: result: func_convert_file_noop configure:5554: checking for /usr/ccs/bin/ld option to reload object files configure:5561: result: -r configure:5635: checking for objdump configure:5665: result: no configure:5694: checking how to recognize dependent libraries configure:5896: result: pass_all configure:5981: checking for dlltool configure:6011: result: no configure:6041: checking how to associate runtime and link libraries configure:6068: result: printf %s\n configure:6129: checking for ar configure:6145: found /usr/ccs/bin/ar configure:6156: result: ar configure:6193: checking for archiver @FILE support configure:6210: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6210: $? = 0 configure:6213: ar cru libconftest.a @conftest.lst >&5 ar: cannot open @conftest.lst No such file or directory ar: @conftest.lst not found configure:6216: $? = 1 configure:6236: result: no configure:6294: checking for strip configure:6310: found /usr/ccs/bin/strip configure:6321: result: strip configure:6393: checking for ranlib configure:6409: found /usr/ccs/bin/ranlib configure:6420: result: ranlib configure:6522: checking command to parse /usr/ccs/bin/nm -p output from gcc -std=gnu99 object configure:6641: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6644: $? = 0 configure:6648: /usr/ccs/bin/nm -p conftest.o \| sed -n -e 's/^.*[ ]\([BDRT][BDRT]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm configure:6651: $? = 0 configure:6717: gcc -std=gnu99 -o conftest -g -O2 conftest.c conftstm.o >&5 configure:6720: $? = 0 configure:6758: result: ok configure:6795: checking for sysroot configure:6825: result: no configure:7001: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7004: $? = 0 configure:7068: checking for mt configure:7084: found /usr/bin/mt configure:7095: result: mt configure:7118: checking if mt is a manifest tool configure:7124: mt '-?' mt: unknown command: -? configure:7132: result: no configure:7764: checking how to run the C preprocessor configure:7795: gcc -std=gnu99 -E conftest.c configure:7795: $? = 0 configure:7809: gcc -std=gnu99 -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:7809: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | /* end confdefs.h. */ | #include configure:7834: result: gcc -std=gnu99 -E configure:7854: gcc -std=gnu99 -E conftest.c configure:7854: $? = 0 configure:7868: gcc -std=gnu99 -E conftest.c conftest.c:11:28: ac_nonexistent.h: No such file or directory configure:7868: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | /* end confdefs.h. */ | #include configure:7897: checking for ANSI C header files configure:7917: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:7917: $? = 0 configure:7990: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:7990: $? = 0 configure:7990: ./conftest configure:7990: $? = 0 configure:8001: result: yes configure:8014: checking for sys/types.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for sys/stat.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for stdlib.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for string.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for memory.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for strings.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for inttypes.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for stdint.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8014: checking for unistd.h configure:8014: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8014: $? = 0 configure:8014: result: yes configure:8028: checking for dlfcn.h configure:8028: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:8028: $? = 0 configure:8028: result: yes configure:8215: checking for objdir configure:8230: result: .libs configure:8501: checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:8519: gcc -std=gnu99 -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:8523: $? = 0 configure:8536: result: no configure:8846: checking for gcc -std=gnu99 option to produce PIC configure:8853: result: -fPIC -DPIC configure:8861: checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works configure:8879: gcc -std=gnu99 -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:8883: $? = 0 configure:8896: result: yes configure:8925: checking if gcc -std=gnu99 static flag -static works configure:8953: result: no configure:8968: checking if gcc -std=gnu99 supports -c -o file.o configure:8989: gcc -std=gnu99 -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:8993: $? = 0 configure:9015: result: yes configure:9023: checking if gcc -std=gnu99 supports -c -o file.o configure:9070: result: yes configure:9103: checking whether the gcc -std=gnu99 linker (/usr/ccs/bin/ld) supports shared libraries configure:10261: result: yes configure:10298: checking whether -lc should be explicitly linked in configure:10306: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:10309: $? = 0 configure:10324: gcc -std=gnu99 -shared -fPIC -DPIC -Wl,-z -Wl,text -Wl,-h -Wl,conftest -o conftest conftest.o -v 2\>\&1 \| /usr/sfw/bin/ggrep -lc \>/dev/null 2\>\&1 configure:10327: $? = 1 configure:10341: result: yes configure:10506: checking dynamic linker characteristics configure:11242: result: solaris2.10 ld.so configure:11349: checking how to hardcode library paths into programs configure:11374: result: immediate configure:11914: checking whether stripping libraries is possible configure:11936: result: no configure:11954: checking if libtool supports shared libraries configure:11956: result: yes configure:11959: checking whether to build shared libraries configure:11980: result: yes configure:11983: checking whether to build static libraries configure:11987: result: yes configure:12076: checking for pkg-config configure:12094: found /usr/bin/pkg-config configure:12106: result: /usr/bin/pkg-config configure:12131: checking pkg-config is at least version 0.9.0 configure:12134: result: yes configure:12265: checking whether pthreads work with -pthreads configure:12353: gcc -std=gnu99 -o conftest -g -O2 -pthreads conftest.c >&5 configure:12353: $? = 0 configure:12362: result: yes configure:12381: checking for joinable pthread attribute configure:12396: gcc -std=gnu99 -o conftest -g -O2 -pthreads conftest.c >&5 configure:12396: $? = 0 configure:12402: result: PTHREAD_CREATE_JOINABLE configure:12412: checking if more special flags are required for pthreads configure:12419: result: -D_REENTRANT configure:12505: checking for library containing inet_addr configure:12536: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 Undefined first referenced symbol in file inet_addr /var/tmp//ccKIDQUI.o ld: fatal: Symbol referencing errors. No output written to conftest collect2: ld returned 1 exit status configure:12536: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char inet_addr (); | int | main () | { | return inet_addr (); | ; | return 0; | } configure:12536: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lnsl >&5 configure:12536: $? = 0 configure:12553: result: -lnsl configure:12561: checking for library containing socket configure:12592: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lnsl >&5 Undefined first referenced symbol in file socket /var/tmp//ccwzvYn6.o ld: fatal: Symbol referencing errors. No output written to conftest collect2: ld returned 1 exit status configure:12592: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char socket (); | int | main () | { | return socket (); | ; | return 0; | } configure:12592: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lsocket -lnsl >&5 configure:12592: $? = 0 configure:12609: result: -lsocket configure:12617: checking for library containing inet_aton configure:12648: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lsocket -lnsl >&5 configure:12648: $? = 0 configure:12665: result: none required configure:12673: checking for library containing inet_pton configure:12704: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lsocket -lnsl >&5 configure:12704: $? = 0 configure:12721: result: none required configure:12731: checking for library containing inet_ntop configure:12762: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lsocket -lnsl >&5 configure:12762: $? = 0 configure:12779: result: none required configure:12789: checking for library containing getaddrinfo configure:12820: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lsocket -lnsl >&5 configure:12820: $? = 0 configure:12837: result: none required configure:12847: checking for library containing res_ninit configure:12878: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lsocket -lnsl >&5 Undefined first referenced symbol in file res_ninit /var/tmp//ccSURLlB.o ld: fatal: Symbol referencing errors. No output written to conftest collect2: ld returned 1 exit status configure:12878: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char res_ninit (); | int | main () | { | return res_ninit (); | ; | return 0; | } configure:12878: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:12878: $? = 0 configure:12895: result: -lresolv configure:12910: checking for sys/types.h configure:12910: result: yes configure:12910: checking for netinet/in.h configure:12910: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:12910: $? = 0 configure:12910: result: yes configure:12910: checking for arpa/nameser.h configure:12910: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:12910: $? = 0 configure:12910: result: yes configure:12910: checking for netdb.h configure:12910: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:12910: $? = 0 configure:12910: result: yes configure:12910: checking for resolv.h configure:12910: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:12910: $? = 0 configure:12910: result: yes configure:12938: checking for useconds_t configure:12938: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:12938: $? = 0 configure:12938: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:69: error: syntax error before ')' token configure:12938: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((useconds_t))) | return 0; | ; | return 0; | } configure:12938: result: yes configure:12965: checking whether the resolver works without -lresolv configure:12973: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:12973: $? = 0 configure:12975: result: yes configure:13021: checking arpa/inet.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking arpa/inet.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for arpa/inet.h configure:13021: result: yes configure:13021: checking fcntl.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking fcntl.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for fcntl.h configure:13021: result: yes configure:13021: checking limits.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking limits.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for limits.h configure:13021: result: yes configure:13021: checking iso/limits_iso.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking iso/limits_iso.h presence configure:13021: gcc -std=gnu99 -E conftest.c In file included from conftest.c:37: /usr/include/iso/limits_iso.h:51:2: #error "chars are signed or unsigned" configure:13021: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | /* end confdefs.h. */ | #include configure:13021: result: no configure:13021: WARNING: iso/limits_iso.h: accepted by the compiler, rejected by the preprocessor! configure:13021: WARNING: iso/limits_iso.h: proceeding with the compiler's result configure:13021: checking for iso/limits_iso.h configure:13021: result: yes configure:13021: checking for netdb.h configure:13021: result: yes configure:13021: checking for netinet/in.h configure:13021: result: yes configure:13021: checking paths.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:73:19: paths.h: No such file or directory configure:13021: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:13021: result: no configure:13021: checking paths.h presence configure:13021: gcc -std=gnu99 -E conftest.c conftest.c:40:19: paths.h: No such file or directory configure:13021: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | /* end confdefs.h. */ | #include configure:13021: result: no configure:13021: checking for paths.h configure:13021: result: no configure:13021: checking for stdlib.h configure:13021: result: yes configure:13021: checking for string.h configure:13021: result: yes configure:13021: checking sys/file.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking sys/file.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for sys/file.h configure:13021: result: yes configure:13021: checking sys/param.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking sys/param.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for sys/param.h configure:13021: result: yes configure:13021: checking sys/socket.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking sys/socket.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for sys/socket.h configure:13021: result: yes configure:13021: checking sys/time.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking sys/time.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for sys/time.h configure:13021: result: yes configure:13021: checking syslog.h usability configure:13021: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking syslog.h presence configure:13021: gcc -std=gnu99 -E conftest.c configure:13021: $? = 0 configure:13021: result: yes configure:13021: checking for syslog.h configure:13021: result: yes configure:13021: checking for unistd.h configure:13021: result: yes configure:13021: checking for stdint.h configure:13021: result: yes configure:13035: checking for stdbool.h that conforms to C99 configure:13102: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13102: $? = 0 configure:13109: result: yes configure:13111: checking for _Bool configure:13111: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13111: $? = 0 configure:13111: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:85: error: syntax error before ')' token configure:13111: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((_Bool))) | return 0; | ; | return 0; | } configure:13111: result: yes configure:13127: checking for uid_t in sys/types.h configure:13146: result: yes configure:13157: checking for mode_t configure:13157: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13157: $? = 0 configure:13157: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:87: error: syntax error before ')' token configure:13157: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((mode_t))) | return 0; | ; | return 0; | } configure:13157: result: yes configure:13168: checking for off_t configure:13168: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13168: $? = 0 configure:13168: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:87: error: syntax error before ')' token configure:13168: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((off_t))) | return 0; | ; | return 0; | } configure:13168: result: yes configure:13179: checking for pid_t configure:13179: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13179: $? = 0 configure:13179: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:87: error: syntax error before ')' token configure:13179: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((pid_t))) | return 0; | ; | return 0; | } configure:13179: result: yes configure:13190: checking for size_t configure:13190: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13190: $? = 0 configure:13190: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:87: error: syntax error before ')' token configure:13190: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((size_t))) | return 0; | ; | return 0; | } configure:13190: result: yes configure:13201: checking for ssize_t configure:13201: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13201: $? = 0 configure:13201: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:87: error: syntax error before ')' token configure:13201: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((ssize_t))) | return 0; | ; | return 0; | } configure:13201: result: yes configure:13212: checking for uint16_t configure:13212: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13212: $? = 0 configure:13212: result: yes configure:13224: checking for uint32_t configure:13224: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13224: $? = 0 configure:13224: result: yes configure:13244: checking vfork.h usability configure:13244: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:84:19: vfork.h: No such file or directory configure:13244: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:13244: result: no configure:13244: checking vfork.h presence configure:13244: gcc -std=gnu99 -E conftest.c conftest.c:51:19: vfork.h: No such file or directory configure:13244: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include configure:13244: result: no configure:13244: checking for vfork.h configure:13244: result: no configure:13257: checking for fork configure:13257: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13257: $? = 0 configure:13257: result: yes configure:13257: checking for vfork configure:13257: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13257: $? = 0 configure:13257: result: yes configure:13267: checking for working fork configure:13289: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13289: $? = 0 configure:13289: ./conftest configure:13289: $? = 0 configure:13299: result: yes configure:13320: checking for working vfork configure:13430: result: yes configure:13455: checking type of array argument to getgroups configure:13489: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13489: $? = 0 configure:13489: ./conftest configure:13489: $? = 0 configure:13514: result: gid_t configure:13522: checking for getgroups configure:13522: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13522: $? = 0 configure:13522: result: yes configure:13577: checking for working getgroups configure:13597: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13597: $? = 0 configure:13597: ./conftest configure:13597: $? = 0 configure:13608: result: yes configure:13622: checking for stdlib.h configure:13622: result: yes configure:13632: checking for GNU libc compatible malloc configure:13656: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13656: $? = 0 configure:13656: ./conftest configure:13656: $? = 0 configure:13666: result: yes configure:13687: checking whether time.h and sys/time.h may both be included configure:13707: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:13707: $? = 0 configure:13714: result: yes configure:13728: checking for sys/time.h configure:13728: result: yes configure:13728: checking for unistd.h configure:13728: result: yes configure:13749: checking for alarm configure:13749: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13749: $? = 0 configure:13749: result: yes configure:13762: checking for working mktime configure:13964: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:13964: $? = 0 configure:13964: ./conftest configure:13964: $? = 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define GETGROUPS_T gid_t | #define HAVE_GETGROUPS 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ALARM 1 | /* end confdefs.h. */ | /* Test program from Paul Eggert and Tony Leneis. */ | #ifdef TIME_WITH_SYS_TIME | # include | # include | #else | # ifdef HAVE_SYS_TIME_H | # include | # else | # include | # endif | #endif | | #include | #include | | #ifdef HAVE_UNISTD_H | # include | #endif | | #ifndef HAVE_ALARM | # define alarm(X) /* empty */ | #endif | | /* Work around redefinition to rpl_putenv by other config tests. */ | #undef putenv | | static time_t time_t_max; | static time_t time_t_min; | | /* Values we'll use to set the TZ environment variable. */ | static const char *tz_strings[] = { | (const char *) 0, "TZ=GMT0", "TZ=JST-9", | "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00" | }; | #define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0])) | | /* Return 0 if mktime fails to convert a date in the spring-forward gap. | Based on a problem report from Andreas Jaeger. */ | static int | spring_forward_gap () | { | /* glibc (up to about 1998-10-07) failed this test. */ | struct tm tm; | | /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0" | instead of "TZ=America/Vancouver" in order to detect the bug even | on systems that don't support the Olson extension, or don't have the | full zoneinfo tables installed. */ | putenv ((char*) "TZ=PST8PDT,M4.1.0,M10.5.0"); | | tm.tm_year = 98; | tm.tm_mon = 3; | tm.tm_mday = 5; | tm.tm_hour = 2; | tm.tm_min = 0; | tm.tm_sec = 0; | tm.tm_isdst = -1; | return mktime (&tm) != (time_t) -1; | } | | static int | mktime_test1 (time_t now) | { | struct tm *lt; | return ! (lt = localtime (&now)) || mktime (lt) == now; | } | | static int | mktime_test (time_t now) | { | return (mktime_test1 (now) | && mktime_test1 ((time_t) (time_t_max - now)) | && mktime_test1 ((time_t) (time_t_min + now))); | } | | static int | irix_6_4_bug () | { | /* Based on code from Ariel Faigon. */ | struct tm tm; | tm.tm_year = 96; | tm.tm_mon = 3; | tm.tm_mday = 0; | tm.tm_hour = 0; | tm.tm_min = 0; | tm.tm_sec = 0; | tm.tm_isdst = -1; | mktime (&tm); | return tm.tm_mon == 2 && tm.tm_mday == 31; | } | | static int | bigtime_test (int j) | { | struct tm tm; | time_t now; | tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = j; | now = mktime (&tm); | if (now != (time_t) -1) | { | struct tm *lt = localtime (&now); | if (! (lt | && lt->tm_year == tm.tm_year | && lt->tm_mon == tm.tm_mon | && lt->tm_mday == tm.tm_mday | && lt->tm_hour == tm.tm_hour | && lt->tm_min == tm.tm_min | && lt->tm_sec == tm.tm_sec | && lt->tm_yday == tm.tm_yday | && lt->tm_wday == tm.tm_wday | && ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst) | == (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst)))) | return 0; | } | return 1; | } | | static int | year_2050_test () | { | /* The correct answer for 2050-02-01 00:00:00 in Pacific time, | ignoring leap seconds. */ | unsigned long int answer = 2527315200UL; | | struct tm tm; | time_t t; | tm.tm_year = 2050 - 1900; | tm.tm_mon = 2 - 1; | tm.tm_mday = 1; | tm.tm_hour = tm.tm_min = tm.tm_sec = 0; | tm.tm_isdst = -1; | | /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0" | instead of "TZ=America/Vancouver" in order to detect the bug even | on systems that don't support the Olson extension, or don't have the | full zoneinfo tables installed. */ | putenv ((char*) "TZ=PST8PDT,M4.1.0,M10.5.0"); | | t = mktime (&tm); | | /* Check that the result is either a failure, or close enough | to the correct answer that we can assume the discrepancy is | due to leap seconds. */ | return (t == (time_t) -1 | || (0 < t && answer - 120 <= t && t <= answer + 120)); | } | | int | main () | { | time_t t, delta; | int i, j; | | /* This test makes some buggy mktime implementations loop. | Give up after 60 seconds; a mktime slower than that | isn't worth using anyway. */ | alarm (60); | | for (;;) | { | t = (time_t_max << 1) + 1; | if (t <= time_t_max) | break; | time_t_max = t; | } | time_t_min = - ((time_t) ~ (time_t) 0 == (time_t) -1) - time_t_max; | | delta = time_t_max / 997; /* a suitable prime number */ | for (i = 0; i < N_STRINGS; i++) | { | if (tz_strings[i]) | putenv ((char*) tz_strings[i]); | | for (t = 0; t <= time_t_max - delta; t += delta) | if (! mktime_test (t)) | return 1; | if (! (mktime_test ((time_t) 1) | && mktime_test ((time_t) (60 * 60)) | && mktime_test ((time_t) (60 * 60 * 24)))) | return 1; | | for (j = 1; ; j <<= 1) | if (! bigtime_test (j)) | return 1; | else if (INT_MAX / 2 < j) | break; | if (! bigtime_test (INT_MAX)) | return 1; | } | return ! (irix_6_4_bug () && spring_forward_gap () && year_2050_test ()); | } configure:13974: result: no configure:13987: checking for stdlib.h configure:13987: result: yes configure:13997: checking for GNU libc compatible realloc configure:14021: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14021: $? = 0 configure:14021: ./conftest configure:14021: $? = 0 configure:14031: result: yes configure:14056: checking for dup2 configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for endpwent configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for getcwd configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for gethostname configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for gethostbyname configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for gettimeofday configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for isascii configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for memchr configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for memmove configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 conftest.c:96: warning: conflicting types for built-in function 'memmove' configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for memset configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 conftest.c:97: warning: conflicting types for built-in function 'memset' configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for regcomp configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for select configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for socket configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strcasecmp configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strchr configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 conftest.c:102: warning: conflicting types for built-in function 'strchr' configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strdup configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 conftest.c:103: warning: conflicting types for built-in function 'strdup' configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strerror configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strncasecmp configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strrchr configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 conftest.c:106: warning: conflicting types for built-in function 'strrchr' configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strstr configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 conftest.c:107: warning: conflicting types for built-in function 'strstr' configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strtol configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strtoul configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strtoull configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strlcpy configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14056: checking for strlcat configure:14056: gcc -std=gnu99 -o conftest -g -O2 conftest.c -lresolv -lsocket -lnsl >&5 configure:14056: $? = 0 configure:14056: result: yes configure:14069: checking for struct sockaddr_un.sun_len configure:14069: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:96: error: structure has no member named `sun_len' configure:14069: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define GETGROUPS_T gid_t | #define HAVE_GETGROUPS 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ALARM 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETCWD 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_ISASCII 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_REGCOMP 1 | #define HAVE_SELECT 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_STRTOULL 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRLCAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | static struct sockaddr_un ac_aggr; | if (ac_aggr.sun_len) | return 0; | ; | return 0; | } configure:14069: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c: In function `main': conftest.c:96: error: structure has no member named `sun_len' configure:14069: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define GETGROUPS_T gid_t | #define HAVE_GETGROUPS 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ALARM 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETCWD 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_ISASCII 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_REGCOMP 1 | #define HAVE_SELECT 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_STRTOULL 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRLCAT 1 | /* end confdefs.h. */ | #include | | int | main () | { | static struct sockaddr_un ac_aggr; | if (sizeof ac_aggr.sun_len) | return 0; | ; | return 0; | } configure:14069: result: no configure:14799: checking for sendmail configure:14818: found /usr/lib/sendmail configure:14831: result: /usr/lib/sendmail configure:15858: checking for OpenSSL includes configure:15867: result: /usr/local/ssl configure:15928: checking openssl/bio.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/bio.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/bio.h configure:15928: result: yes configure:15928: checking openssl/conf.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/conf.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/conf.h configure:15928: result: yes configure:15928: checking openssl/crypto.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/crypto.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/crypto.h configure:15928: result: yes configure:15928: checking openssl/err.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/err.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/err.h configure:15928: result: yes configure:15928: checking openssl/evp.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/evp.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/evp.h configure:15928: result: yes configure:15928: checking openssl/md5.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/md5.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/md5.h configure:15928: result: yes configure:15928: checking openssl/opensslv.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/opensslv.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/opensslv.h configure:15928: result: yes configure:15928: checking openssl/pem.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/pem.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/pem.h configure:15928: result: yes configure:15928: checking openssl/rsa.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/rsa.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/rsa.h configure:15928: result: yes configure:15928: checking openssl/sha.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/sha.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/sha.h configure:15928: result: yes configure:15928: checking openssl/ssl.h usability configure:15928: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking openssl/ssl.h presence configure:15928: gcc -std=gnu99 -E -I/usr/local/ssl/include conftest.c configure:15928: $? = 0 configure:15928: result: yes configure:15928: checking for openssl/ssl.h configure:15928: result: yes configure:15944: checking for library containing ERR_peek_error configure:15975: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/ssl/include -L/usr/local/ssl/lib conftest.c -lssl -lcrypto -lresolv -lsocket -lnsl >&5 configure:15975: $? = 0 configure:15992: result: none required configure:16003: checking for library containing SSL_library_init configure:16034: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/ssl/include -L/usr/local/ssl/lib conftest.c -lssl -lcrypto -lresolv -lsocket -lnsl >&5 configure:16034: $? = 0 configure:16051: result: none required configure:16136: checking whether SHA256_DIGEST_LENGTH is declared configure:16136: gcc -std=gnu99 -c -g -O2 -I/usr/local/ssl/include conftest.c >&5 configure:16136: $? = 0 configure:16136: result: yes configure:16164: checking for milter library and includes configure:16209: result: /usr configure:16242: checking for library containing smfi_register configure:16273: gcc -std=gnu99 -o conftest -D_REENTRANT -pthreads -g -O2 -I/usr/include -D_REENTRANT -pthreads -L/usr/lib conftest.c -lresolv -lsocket -lnsl >&5 Undefined first referenced symbol in file smfi_register /var/tmp//ccKKNeSO.o ld: fatal: Symbol referencing errors. No output written to conftest collect2: ld returned 1 exit status configure:16273: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "OpenDKIM" | #define PACKAGE_TARNAME "opendkim" | #define PACKAGE_VERSION "2.3.1" | #define PACKAGE_STRING "OpenDKIM 2.3.1" | #define PACKAGE_BUGREPORT "bugs@opendkim.org" | #define PACKAGE_URL "" | #define PACKAGE "opendkim" | #define VERSION "2.3.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_PTHREAD 1 | #define HAVE_INET_PTON 1 | #define HAVE_INET_NTOP 1 | #define HAVE_GETADDRINFO 1 | #define HAVE_RES_NINIT 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_NAMESER_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_RESOLV_H 1 | #define HAVE_USECONDS_T 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_ISO_LIMITS_ISO_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYSLOG_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_STDINT_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_FORK 1 | #define HAVE_VFORK 1 | #define HAVE_WORKING_VFORK 1 | #define HAVE_WORKING_FORK 1 | #define GETGROUPS_T gid_t | #define HAVE_GETGROUPS 1 | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define TIME_WITH_SYS_TIME 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_ALARM 1 | #define HAVE_STDLIB_H 1 | #define HAVE_REALLOC 1 | #define HAVE_DUP2 1 | #define HAVE_ENDPWENT 1 | #define HAVE_GETCWD 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETHOSTBYNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_ISASCII 1 | #define HAVE_MEMCHR 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_REGCOMP 1 | #define HAVE_SELECT 1 | #define HAVE_SOCKET 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_STRTOULL 1 | #define HAVE_STRLCPY 1 | #define HAVE_STRLCAT 1 | #define SENDMAIL_PATH "/usr/lib/sendmail" | #define HAVE_OPENSSL_BIO_H 1 | #define HAVE_OPENSSL_CONF_H 1 | #define HAVE_OPENSSL_CRYPTO_H 1 | #define HAVE_OPENSSL_ERR_H 1 | #define HAVE_OPENSSL_EVP_H 1 | #define HAVE_OPENSSL_MD5_H 1 | #define HAVE_OPENSSL_OPENSSLV_H 1 | #define HAVE_OPENSSL_PEM_H 1 | #define HAVE_OPENSSL_RSA_H 1 | #define HAVE_OPENSSL_SHA_H 1 | #define HAVE_OPENSSL_SSL_H 1 | #define HAVE_SHA256 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char smfi_register (); | int | main () | { | return smfi_register (); | ; | return 0; | } configure:16273: gcc -std=gnu99 -o conftest -D_REENTRANT -pthreads -g -O2 -I/usr/include -D_REENTRANT -pthreads -L/usr/lib conftest.c -lmilter -lresolv -lsocket -lnsl >&5 configure:16273: $? = 0 configure:16290: result: -lmilter configure:16303: checking for smfi_insheader configure:16303: gcc -std=gnu99 -o conftest -D_REENTRANT -pthreads -g -O2 -I/usr/include -D_REENTRANT -pthreads -L/usr/lib conftest.c -lmilter -lresolv -lsocket -lnsl >&5 configure:16303: $? = 0 configure:16303: result: yes configure:16311: checking for smfi_opensocket configure:16311: gcc -std=gnu99 -o conftest -D_REENTRANT -pthreads -g -O2 -I/usr/include -D_REENTRANT -pthreads -L/usr/lib conftest.c -lmilter -lresolv -lsocket -lnsl >&5 configure:16311: $? = 0 configure:16311: result: yes configure:16319: checking for smfi_progress configure:16319: gcc -std=gnu99 -o conftest -D_REENTRANT -pthreads -g -O2 -I/usr/include -D_REENTRANT -pthreads -L/usr/lib conftest.c -lmilter -lresolv -lsocket -lnsl >&5 configure:16319: $? = 0 configure:16319: result: yes configure:16327: checking for smfi_setsymlist configure:16327: gcc -std=gnu99 -o conftest -D_REENTRANT -pthreads -g -O2 -I/usr/include -D_REENTRANT -pthreads -L/usr/lib conftest.c -lmilter -lresolv -lsocket -lnsl >&5 configure:16327: $? = 0 configure:16327: result: yes configure:16335: checking for smfi_version configure:16335: gcc -std=gnu99 -o conftest -D_REENTRANT -pthreads -g -O2 -I/usr/include -D_REENTRANT -pthreads -L/usr/lib conftest.c -lmilter -lresolv -lsocket -lnsl >&5 configure:16335: $? = 0 configure:16335: result: yes configure:17972: checking for BerkeleyDB configure:17978: result: not required or disabled configure:18232: checking for domainname configure:18250: found /usr/bin/domainname configure:18262: result: /usr/bin/domainname configure:18521: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by OpenDKIM config.status 2.3.1, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on aft03-mail2 config.status:1345: creating Makefile config.status:1345: creating docs/Makefile config.status:1345: creating contrib/Makefile config.status:1345: creating contrib/convert/Makefile config.status:1345: creating contrib/init/Makefile config.status:1345: creating contrib/init/generic/Makefile config.status:1345: creating contrib/init/redhat/Makefile config.status:1345: creating contrib/init/solaris/Makefile config.status:1345: creating contrib/lua/Makefile config.status:1345: creating contrib/spec/Makefile config.status:1345: creating contrib/spec/opendkim.spec config.status:1345: creating contrib/stats/Makefile config.status:1345: creating libar/ar.pc config.status:1345: creating libar/Makefile config.status:1345: creating libar/tests/Makefile config.status:1345: creating libopendkim/opendkim.pc config.status:1345: creating libopendkim/Makefile config.status:1345: creating libopendkim/docs/Makefile config.status:1345: creating libopendkim/tests/Makefile config.status:1345: creating librbl/rbl.pc config.status:1345: creating librbl/Makefile config.status:1345: creating libvbr/vbr.pc config.status:1345: creating libvbr/Makefile config.status:1345: creating miltertest/Makefile config.status:1345: creating opendkim/Makefile config.status:1345: creating opendkim/opendkim.8 config.status:1345: creating opendkim/opendkim-genkey config.status:1345: creating opendkim/opendkim-genkey.8 config.status:1345: creating opendkim/opendkim-genzone.8 config.status:1345: creating opendkim/opendkim-lua.3 config.status:1345: creating opendkim/opendkim-testadsp.8 config.status:1345: creating opendkim/opendkim-testkey.8 config.status:1345: creating opendkim/opendkim-stats.8 config.status:1345: creating opendkim/opendkim.conf.5 config.status:1345: creating opendkim/opendkim.conf.simple config.status:1345: creating opendkim/opendkim.conf.simple-verify config.status:1345: creating opendkim/opendkim-atpszone.8 config.status:1345: creating opendkim/opendkim-spam.1 config.status:1345: creating opendkim/tests/Makefile config.status:1345: creating stats/Makefile config.status:1345: creating stats/opendkim-importstats.8 config.status:1345: creating build-config.h config.status:1574: executing depfiles commands config.status:1574: executing libtool commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=sparc-sun-solaris2.10 ac_cv_c_compiler_gnu=yes ac_cv_c_uint16_t=yes ac_cv_c_uint32_t=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_GNUTLS_CFLAGS_set= ac_cv_env_GNUTLS_CFLAGS_value= ac_cv_env_GNUTLS_LIBS_set= ac_cv_env_GNUTLS_LIBS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBCRYPTO_CFLAGS_set= ac_cv_env_LIBCRYPTO_CFLAGS_value= ac_cv_env_LIBCRYPTO_LIBS_set= ac_cv_env_LIBCRYPTO_LIBS_value= ac_cv_env_LIBLUA_CFLAGS_set= ac_cv_env_LIBLUA_CFLAGS_value= ac_cv_env_LIBLUA_LIBS_set= ac_cv_env_LIBLUA_LIBS_value= ac_cv_env_LIBODBX_CFLAGS_set= ac_cv_env_LIBODBX_CFLAGS_value= ac_cv_env_LIBODBX_LIBS_set= ac_cv_env_LIBODBX_LIBS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LIBTRE_CFLAGS_set= ac_cv_env_LIBTRE_CFLAGS_value= ac_cv_env_LIBTRE_LIBS_set= ac_cv_env_LIBTRE_LIBS_value= ac_cv_env_OPENLDAP_CFLAGS_set= ac_cv_env_OPENLDAP_CFLAGS_value= ac_cv_env_OPENLDAP_LIBS_set= ac_cv_env_OPENLDAP_LIBS_value= ac_cv_env_PKG_CONFIG_LIBDIR_set= ac_cv_env_PKG_CONFIG_LIBDIR_value= ac_cv_env_PKG_CONFIG_PATH_set= ac_cv_env_PKG_CONFIG_PATH_value= ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_SASL_CFLAGS_set= ac_cv_env_SASL_CFLAGS_value= ac_cv_env_SASL_LIBS_set= ac_cv_env_SASL_LIBS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_func_alarm=yes ac_cv_func_dup2=yes ac_cv_func_endpwent=yes ac_cv_func_fork=yes ac_cv_func_fork_works=yes ac_cv_func_getcwd=yes ac_cv_func_getgroups=yes ac_cv_func_getgroups_works=yes ac_cv_func_gethostbyname=yes ac_cv_func_gethostname=yes ac_cv_func_gettimeofday=yes ac_cv_func_isascii=yes ac_cv_func_malloc_0_nonnull=yes ac_cv_func_memchr=yes ac_cv_func_memmove=yes ac_cv_func_memset=yes ac_cv_func_realloc_0_nonnull=yes ac_cv_func_regcomp=yes ac_cv_func_select=yes ac_cv_func_smfi_insheader=yes ac_cv_func_smfi_opensocket=yes ac_cv_func_smfi_progress=yes ac_cv_func_smfi_setsymlist=yes ac_cv_func_smfi_version=yes ac_cv_func_socket=yes ac_cv_func_strcasecmp=yes ac_cv_func_strchr=yes ac_cv_func_strdup=yes ac_cv_func_strerror=yes ac_cv_func_strlcat=yes ac_cv_func_strlcpy=yes ac_cv_func_strncasecmp=yes ac_cv_func_strrchr=yes ac_cv_func_strstr=yes ac_cv_func_strtol=yes ac_cv_func_strtoul=yes ac_cv_func_strtoull=yes ac_cv_func_vfork=yes ac_cv_func_vfork_works=yes ac_cv_func_working_mktime=no ac_cv_have_decl_SHA256_DIGEST_LENGTH=yes ac_cv_header_arpa_inet_h=yes ac_cv_header_arpa_nameser_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_iso_limits_iso_h=yes ac_cv_header_limits_h=yes ac_cv_header_memory_h=yes ac_cv_header_netdb_h=yes ac_cv_header_netinet_in_h=yes ac_cv_header_openssl_bio_h=yes ac_cv_header_openssl_conf_h=yes ac_cv_header_openssl_crypto_h=yes ac_cv_header_openssl_err_h=yes ac_cv_header_openssl_evp_h=yes ac_cv_header_openssl_md5_h=yes ac_cv_header_openssl_opensslv_h=yes ac_cv_header_openssl_pem_h=yes ac_cv_header_openssl_rsa_h=yes ac_cv_header_openssl_sha_h=yes ac_cv_header_openssl_ssl_h=yes ac_cv_header_paths_h=no ac_cv_header_resolv_h=yes ac_cv_header_stdbool_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_file_h=yes ac_cv_header_sys_param_h=yes ac_cv_header_sys_socket_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_syslog_h=yes ac_cv_header_time=yes ac_cv_header_unistd_h=yes ac_cv_header_vfork_h=no ac_cv_host=sparc-sun-solaris2.10 ac_cv_member_struct_sockaddr_un_sun_len=no ac_cv_objext=o ac_cv_path_EGREP='/usr/sfw/bin/ggrep -E' ac_cv_path_FGREP='/usr/sfw/bin/ggrep -F' ac_cv_path_GREP=/usr/sfw/bin/ggrep ac_cv_path_SED=/usr/bin/sed ac_cv_path_SENDMAIL_PATH=/usr/lib/sendmail ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config ac_cv_path_domainname=/usr/bin/domainname ac_cv_path_install='/usr/local/bin/install -c' ac_cv_path_mkdir=/usr/local/bin/mkdir ac_cv_prog_AWK=nawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_MANIFEST_TOOL=mt ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_prog_cc_gcc_c_o=yes ac_cv_prog_make_make_set=yes ac_cv_search_ERR_peek_error='none required' ac_cv_search_SSL_library_init='none required' ac_cv_search_getaddrinfo='none required' ac_cv_search_inet_addr=-lnsl ac_cv_search_inet_aton='none required' ac_cv_search_inet_ntop='none required' ac_cv_search_inet_pton='none required' ac_cv_search_res_ninit=-lresolv ac_cv_search_smfi_register=-lmilter ac_cv_search_socket=-lsocket ac_cv_type__Bool=yes ac_cv_type_getgroups=gid_t ac_cv_type_mode_t=yes ac_cv_type_off_t=yes ac_cv_type_pid_t=yes ac_cv_type_size_t=yes ac_cv_type_ssize_t=yes ac_cv_type_uid_t=yes ac_cv_type_useconds_t=yes am_cv_CC_dependencies_compiler_type=gcc3 lt_cv_ar_at_file=no lt_cv_archive_cmds_need_lc=yes lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/ccs/bin/ld lt_cv_path_NM='/usr/ccs/bin/nm -p' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_pic='-fPIC -DPIC' lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=no lt_cv_prog_gnu_ld=no lt_cv_sharedlib_from_linklib_cmd='printf %s\n' lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BDRT][BDRT]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BDRT]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BDRT]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[BDRT]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BDRT]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_max_cmd_len=786240 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /var/tmp/opendkim-2.3.1/build-aux/missing --run aclocal-1.11' ADSP_LISTS_MANNOTICE='(Experimental feature not enabled for this installation.)' ALL_SYMBOLS_FALSE='' ALL_SYMBOLS_TRUE='#' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /var/tmp/opendkim-2.3.1/build-aux/missing --run tar' AR='ar' ATPS_FALSE='' ATPS_MANNOTICE='(Experimental feature not enabled for this installation.)' ATPS_TRUE='#' AUTOCONF='${SHELL} /var/tmp/opendkim-2.3.1/build-aux/missing --run autoconf' AUTOHEADER='${SHELL} /var/tmp/opendkim-2.3.1/build-aux/missing --run autoheader' AUTOMAKE='${SHELL} /var/tmp/opendkim-2.3.1/build-aux/missing --run automake-1.11' AWK='nawk' BODYLENGTH_DB_MANNOTICE='(Experimental feature not enabled for this installation.)' BUILD_FILTER_FALSE='#' BUILD_FILTER_TRUE='' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' COV_CFLAGS='' COV_LDFLAGS='' COV_LIBADD='' CPP='gcc -std=gnu99 -E' CPPFLAGS=' -DCONFIG_BASE=\"${prefix}/etc\"' CYGPATH_W='echo' DEBUG_FALSE='' DEBUG_TRUE='#' DEFAULT_SENDER_MANNOTICE='(Experimental feature not enabled for this installation.)' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DIFFHEADERS_MANNOTICE='(Experimental feature not enabled for this installation.)' DKIM_REPUTATION_MANNOTICE='(Experimental feature not enabled for this installation.)' DLLTOOL='false' DOMAIN='example.com' DOMAINKEYS_MANNOTICE='(Not enabled for this installation.)' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/sfw/bin/ggrep -E' EXEEXT='' FGREP='/usr/sfw/bin/ggrep -F' GCOV_FALSE='' GCOV_ONLY_FALSE='' GCOV_ONLY_TRUE='#' GCOV_TRUE='#' GNUTLS_CFLAGS='' GNUTLS_LIBS='' GPROF_FALSE='' GPROF_TRUE='#' GREP='/usr/sfw/bin/ggrep' HEX_VERSION='02030100' IDENTITY_HEADER_MANNOTICE='(Experimental feature not enabled for this installation.)' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LCOV_FALSE='' LCOV_TRUE='#' LD='/usr/ccs/bin/ld' LDAP_CACHING_MANNOTICE='(Experimental feature not enabled for this installation.)' LDFLAGS='' LIBCRYPTO_CFLAGS='' LIBCRYPTO_CPPFLAGS='-I/usr/local/ssl/include' LIBCRYPTO_LIBDIRS='-L/usr/local/ssl/lib' LIBCRYPTO_LIBS='-lssl -lcrypto' LIBDB_INCDIRS='' LIBDB_LIBDIRS='' LIBDB_LIBS='' LIBDK_INCDIRS='' LIBDK_LIBDIRS='' LIBDK_LIBS='' LIBLUA_CFLAGS='' LIBLUA_INCDIRS='' LIBLUA_LIBDIRS='' LIBLUA_LIBS='' LIBMILTER_INCDIRS='-I/usr/include' LIBMILTER_LIBDIRS='-L/usr/lib' LIBMILTER_LIBS='-lmilter' LIBOBJS=' ${LIBOBJDIR}mktime$U.o' LIBODBX_CFLAGS='' LIBODBX_CPPFLAGS='' LIBODBX_LIBS='' LIBOPENDKIM_INC='-I/usr/local/ssl/include ' LIBOPENDKIM_LIBS='-lssl -lcrypto ' LIBOPENDKIM_LIBS_PKG='-lssl -lcrypto ' LIBOPENDKIM_VERSION_INFO='3:2:0' LIBRESOLV='' LIBS='-lresolv -lsocket -lnsl ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIBTRE_CFLAGS='' LIBTRE_LIBS='' LIBUNBOUND_INCDIRS='' LIBUNBOUND_LIBDIRS='' LIBUNBOUND_LIBS='' LIPO='' LIVE_TESTS_FALSE='#' LIVE_TESTS_TRUE='' LN_S='ln -s' LTLIBOBJS=' ${LIBOBJDIR}mktime$U.lo' LUA_FALSE='' LUA_MANNOTICE='(Not enabled for this installation.)' LUA_TRUE='#' MAKEINFO='${SHELL} /var/tmp/opendkim-2.3.1/build-aux/missing --run makeinfo' MANIFEST_TOOL=':' MAXVERIFY_MANNOTICE='(Experimental feature not enabled for this installation.)' MKDIR_P='/usr/local/bin/mkdir -p' NM='/usr/ccs/bin/nm -p' NMEDIT='' OBJDUMP='false' OBJEXT='o' OPENLDAP_CFLAGS='' OPENLDAP_CPPFLAGS='' OPENLDAP_LIBS='' OTOOL64='' OTOOL='' OVERSIGN_MANNOTICE='(Experimental feature not enabled for this installation.)' PACKAGE='opendkim' PACKAGE_BUGREPORT='bugs@opendkim.org' PACKAGE_NAME='OpenDKIM' PACKAGE_STRING='OpenDKIM 2.3.1' PACKAGE_TARNAME='opendkim' PACKAGE_URL='' PACKAGE_VERSION='2.3.1' PARSETIME_MANNOTICE='(Experimental feature not enabled for this installation.)' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' PKG_CONFIG_LIBDIR='' PKG_CONFIG_PATH='' POLL_MANNOTICE='(Not enabled for this installation.)' POPAUTH_MANNOTICE='(Not enabled for this installation.)' POSTGRESQL_RECONNECT_HACK_MANNOTICE='(Experimental feature not enabled for this installation.)' PTHREAD_CC='gcc -std=gnu99' PTHREAD_CFLAGS='-D_REENTRANT -pthreads' PTHREAD_LIBS='' QUERY_CACHE_MANNOTICE='(Not enabled for this installation.)' RANLIB='ranlib' RBL_FALSE='' RBL_MANNOTICE='(Experimental feature not enabled for this installation.)' RBL_TRUE='#' REDIRECT_MANNOTICE='(Experimental feature not enabled for this installation.)' REPLACE_RULES_MANNOTICE='(Experimental feature not enabled for this installation.)' REPORT_INTERVALS_MANNOTICE='(Experimental feature not enabled for this installation.)' RESIGN_MANNOTICE='(Experimental feature not enabled for this installation.)' RPATH_FALSE='' RPATH_TRUE='#' SASL_CFLAGS='' SASL_CPPFLAGS='' SASL_LIBS='' SED='/usr/bin/sed' SELECTOR_HEADER_MANNOTICE='(Experimental feature not enabled for this installation.)' SELECT_CANONICALIZATION_MANNOTICE='(Experimental feature not enabled for this installation.)' SENDER_MACRO_MANNOTICE='(Experimental feature not enabled for this installation.)' SENDMAIL_PATH='/usr/lib/sendmail' SET_MAKE='' SHELL='/bin/bash' STATSEXT_MANNOTICE='(Experimental feature not enabled for this installation.)' STATS_FALSE='' STATS_MANNOTICE='(Experimental feature not enabled for this installation.)' STATS_TRUE='#' STRIP='strip' UNBOUND_MANNOTICE='(Not enabled for this installation.)' USE_ARLIB_FALSE='' USE_ARLIB_TRUE='#' USE_DB_LIBOPENDKIM_FALSE='' USE_DB_LIBOPENDKIM_TRUE='#' USE_DB_OPENDKIM_FALSE='' USE_DB_OPENDKIM_TRUE='#' USE_GNUTLS_FALSE='' USE_GNUTLS_TRUE='#' USE_LDAP_FALSE='' USE_LDAP_TRUE='#' USE_ODBX_FALSE='' USE_ODBX_TRUE='#' USE_SASL_FALSE='' USE_SASL_TRUE='#' USE_TRE_FALSE='' USE_TRE_TRUE='#' USE_UNBOUND_FALSE='' USE_UNBOUND_TRUE='#' VBR_FALSE='' VBR_MANNOTICE='(Experimental feature not enabled for this installation.)' VBR_TRUE='#' VERIFY_DOMAINKEYS_FALSE='' VERIFY_DOMAINKEYS_TRUE='#' VERSION='2.3.1' ac_ct_AR='ar' ac_ct_CC='gcc' ac_ct_DUMPBIN='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' ax_pthread_config='' bindir='${exec_prefix}/bin' build='sparc-sun-solaris2.10' build_alias='' build_cpu='sparc' build_os='solaris2.10' build_vendor='sun' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' domainname='/usr/bin/domainname' dvidir='${docdir}' exec_prefix='${prefix}' hascc='' hasgcc='' hasgcov='' hasgprof='' haslcov='' host='sparc-sun-solaris2.10' host_alias='' host_cpu='sparc' host_os='solaris2.10' host_vendor='sun' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /var/tmp/opendkim-2.3.1/build-aux/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='/usr/local/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "OpenDKIM" #define PACKAGE_TARNAME "opendkim" #define PACKAGE_VERSION "2.3.1" #define PACKAGE_STRING "OpenDKIM 2.3.1" #define PACKAGE_BUGREPORT "bugs@opendkim.org" #define PACKAGE_URL "" #define PACKAGE "opendkim" #define VERSION "2.3.1" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define HAVE_PTHREAD 1 #define HAVE_INET_PTON 1 #define HAVE_INET_NTOP 1 #define HAVE_GETADDRINFO 1 #define HAVE_RES_NINIT 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_ARPA_NAMESER_H 1 #define HAVE_NETDB_H 1 #define HAVE_RESOLV_H 1 #define HAVE_USECONDS_T 1 #define HAVE_ARPA_INET_H 1 #define HAVE_FCNTL_H 1 #define HAVE_LIMITS_H 1 #define HAVE_ISO_LIMITS_ISO_H 1 #define HAVE_NETDB_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_SYS_FILE_H 1 #define HAVE_SYS_PARAM_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYSLOG_H 1 #define HAVE_UNISTD_H 1 #define HAVE_STDINT_H 1 #define HAVE__BOOL 1 #define HAVE_STDBOOL_H 1 #define HAVE_FORK 1 #define HAVE_VFORK 1 #define HAVE_WORKING_VFORK 1 #define HAVE_WORKING_FORK 1 #define GETGROUPS_T gid_t #define HAVE_GETGROUPS 1 #define HAVE_STDLIB_H 1 #define HAVE_MALLOC 1 #define TIME_WITH_SYS_TIME 1 #define HAVE_SYS_TIME_H 1 #define HAVE_UNISTD_H 1 #define HAVE_ALARM 1 #define HAVE_STDLIB_H 1 #define HAVE_REALLOC 1 #define HAVE_DUP2 1 #define HAVE_ENDPWENT 1 #define HAVE_GETCWD 1 #define HAVE_GETHOSTNAME 1 #define HAVE_GETHOSTBYNAME 1 #define HAVE_GETTIMEOFDAY 1 #define HAVE_ISASCII 1 #define HAVE_MEMCHR 1 #define HAVE_MEMMOVE 1 #define HAVE_MEMSET 1 #define HAVE_REGCOMP 1 #define HAVE_SELECT 1 #define HAVE_SOCKET 1 #define HAVE_STRCASECMP 1 #define HAVE_STRCHR 1 #define HAVE_STRDUP 1 #define HAVE_STRERROR 1 #define HAVE_STRNCASECMP 1 #define HAVE_STRRCHR 1 #define HAVE_STRSTR 1 #define HAVE_STRTOL 1 #define HAVE_STRTOUL 1 #define HAVE_STRTOULL 1 #define HAVE_STRLCPY 1 #define HAVE_STRLCAT 1 #define SENDMAIL_PATH "/usr/lib/sendmail" #define HAVE_OPENSSL_BIO_H 1 #define HAVE_OPENSSL_CONF_H 1 #define HAVE_OPENSSL_CRYPTO_H 1 #define HAVE_OPENSSL_ERR_H 1 #define HAVE_OPENSSL_EVP_H 1 #define HAVE_OPENSSL_MD5_H 1 #define HAVE_OPENSSL_OPENSSLV_H 1 #define HAVE_OPENSSL_PEM_H 1 #define HAVE_OPENSSL_RSA_H 1 #define HAVE_OPENSSL_SHA_H 1 #define HAVE_OPENSSL_SSL_H 1 #define HAVE_SHA256 1 #define HAVE_SMFI_INSHEADER 1 #define HAVE_SMFI_OPENSOCKET 1 #define HAVE_SMFI_PROGRESS 1 #define HAVE_SMFI_SETSYMLIST 1 #define HAVE_SMFI_VERSION 1 #define LIBOPENDKIM_FEATURE_STRING "libopendkim 2.3.1:" configure: exit 0