This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by pacemaker configure 1.0.5, which was generated by GNU Autoconf 2.61. Invocation command line was $ ./configure --prefix=/usr/local/linuxha --with-lcrso-dir=/usr/local/linuxha/libexec/lcrso --with-ais=yes --without-heartbeat ## --------- ## ## Platform. ## ## --------- ## hostname = correo3 uname -m = x86_64 uname -r = 2.6.26-2-amd64 uname -s = Linux uname -v = #1 SMP Wed Aug 19 22:33:18 UTC 2009 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2082: checking build system type configure:2100: result: x86_64-unknown-linux-gnu configure:2122: checking host system type configure:2137: result: x86_64-unknown-linux-gnu configure:2193: checking for a BSD-compatible install configure:2249: result: /usr/bin/install -c configure:2260: checking whether build environment is sane configure:2303: result: yes configure:2331: checking for a thread-safe mkdir -p configure:2370: result: /bin/mkdir -p configure:2383: checking for gawk configure:2399: found /usr/bin/gawk configure:2410: result: gawk configure:2421: checking whether make sets $(MAKE) configure:2442: result: yes configure:2690: checking for gcc configure:2706: found /usr/bin/gcc configure:2717: result: gcc configure:2955: checking for C compiler version configure:2962: gcc --version >&5 gcc (Debian 4.3.2-1.1) 4.3.2 Copyright (C) 2008 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:2965: $? = 0 configure:2972: gcc -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.2-1.1' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-cld --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.3.2 (Debian 4.3.2-1.1) configure:2975: $? = 0 configure:2982: gcc -V >&5 gcc: '-V' option must have argument configure:2985: $? = 1 configure:3008: checking for C compiler default output file name configure:3035: gcc conftest.c >&5 configure:3038: $? = 0 configure:3076: result: a.out configure:3093: checking whether the C compiler works configure:3103: ./a.out configure:3106: $? = 0 configure:3123: result: yes configure:3130: checking whether we are cross compiling configure:3132: result: no configure:3135: checking for suffix of executables configure:3142: gcc -o conftest conftest.c >&5 configure:3145: $? = 0 configure:3169: result: configure:3175: checking for suffix of object files configure:3201: gcc -c conftest.c >&5 configure:3204: $? = 0 configure:3227: result: o configure:3231: checking whether we are using the GNU C compiler configure:3260: gcc -c conftest.c >&5 configure:3266: $? = 0 configure:3283: result: yes configure:3288: checking whether gcc accepts -g configure:3318: gcc -c -g conftest.c >&5 configure:3324: $? = 0 configure:3423: result: yes configure:3440: checking for gcc option to accept ISO C89 configure:3514: gcc -c -g -O2 conftest.c >&5 configure:3520: $? = 0 configure:3543: result: none needed configure:3572: checking for style of include used by make configure:3600: result: GNU configure:3625: checking dependency style of gcc configure:3716: result: gcc3 configure:3731: checking whether gcc and cc understand -c and -o together configure:3766: gcc -c conftest.c -o conftest2.o >&5 configure:3769: $? = 0 configure:3775: gcc -c conftest.c -o conftest2.o >&5 configure:3778: $? = 0 configure:3789: cc -c conftest.c >&5 configure:3792: $? = 0 configure:3800: cc -c conftest.c -o conftest2.o >&5 configure:3803: $? = 0 configure:3809: cc -c conftest.c -o conftest2.o >&5 configure:3812: $? = 0 configure:3830: result: yes configure:3858: checking for gcc option to accept ISO C99 configure:4017: gcc -c -g -O2 conftest.c >&5 conftest.c:61: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:115: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' conftest.c:115: error: 'newvar' undeclared (first use in this function) conftest.c:115: error: (Each undeclared identifier is reported only once conftest.c:115: error: for each function it appears in.) conftest.c:125: error: 'for' loop initial declaration used outside C99 mode configure:4023: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | /* 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:4017: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4023: $? = 0 configure:4053: result: -std=gnu99 configure:4183: checking for gcc -std=gnu99 option to accept ISO Standard C configure:4194: result: -std=gnu99 configure:4284: checking for a sed that does not truncate output configure:4340: result: /bin/sed configure:4343: checking for grep that handles long lines and -e configure:4417: result: /bin/grep configure:4422: checking for egrep configure:4500: result: /bin/grep -E configure:4516: checking for ld used by gcc -std=gnu99 configure:4583: result: /usr/bin/ld configure:4592: checking if the linker (/usr/bin/ld) is GNU ld configure:4607: result: yes configure:4612: checking for /usr/bin/ld option to reload object files configure:4619: result: -r configure:4637: checking for BSD-compatible nm configure:4686: result: /usr/bin/nm -B configure:4690: checking whether ln -s works configure:4694: result: yes configure:4701: checking how to recognize dependent libraries configure:4887: result: pass_all configure:4976: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4979: $? = 0 configure:5132: checking how to run the C preprocessor configure:5172: gcc -std=gnu99 -E conftest.c configure:5178: $? = 0 configure:5209: gcc -std=gnu99 -E conftest.c conftest.c:11:28: error: ac_nonexistent.h: No such file or directory configure:5215: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | /* end confdefs.h. */ | #include configure:5248: result: gcc -std=gnu99 -E configure:5277: gcc -std=gnu99 -E conftest.c configure:5283: $? = 0 configure:5314: gcc -std=gnu99 -E conftest.c conftest.c:11:28: error: ac_nonexistent.h: No such file or directory configure:5320: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | /* end confdefs.h. */ | #include configure:5358: checking for ANSI C header files configure:5388: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5394: $? = 0 configure:5493: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:5496: $? = 0 configure:5502: ./conftest configure:5505: $? = 0 configure:5522: result: yes configure:5546: checking for sys/types.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for sys/stat.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for stdlib.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for string.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for memory.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for strings.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for inttypes.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for stdint.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5546: checking for unistd.h configure:5567: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5573: $? = 0 configure:5589: result: yes configure:5616: checking dlfcn.h usability configure:5633: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:5639: $? = 0 configure:5653: result: yes configure:5657: checking dlfcn.h presence configure:5672: gcc -std=gnu99 -E conftest.c configure:5678: $? = 0 configure:5692: result: yes configure:5725: checking for dlfcn.h configure:5733: result: yes configure:5804: checking for g++ configure:5820: found /usr/bin/g++ configure:5831: result: g++ configure:5862: checking for C++ compiler version configure:5869: g++ --version >&5 g++ (Debian 4.3.2-1.1) 4.3.2 Copyright (C) 2008 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:5872: $? = 0 configure:5879: g++ -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.2-1.1' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-cld --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.3.2 (Debian 4.3.2-1.1) configure:5882: $? = 0 configure:5889: g++ -V >&5 g++: '-V' option must have argument configure:5892: $? = 1 configure:5895: checking whether we are using the GNU C++ compiler configure:5924: g++ -c conftest.cpp >&5 configure:5930: $? = 0 configure:5947: result: yes configure:5952: checking whether g++ accepts -g configure:5982: g++ -c -g conftest.cpp >&5 configure:5988: $? = 0 configure:6087: result: yes configure:6112: checking dependency style of g++ configure:6203: result: gcc3 configure:6228: checking how to run the C++ preprocessor configure:6264: g++ -E conftest.cpp configure:6270: $? = 0 configure:6301: g++ -E conftest.cpp conftest.cpp:22:28: error: ac_nonexistent.h: No such file or directory configure:6307: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 | /* end confdefs.h. */ | #include configure:6340: result: g++ -E configure:6369: g++ -E conftest.cpp configure:6375: $? = 0 configure:6406: g++ -E conftest.cpp conftest.cpp:22:28: error: ac_nonexistent.h: No such file or directory configure:6412: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 | /* end confdefs.h. */ | #include configure:6505: checking for g77 configure:6535: result: no configure:6505: checking for xlf configure:6535: result: no configure:6505: checking for f77 configure:6535: result: no configure:6505: checking for frt configure:6535: result: no configure:6505: checking for pgf77 configure:6535: result: no configure:6505: checking for cf77 configure:6535: result: no configure:6505: checking for fort77 configure:6535: result: no configure:6505: checking for fl32 configure:6535: result: no configure:6505: checking for af77 configure:6535: result: no configure:6505: checking for xlf90 configure:6535: result: no configure:6505: checking for f90 configure:6535: result: no configure:6505: checking for pgf90 configure:6535: result: no configure:6505: checking for pghpf configure:6535: result: no configure:6505: checking for epcf90 configure:6535: result: no configure:6505: checking for gfortran configure:6535: result: no configure:6505: checking for g95 configure:6535: result: no configure:6505: checking for xlf95 configure:6535: result: no configure:6505: checking for f95 configure:6535: result: no configure:6505: checking for fort configure:6535: result: no configure:6505: checking for ifort configure:6535: result: no configure:6505: checking for ifc configure:6535: result: no configure:6505: checking for efc configure:6535: result: no configure:6505: checking for pgf95 configure:6535: result: no configure:6505: checking for lf95 configure:6535: result: no configure:6505: checking for ftn configure:6535: result: no configure:6562: checking for Fortran 77 compiler version configure:6569: --version >&5 ./configure: line 6570: --version: command not found configure:6572: $? = 127 configure:6579: -v >&5 ./configure: line 6580: -v: command not found configure:6582: $? = 127 configure:6589: -V >&5 ./configure: line 6590: -V: command not found configure:6592: $? = 127 configure:6600: checking whether we are using the GNU Fortran 77 compiler configure:6619: -c conftest.F >&5 ./configure: line 6620: -c: command not found configure:6625: $? = 127 configure: failed program was: | program main | #ifndef __GNUC__ | choke me | #endif | | end configure:6642: result: no configure:6648: checking whether accepts -g configure:6665: -c -g conftest.f >&5 ./configure: line 6666: -c: command not found configure:6671: $? = 127 configure: failed program was: | program main | | end configure:6687: result: no configure:6716: checking the maximum length of command line arguments configure:6828: result: 98304 configure:6840: checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object configure:6945: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:6948: $? = 0 configure:6952: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:6955: $? = 0 configure:7007: gcc -std=gnu99 -o conftest -g -O2 conftest.c conftstm.o >&5 configure:7010: $? = 0 configure:7048: result: ok configure:7052: checking for objdir configure:7067: result: .libs configure:7159: checking for ar configure:7175: found /usr/bin/ar configure:7186: result: ar configure:7255: checking for ranlib configure:7271: found /usr/bin/ranlib configure:7282: result: ranlib configure:7351: checking for strip configure:7367: found /usr/bin/strip configure:7378: result: strip configure:7976: checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions configure:7994: 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:7998: $? = 0 configure:8011: result: no configure:8026: checking for gcc -std=gnu99 option to produce PIC configure:8258: result: -fPIC configure:8266: checking if gcc -std=gnu99 PIC flag -fPIC works configure:8284: gcc -std=gnu99 -c -g -O2 -fPIC -DPIC conftest.c >&5 configure:8288: $? = 0 configure:8301: result: yes configure:8329: checking if gcc -std=gnu99 static flag -static works configure:8357: result: yes configure:8367: checking if gcc -std=gnu99 supports -c -o file.o configure:8388: gcc -std=gnu99 -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:8392: $? = 0 configure:8414: result: yes configure:8440: checking whether the gcc -std=gnu99 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:9421: result: yes configure:9442: checking whether -lc should be explicitly linked in configure:9447: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:9450: $? = 0 configure:9465: gcc -std=gnu99 -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 configure:9468: $? = 0 configure:9480: result: no configure:9488: checking dynamic linker characteristics configure:10102: result: GNU/Linux ld.so configure:10126: checking how to hardcode library paths into programs configure:10151: result: immediate configure:10165: checking whether stripping libraries is possible configure:10170: result: yes configure:10294: checking for shl_load configure:10350: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 /tmp/cc6EfhIq.o: In function `main': /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/conftest.c:56: undefined reference to `shl_load' collect2: ld returned 1 exit status configure:10356: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 | /* end confdefs.h. */ | /* Define shl_load to an innocuous variant, in case declares shl_load. | For example, HP-UX 11i declares gettimeofday. */ | #define shl_load innocuous_shl_load | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char shl_load (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef shl_load | | /* 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 shl_load (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_shl_load || defined __stub___shl_load | choke me | #endif | | int | main () | { | return shl_load (); | ; | return 0; | } configure:10373: result: no configure:10378: checking for shl_load in -ldld configure:10413: gcc -std=gnu99 -o conftest -g -O2 conftest.c -ldld >&5 /usr/bin/ld: cannot find -ldld collect2: ld returned 1 exit status configure:10419: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 | /* 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 shl_load (); | int | main () | { | return shl_load (); | ; | return 0; | } configure:10437: result: no configure:10442: checking for dlopen configure:10498: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 /tmp/ccQyPyGD.o: In function `main': /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/conftest.c:56: undefined reference to `dlopen' collect2: ld returned 1 exit status configure:10504: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 | /* end confdefs.h. */ | /* Define dlopen to an innocuous variant, in case declares dlopen. | For example, HP-UX 11i declares gettimeofday. */ | #define dlopen innocuous_dlopen | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char dlopen (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef dlopen | | /* 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 dlopen (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_dlopen || defined __stub___dlopen | choke me | #endif | | int | main () | { | return dlopen (); | ; | return 0; | } configure:10521: result: no configure:10526: checking for dlopen in -ldl configure:10561: gcc -std=gnu99 -o conftest -g -O2 conftest.c -ldl >&5 configure:10567: $? = 0 configure:10585: result: yes configure:10754: checking whether a program can dlopen itself configure:10828: gcc -std=gnu99 -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5 configure: In function 'main': configure:10824: warning: implicit declaration of function 'exit' configure:10824: warning: incompatible implicit declaration of built-in function 'exit' configure:10831: $? = 0 configure:10849: result: yes configure:10854: checking whether a statically linked program can dlopen itself configure:10928: gcc -std=gnu99 -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5 configure: In function 'main': configure:10924: warning: implicit declaration of function 'exit' configure:10924: warning: incompatible implicit declaration of built-in function 'exit' /tmp/ccu3Rks7.o: In function `main': /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/configure:10912: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking configure:10931: $? = 0 /lib/: cannot read file data: Is a directory configure:10949: result: no configure:10972: checking if libtool supports shared libraries configure:10974: result: yes configure:10977: checking whether to build shared libraries configure:10998: result: yes configure:11001: checking whether to build static libraries configure:11005: result: yes configure:11099: creating libtool configure:11692: checking for ld used by g++ configure:11759: result: /usr/bin/ld -m elf_x86_64 configure:11768: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld configure:11783: result: yes configure:11834: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:12780: result: yes configure:12797: g++ -c -g -O2 conftest.cpp >&5 configure:12800: $? = 0 configure:12956: checking for g++ option to produce PIC configure:13240: result: -fPIC configure:13248: checking if g++ PIC flag -fPIC works configure:13266: g++ -c -g -O2 -fPIC -DPIC conftest.cpp >&5 configure:13270: $? = 0 configure:13283: result: yes configure:13311: checking if g++ static flag -static works configure:13339: result: yes configure:13349: checking if g++ supports -c -o file.o configure:13370: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 configure:13374: $? = 0 configure:13396: result: yes configure:13422: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:13451: result: yes configure:13518: checking dynamic linker characteristics configure:14080: result: GNU/Linux ld.so configure:14104: checking how to hardcode library paths into programs configure:14129: result: immediate configure:20377: checking for preprocessor stringizing operator configure:20401: result: yes configure:20411: checking for size_t configure:20441: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:20447: $? = 0 configure:20462: result: yes configure:20474: checking for char configure:20504: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:20510: $? = 0 configure:20525: result: yes configure:20532: checking size of char configure:20834: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:20837: $? = 0 configure:20843: ./conftest configure:20846: $? = 0 configure:20869: result: 1 configure:20879: checking for short configure:20909: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:20915: $? = 0 configure:20930: result: yes configure:20937: checking size of short configure:21239: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:21242: $? = 0 configure:21248: ./conftest configure:21251: $? = 0 configure:21274: result: 2 configure:21284: checking for int configure:21314: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:21320: $? = 0 configure:21335: result: yes configure:21342: checking size of int configure:21644: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:21647: $? = 0 configure:21653: ./conftest configure:21656: $? = 0 configure:21679: result: 4 configure:21689: checking for long configure:21719: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:21725: $? = 0 configure:21740: result: yes configure:21747: checking size of long configure:22049: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:22052: $? = 0 configure:22058: ./conftest configure:22061: $? = 0 configure:22084: result: 8 configure:22094: checking for long long configure:22124: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:22130: $? = 0 configure:22145: result: yes configure:22152: checking size of long long configure:22454: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:22457: $? = 0 configure:22463: ./conftest configure:22466: $? = 0 configure:22489: result: 8 configure:22499: checking whether struct tm is in sys/time.h or time.h configure:22529: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:22535: $? = 0 configure:22550: result: time.h configure:22560: checking for struct tm.tm_zone configure:22591: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:22597: $? = 0 configure:22657: result: yes configure:22979: Sanitizing prefix: /usr/local/linuxha configure:22985: Sanitizing exec_prefix: NONE configure:22992: Sanitizing ais_prefix: /usr/local/linuxha configure:22999: Sanitizing INITDIR: configure:23004: checking which init (rc) directory to use configure:23016: result: /etc/init.d configure:23021: Sanitizing libdir: ${exec_prefix}/lib configure:23025: checking which lib directory to use configure:23037: result: /usr/local/linuxha/lib configure:23069: WARNING: bindir directory (/usr/local/linuxha/bin) does not exist! configure:23069: WARNING: sharedstatedir directory (/usr/local/linuxha/com) does not exist! configure:23069: WARNING: infodir directory (/usr/local/linuxha/share/info) does not exist! configure:23069: WARNING: docdir directory (/usr/local/linuxha/share/doc/pacemaker) does not exist! configure:23109: Host CPU: x86_64 configure:23122: checking which format is needed to print uint64_t configure:23129: result: %lu configure:23152: checking hb_config.h usability configure:23169: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c >&5 conftest.c:66:23: error: hb_config.h: No such file or directory configure:23175: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | /* 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:23189: result: no configure:23193: checking hb_config.h presence configure:23208: gcc -std=gnu99 -E conftest.c conftest.c:33:23: error: hb_config.h: No such file or directory configure:23214: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | /* end confdefs.h. */ | #include configure:23228: result: no configure:23261: checking for hb_config.h configure:23269: result: no configure:23297: checking glue_config.h usability configure:23314: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c >&5 configure:23320: $? = 0 configure:23334: result: yes configure:23338: checking glue_config.h presence configure:23353: gcc -std=gnu99 -E conftest.c conftest.c:33:25: error: glue_config.h: No such file or directory configure:23359: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | /* end confdefs.h. */ | #include configure:23373: result: no configure:23379: WARNING: glue_config.h: accepted by the compiler, rejected by the preprocessor! configure:23381: WARNING: glue_config.h: proceeding with the compiler's result configure:23406: checking for glue_config.h configure:23414: result: yes configure:22848: checking for HA_CCMUSER in glue_config.h configure:22856: result: linuxha configure:22848: checking for HA_APIGROUP in glue_config.h configure:22856: result: linuxha configure:22848: checking for HA_LIBHBDIR in glue_config.h configure:22856: result: /usr/local/linuxha/lib/heartbeat configure:22848: checking for HA_VARRUNDIR in glue_config.h configure:22856: result: /usr/local/linuxha/var/run configure:22848: checking for HA_VARLIBHBDIR in glue_config.h configure:22856: result: /usr/local/linuxha/var/lib/heartbeat configure:22848: checking for OCF_ROOT_DIR in glue_config.h configure:22856: result: /usr/lib/ocf configure:22848: checking for OCF_RA_DIR in glue_config.h configure:22856: result: /usr/lib/ocf/resource.d/ configure:23550: checking for hg configure:23583: result: no configure:23550: checking for false configure:23568: found /bin/false configure:23580: result: /bin/false configure:23591: checking build version configure:23608: result: 462f1569a43740667daf7b0f6b521742e9eb8fa7 configure:23621: checking for glibtool configure:23648: result: $(SHELL) $(top_builddir)/libtool configure:23670: checking for python configure:23688: found /usr/bin/python configure:23700: result: /usr/bin/python configure:23723: checking for python version configure:23730: result: 2.5 configure:23742: checking for python platform configure:23749: result: linux2 configure:23756: checking for python script directory configure:23764: result: ${prefix}/lib/python2.5/site-packages configure:23773: checking for python extension module directory configure:23781: result: ${exec_prefix}/lib/python2.5/site-packages configure:23798: checking for gmake configure:23828: result: no configure:23798: checking for make configure:23814: found /usr/bin/make configure:23825: result: make configure:23840: checking for lynx configure:23873: result: no configure:23840: checking for w3m configure:23858: found /usr/bin/w3m configure:23870: result: /usr/bin/w3m configure:23885: checking for help2man configure:23918: result: no configure:23930: checking for pod2man configure:23948: found /usr/bin/pod2man configure:23960: result: /usr/bin/pod2man configure:23976: checking for ssh configure:23994: found /usr/bin/ssh configure:24006: result: /usr/bin/ssh configure:24022: checking for scp configure:24040: found /usr/bin/scp configure:24052: result: /usr/bin/scp configure:24068: checking for hg configure:24098: result: /bin/false configure:24114: checking for tar configure:24132: found /bin/tar configure:24144: result: /bin/tar configure:24159: checking for md5 configure:24192: result: no configure:24204: checking for test configure:24222: found /usr/bin/test configure:24234: result: /usr/bin/test configure:24249: checking for pkg-config configure:24267: found /usr/bin/pkg-config configure:24279: result: /usr/bin/pkg-config configure:24294: checking for xml2-config configure:24312: found /usr/bin/xml2-config configure:24324: result: /usr/bin/xml2-config configure:24339: checking for valgrind configure:24372: result: no configure:24411: checking for socket in -lsocket configure:24446: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -lsocket >&5 /usr/bin/ld: cannot find -lsocket collect2: ld returned 1 exit status configure:24452: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | /* 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:24470: result: no configure:24481: checking for dlopen in -lc configure:24516: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -lc >&5 /tmp/ccS8jdmL.o: In function `main': /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/conftest.c:59: undefined reference to `dlopen' collect2: ld returned 1 exit status configure:24522: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | /* 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 dlopen (); | int | main () | { | return dlopen (); | ; | return 0; | } configure:24540: result: no configure:24551: checking for dlopen in -ldl configure:24610: result: yes configure:24621: checking for sched_getscheduler in -lrt configure:24656: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -lrt -ldl >&5 configure:24662: $? = 0 configure:24680: result: yes configure:24691: checking for getopt_long in -lgnugetopt configure:24726: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -lgnugetopt -lrt -ldl >&5 /usr/bin/ld: cannot find -lgnugetopt collect2: ld returned 1 exit status configure:24732: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 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 getopt_long (); | int | main () | { | return getopt_long (); | ; | return 0; | } configure:24750: result: no configure:24761: checking for pam_start in -lpam configure:24796: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -lpam -lrt -ldl >&5 /usr/bin/ld: cannot find -lpam collect2: ld returned 1 exit status configure:24802: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 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 pam_start (); | int | main () | { | return pam_start (); | ; | return 0; | } configure:24820: result: no configure:24831: checking for uuid_parse in -luuid configure:24866: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -luuid -lrt -ldl >&5 configure:24872: $? = 0 configure:24890: result: yes configure:24901: checking for uuid_create in -luuid configure:24936: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -luuid -luuid -lrt -ldl >&5 /tmp/ccPdZ6jl.o: In function `main': /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/conftest.c:62: undefined reference to `uuid_create' collect2: ld returned 1 exit status configure:24942: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 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 uuid_create (); | int | main () | { | return uuid_create (); | ; | return 0; | } configure:24960: result: no configure:24977: checking for CRYPTO_free in -lcrypto configure:25012: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -lcrypto -luuid -lrt -ldl >&5 configure:25018: $? = 0 configure:25036: result: yes configure:25066: result: using /usr/bin/pkg-config glib-2.0 configure:25081: checking for gettext in -lc configure:25116: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat conftest.c -lc -luuid -lrt -ldl >&5 conftest.c:58: warning: conflicting types for built-in function 'gettext' configure:25122: $? = 0 configure:25140: result: yes configure:25232: checking for special glib includes: configure:25235: result: -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include configure:25239: checking for glib library flags configure:25242: result: -lglib-2.0 configure:25248: checking for ANSI C header files configure:25412: result: yes configure:25437: checking arpa/inet.h usability configure:25454: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:25460: $? = 0 configure:25474: result: yes configure:25478: checking arpa/inet.h presence configure:25493: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:25499: $? = 0 configure:25513: result: yes configure:25546: checking for arpa/inet.h configure:25554: result: yes configure:25582: checking asm/types.h usability configure:25599: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:25605: $? = 0 configure:25619: result: yes configure:25623: checking asm/types.h presence configure:25638: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:25644: $? = 0 configure:25658: result: yes configure:25691: checking for asm/types.h configure:25699: result: yes configure:25727: checking assert.h usability configure:25744: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:25750: $? = 0 configure:25764: result: yes configure:25768: checking assert.h presence configure:25783: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:25789: $? = 0 configure:25803: result: yes configure:25836: checking for assert.h configure:25844: result: yes configure:25872: checking auth-client.h usability configure:25889: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 conftest.c:89:25: error: auth-client.h: No such file or directory configure:25895: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_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:25909: result: no configure:25913: checking auth-client.h presence configure:25928: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c conftest.c:56:25: error: auth-client.h: No such file or directory configure:25934: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | /* end confdefs.h. */ | #include configure:25948: result: no configure:25981: checking for auth-client.h configure:25989: result: no configure:26017: checking ctype.h usability configure:26034: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:26040: $? = 0 configure:26054: result: yes configure:26058: checking ctype.h presence configure:26073: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:26079: $? = 0 configure:26093: result: yes configure:26126: checking for ctype.h configure:26134: result: yes configure:26162: checking dirent.h usability configure:26179: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:26185: $? = 0 configure:26199: result: yes configure:26203: checking dirent.h presence configure:26218: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:26224: $? = 0 configure:26238: result: yes configure:26271: checking for dirent.h configure:26279: result: yes configure:26307: checking errno.h usability configure:26324: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:26330: $? = 0 configure:26344: result: yes configure:26348: checking errno.h presence configure:26363: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:26369: $? = 0 configure:26383: result: yes configure:26416: checking for errno.h configure:26424: result: yes configure:26452: checking fcntl.h usability configure:26469: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:26475: $? = 0 configure:26489: result: yes configure:26493: checking fcntl.h presence configure:26508: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:26514: $? = 0 configure:26528: result: yes configure:26561: checking for fcntl.h configure:26569: result: yes configure:26597: checking getopt.h usability configure:26614: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:26620: $? = 0 configure:26634: result: yes configure:26638: checking getopt.h presence configure:26653: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:26659: $? = 0 configure:26673: result: yes configure:26706: checking for getopt.h configure:26714: result: yes configure:26742: checking glib.h usability configure:26759: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:26765: $? = 0 configure:26779: result: yes configure:26783: checking glib.h presence configure:26798: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:26804: $? = 0 configure:26818: result: yes configure:26851: checking for glib.h configure:26859: result: yes configure:26887: checking grp.h usability configure:26904: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:26910: $? = 0 configure:26924: result: yes configure:26928: checking grp.h presence configure:26943: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:26949: $? = 0 configure:26963: result: yes configure:26996: checking for grp.h configure:27004: result: yes configure:27032: checking limits.h usability configure:27049: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:27055: $? = 0 configure:27069: result: yes configure:27073: checking limits.h presence configure:27088: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:27094: $? = 0 configure:27108: result: yes configure:27141: checking for limits.h configure:27149: result: yes configure:27177: checking linux/errqueue.h usability configure:27194: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 In file included from conftest.c:97: /usr/include/linux/errqueue.h:6: error: expected specifier-qualifier-list before '__u32' configure:27200: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_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:27214: result: no configure:27218: checking linux/errqueue.h presence configure:27233: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:27239: $? = 0 configure:27253: result: yes configure:27266: WARNING: linux/errqueue.h: present but cannot be compiled configure:27268: WARNING: linux/errqueue.h: check for missing prerequisite headers? configure:27270: WARNING: linux/errqueue.h: see the Autoconf documentation configure:27272: WARNING: linux/errqueue.h: section "Present But Cannot Be Compiled" configure:27274: WARNING: linux/errqueue.h: proceeding with the preprocessor's result configure:27276: WARNING: linux/errqueue.h: in the future, the compiler will take precedence configure:27286: checking for linux/errqueue.h configure:27294: result: yes configure:27322: checking malloc.h usability configure:27339: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:27345: $? = 0 configure:27359: result: yes configure:27363: checking malloc.h presence configure:27378: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:27384: $? = 0 configure:27398: result: yes configure:27431: checking for malloc.h configure:27439: result: yes configure:27467: checking netdb.h usability configure:27484: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:27490: $? = 0 configure:27504: result: yes configure:27508: checking netdb.h presence configure:27523: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:27529: $? = 0 configure:27543: result: yes configure:27576: checking for netdb.h configure:27584: result: yes configure:27612: checking netinet/in.h usability configure:27629: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:27635: $? = 0 configure:27649: result: yes configure:27653: checking netinet/in.h presence configure:27668: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:27674: $? = 0 configure:27688: result: yes configure:27721: checking for netinet/in.h configure:27729: result: yes configure:27757: checking netinet/ip.h usability configure:27774: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:27780: $? = 0 configure:27794: result: yes configure:27798: checking netinet/ip.h presence configure:27813: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:27819: $? = 0 configure:27833: result: yes configure:27866: checking for netinet/ip.h configure:27874: result: yes configure:27902: checking pam/pam_appl.h usability configure:27919: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 conftest.c:102:26: error: pam/pam_appl.h: No such file or directory configure:27925: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_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:27939: result: no configure:27943: checking pam/pam_appl.h presence configure:27958: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c conftest.c:69:26: error: pam/pam_appl.h: No such file or directory configure:27964: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | /* end confdefs.h. */ | #include configure:27978: result: no configure:28011: checking for pam/pam_appl.h configure:28019: result: no configure:28047: checking pthread.h usability configure:28064: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:28070: $? = 0 configure:28084: result: yes configure:28088: checking pthread.h presence configure:28103: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:28109: $? = 0 configure:28123: result: yes configure:28156: checking for pthread.h configure:28164: result: yes configure:28192: checking pwd.h usability configure:28209: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:28215: $? = 0 configure:28229: result: yes configure:28233: checking pwd.h presence configure:28248: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:28254: $? = 0 configure:28268: result: yes configure:28301: checking for pwd.h configure:28309: result: yes configure:28337: checking security/pam_appl.h usability configure:28354: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 conftest.c:104:31: error: security/pam_appl.h: No such file or directory configure:28360: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_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:28374: result: no configure:28378: checking security/pam_appl.h presence configure:28393: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c conftest.c:71:31: error: security/pam_appl.h: No such file or directory configure:28399: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include configure:28413: result: no configure:28446: checking for security/pam_appl.h configure:28454: result: no configure:28482: checking sgtty.h usability configure:28499: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:28505: $? = 0 configure:28519: result: yes configure:28523: checking sgtty.h presence configure:28538: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:28544: $? = 0 configure:28558: result: yes configure:28591: checking for sgtty.h configure:28599: result: yes configure:28627: checking signal.h usability configure:28644: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:28650: $? = 0 configure:28664: result: yes configure:28668: checking signal.h presence configure:28683: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:28689: $? = 0 configure:28703: result: yes configure:28736: checking for signal.h configure:28744: result: yes configure:28772: checking stdarg.h usability configure:28789: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:28795: $? = 0 configure:28809: result: yes configure:28813: checking stdarg.h presence configure:28828: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:28834: $? = 0 configure:28848: result: yes configure:28881: checking for stdarg.h configure:28889: result: yes configure:28917: checking stddef.h usability configure:28934: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:28940: $? = 0 configure:28954: result: yes configure:28958: checking stddef.h presence configure:28973: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:28979: $? = 0 configure:28993: result: yes configure:29026: checking for stddef.h configure:29034: result: yes configure:29062: checking stdio.h usability configure:29079: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:29085: $? = 0 configure:29099: result: yes configure:29103: checking stdio.h presence configure:29118: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:29124: $? = 0 configure:29138: result: yes configure:29171: checking for stdio.h configure:29179: result: yes configure:29197: checking for stdlib.h configure:29203: result: yes configure:29342: checking for string.h configure:29348: result: yes configure:29487: checking for strings.h configure:29493: result: yes configure:29642: checking sys/dir.h usability configure:29659: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:29665: $? = 0 configure:29679: result: yes configure:29683: checking sys/dir.h presence configure:29698: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:29704: $? = 0 configure:29718: result: yes configure:29751: checking for sys/dir.h configure:29759: result: yes configure:29787: checking sys/ioctl.h usability configure:29804: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:29810: $? = 0 configure:29824: result: yes configure:29828: checking sys/ioctl.h presence configure:29843: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:29849: $? = 0 configure:29863: result: yes configure:29896: checking for sys/ioctl.h configure:29904: result: yes configure:29932: checking sys/param.h usability configure:29949: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:29955: $? = 0 configure:29969: result: yes configure:29973: checking sys/param.h presence configure:29988: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:29994: $? = 0 configure:30008: result: yes configure:30041: checking for sys/param.h configure:30049: result: yes configure:30077: checking sys/poll.h usability configure:30094: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:30100: $? = 0 configure:30114: result: yes configure:30118: checking sys/poll.h presence configure:30133: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:30139: $? = 0 configure:30153: result: yes configure:30186: checking for sys/poll.h configure:30194: result: yes configure:30222: checking sys/resource.h usability configure:30239: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:30245: $? = 0 configure:30259: result: yes configure:30263: checking sys/resource.h presence configure:30278: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:30284: $? = 0 configure:30298: result: yes configure:30331: checking for sys/resource.h configure:30339: result: yes configure:30367: checking sys/select.h usability configure:30384: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:30390: $? = 0 configure:30404: result: yes configure:30408: checking sys/select.h presence configure:30423: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:30429: $? = 0 configure:30443: result: yes configure:30476: checking for sys/select.h configure:30484: result: yes configure:30512: checking sys/socket.h usability configure:30529: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:30535: $? = 0 configure:30549: result: yes configure:30553: checking sys/socket.h presence configure:30568: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:30574: $? = 0 configure:30588: result: yes configure:30621: checking for sys/socket.h configure:30629: result: yes configure:30657: checking sys/sockio.h usability configure:30674: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 conftest.c:119:24: error: sys/sockio.h: No such file or directory configure:30680: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_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:30694: result: no configure:30698: checking sys/sockio.h presence configure:30713: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c conftest.c:86:24: error: sys/sockio.h: No such file or directory configure:30719: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | /* end confdefs.h. */ | #include configure:30733: result: no configure:30766: checking for sys/sockio.h configure:30774: result: no configure:30792: checking for sys/stat.h configure:30798: result: yes configure:30947: checking sys/time.h usability configure:30964: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:30970: $? = 0 configure:30984: result: yes configure:30988: checking sys/time.h presence configure:31003: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:31009: $? = 0 configure:31023: result: yes configure:31056: checking for sys/time.h configure:31064: result: yes configure:31092: checking sys/timeb.h usability configure:31109: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:31115: $? = 0 configure:31129: result: yes configure:31133: checking sys/timeb.h presence configure:31148: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:31154: $? = 0 configure:31168: result: yes configure:31201: checking for sys/timeb.h configure:31209: result: yes configure:31227: checking for sys/types.h configure:31233: result: yes configure:31382: checking sys/uio.h usability configure:31399: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:31405: $? = 0 configure:31419: result: yes configure:31423: checking sys/uio.h presence configure:31438: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:31444: $? = 0 configure:31458: result: yes configure:31491: checking for sys/uio.h configure:31499: result: yes configure:31527: checking sys/un.h usability configure:31544: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:31550: $? = 0 configure:31564: result: yes configure:31568: checking sys/un.h presence configure:31583: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:31589: $? = 0 configure:31603: result: yes configure:31636: checking for sys/un.h configure:31644: result: yes configure:31672: checking sys/utsname.h usability configure:31689: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:31695: $? = 0 configure:31709: result: yes configure:31713: checking sys/utsname.h presence configure:31728: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:31734: $? = 0 configure:31748: result: yes configure:31781: checking for sys/utsname.h configure:31789: result: yes configure:31817: checking sys/wait.h usability configure:31834: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:31840: $? = 0 configure:31854: result: yes configure:31858: checking sys/wait.h presence configure:31873: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:31879: $? = 0 configure:31893: result: yes configure:31926: checking for sys/wait.h configure:31934: result: yes configure:31962: checking time.h usability configure:31979: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 configure:31985: $? = 0 configure:31999: result: yes configure:32003: checking time.h presence configure:32018: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c configure:32024: $? = 0 configure:32038: result: yes configure:32071: checking for time.h configure:32079: result: yes configure:32097: checking for unistd.h configure:32103: result: yes configure:32252: checking winsock.h usability configure:32269: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c >&5 conftest.c:129:21: error: winsock.h: No such file or directory configure:32275: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_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:32289: result: no configure:32293: checking winsock.h presence configure:32308: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c conftest.c:96:21: error: winsock.h: No such file or directory configure:32314: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include configure:32328: result: no configure:32361: checking for winsock.h configure:32369: result: no configure:32384: checking for special libxml2 includes configure:32392: result: -I/usr/include/libxml2 configure:32395: checking for xmlReadMemory in -lxml2 configure:32430: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 >&5 configure:32436: $? = 0 configure:32454: result: yes configure:32466: checking for xsltApplyStylesheet in -lxslt configure:32501: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include conftest.c -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 >&5 configure:32507: $? = 0 configure:32525: result: yes configure:32555: checking libxml/xpath.h usability configure:32572: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:32578: $? = 0 configure:32592: result: yes configure:32596: checking libxml/xpath.h presence configure:32611: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c configure:32617: $? = 0 configure:32631: result: yes configure:32664: checking for libxml/xpath.h configure:32672: result: yes configure:32700: checking libxslt/xslt.h usability configure:32717: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:32723: $? = 0 configure:32737: result: yes configure:32741: checking libxslt/xslt.h presence configure:32756: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c configure:32762: $? = 0 configure:32776: result: yes configure:32809: checking for libxslt/xslt.h configure:32817: result: yes configure:32842: checking for struct tm.tm_gmtoff configure:32871: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:32877: $? = 0 configure:32935: result: yes configure:32952: checking for g_log_set_default_handler configure:33008: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 >&5 configure:33014: $? = 0 configure:33032: result: yes configure:33046: checking for getopt configure:33102: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 >&5 configure:33108: $? = 0 configure:33126: result: yes configure:33142: checking for lt_dlopen in -lltdl configure:33177: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lltdl -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 >&5 configure:33183: $? = 0 configure:33201: result: yes configure:33230: Using installed ltdl configure:33255: checking bzlib.h usability configure:33272: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:33278: $? = 0 configure:33292: result: yes configure:33296: checking bzlib.h presence configure:33311: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c configure:33317: $? = 0 configure:33331: result: yes configure:33364: checking for bzlib.h configure:33372: result: yes configure:33386: checking for BZ2_bzBuffToBuffCompress in -lbz2 configure:33421: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lbz2 -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 -lltdl >&5 configure:33427: $? = 0 configure:33445: result: yes configure:33485: checking curses.h usability configure:33502: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:33508: $? = 0 configure:33522: result: yes configure:33526: checking curses.h presence configure:33541: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c configure:33547: $? = 0 configure:33561: result: yes configure:33594: checking for curses.h configure:33602: result: yes configure:33630: checking curses/curses.h usability configure:33647: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 conftest.c:140:27: error: curses/curses.h: No such file or directory configure:33653: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_LIBXML2 1 | #define HAVE_LIBXSLT 1 | #define HAVE_LIBXML_XPATH_H 1 | #define HAVE_LIBXSLT_XSLT_H 1 | #define HAVE_STRUCT_TM_TM_GMTOFF 1 | #define HAVE_G_LOG_SET_DEFAULT_HANDLER 1 | #define HAVE_GETOPT 1 | #define HAVE_DECL_GETOPT 1 | #define HAVE_BZLIB_H 1 | #define HAVE_LIBBZ2 1 | #define HAVE_CURSES_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:33667: result: no configure:33671: checking curses/curses.h presence configure:33686: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c conftest.c:107:27: error: curses/curses.h: No such file or directory configure:33692: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_LIBXML2 1 | #define HAVE_LIBXSLT 1 | #define HAVE_LIBXML_XPATH_H 1 | #define HAVE_LIBXSLT_XSLT_H 1 | #define HAVE_STRUCT_TM_TM_GMTOFF 1 | #define HAVE_G_LOG_SET_DEFAULT_HANDLER 1 | #define HAVE_GETOPT 1 | #define HAVE_DECL_GETOPT 1 | #define HAVE_BZLIB_H 1 | #define HAVE_LIBBZ2 1 | #define HAVE_CURSES_H 1 | /* end confdefs.h. */ | #include configure:33706: result: no configure:33739: checking for curses/curses.h configure:33747: result: no configure:33775: checking ncurses.h usability configure:33792: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:33798: $? = 0 configure:33812: result: yes configure:33816: checking ncurses.h presence configure:33831: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c configure:33837: $? = 0 configure:33851: result: yes configure:33884: checking for ncurses.h configure:33892: result: yes configure:33920: checking ncurses/ncurses.h usability configure:33937: gcc -std=gnu99 -c -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 conftest.c:141:29: error: ncurses/ncurses.h: No such file or directory configure:33943: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_LIBXML2 1 | #define HAVE_LIBXSLT 1 | #define HAVE_LIBXML_XPATH_H 1 | #define HAVE_LIBXSLT_XSLT_H 1 | #define HAVE_STRUCT_TM_TM_GMTOFF 1 | #define HAVE_G_LOG_SET_DEFAULT_HANDLER 1 | #define HAVE_GETOPT 1 | #define HAVE_DECL_GETOPT 1 | #define HAVE_BZLIB_H 1 | #define HAVE_LIBBZ2 1 | #define HAVE_CURSES_H 1 | #define HAVE_NCURSES_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:33957: result: no configure:33961: checking ncurses/ncurses.h presence configure:33976: gcc -std=gnu99 -E -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c conftest.c:108:29: error: ncurses/ncurses.h: No such file or directory configure:33982: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_LIBXML2 1 | #define HAVE_LIBXSLT 1 | #define HAVE_LIBXML_XPATH_H 1 | #define HAVE_LIBXSLT_XSLT_H 1 | #define HAVE_STRUCT_TM_TM_GMTOFF 1 | #define HAVE_G_LOG_SET_DEFAULT_HANDLER 1 | #define HAVE_GETOPT 1 | #define HAVE_DECL_GETOPT 1 | #define HAVE_BZLIB_H 1 | #define HAVE_LIBBZ2 1 | #define HAVE_CURSES_H 1 | #define HAVE_NCURSES_H 1 | /* end confdefs.h. */ | #include configure:33996: result: no configure:34029: checking for ncurses/ncurses.h configure:34037: result: no configure:34053: checking for printw in -lncurses configure:34088: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lncurses -lbz2 -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 -lltdl >&5 configure:34094: $? = 0 configure:34112: result: yes configure:22811: checking whether gcc -std=gnu99 supports "-Wcast-qual" configure:22822: gcc -std=gnu99 -c -Wcast-qual -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:22828: $? = 0 configure:22833: result: yes configure:22811: checking whether gcc -std=gnu99 supports "-Werror" configure:22822: gcc -std=gnu99 -c -Werror -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c >&5 configure:22828: $? = 0 configure:22833: result: yes configure:34349: checking whether printw() requires argument of "const char *" configure:34384: gcc -std=gnu99 -o conftest -Wcast-qual -Werror -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lncurses -lbz2 -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 -lltdl >&5 configure:34390: $? = 0 configure:34411: result: yes configure:34432: checking for PILLoadPlugin in -lpils configure:34467: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lpils -lbz2 -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 -lltdl >&5 /usr/bin/ld: cannot find -lpils collect2: ld returned 1 exit status configure:34473: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_LIBXML2 1 | #define HAVE_LIBXSLT 1 | #define HAVE_LIBXML_XPATH_H 1 | #define HAVE_LIBXSLT_XSLT_H 1 | #define HAVE_STRUCT_TM_TM_GMTOFF 1 | #define HAVE_G_LOG_SET_DEFAULT_HANDLER 1 | #define HAVE_GETOPT 1 | #define HAVE_DECL_GETOPT 1 | #define HAVE_BZLIB_H 1 | #define HAVE_LIBBZ2 1 | #define HAVE_CURSES_H 1 | #define HAVE_NCURSES_H 1 | #define HAVE_LIBNCURSES 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 PILLoadPlugin (); | int | main () | { | return PILLoadPlugin (); | ; | return 0; | } configure:34491: result: no configure:34503: checking for G_main_add_IPC_Channel in -lplumb configure:34538: gcc -std=gnu99 -o conftest -g -O2 -I/usr/local/linuxha/include/heartbeat -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 conftest.c -lplumb -lbz2 -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 -lltdl >&5 /usr/bin/ld: cannot find -lplumb collect2: ld returned 1 exit status configure:34544: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "pacemaker" | #define PACKAGE_TARNAME "pacemaker" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "pacemaker 1.0.5" | #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" | #define PACKAGE "pacemaker" | #define VERSION "1.0.5" | #define PACEMAKER_VERSION "1.0.5" | #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 HAVE_STRINGIZE 1 | #define SIZEOF_CHAR 1 | #define SIZEOF_SHORT 2 | #define SIZEOF_INT 4 | #define SIZEOF_LONG 8 | #define SIZEOF_LONG_LONG 8 | #define HAVE_STRUCT_TM_TM_ZONE 1 | #define HAVE_TM_ZONE 1 | #define ON_LINUX 1 | #define HA_LOG_FACILITY LOG_DAEMON | #define U64T "%lu" | #define HAVE_GLUE_CONFIG_H 1 | #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" | #define CRM_DTD_VERSION "1.0" | #define CRM_DAEMON_USER "linuxha" | #define CRM_DAEMON_GROUP "linuxha" | #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" | #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" | #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" | #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" | #define HA_STATE_DIR "/usr/local/linuxha/var/run" | #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" | #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" | #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" | #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" | #define VALGRIND_BIN "/usr/bin/valgrind" | #define HAVE_LIBDL 1 | #define HAVE_LIBRT 1 | #define HAVE_LIBUUID 1 | #define HAVE_LIBC 1 | #define STDC_HEADERS 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_ASM_TYPES_H 1 | #define HAVE_ASSERT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DIRENT_H 1 | #define HAVE_ERRNO_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GLIB_H 1 | #define HAVE_GRP_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LINUX_ERRQUEUE_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NETINET_IP_H 1 | #define HAVE_PTHREAD_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_DIR_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_POLL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TIMEB_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_UN_H 1 | #define HAVE_SYS_UTSNAME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TIME_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_LIBXML2 1 | #define HAVE_LIBXSLT 1 | #define HAVE_LIBXML_XPATH_H 1 | #define HAVE_LIBXSLT_XSLT_H 1 | #define HAVE_STRUCT_TM_TM_GMTOFF 1 | #define HAVE_G_LOG_SET_DEFAULT_HANDLER 1 | #define HAVE_GETOPT 1 | #define HAVE_DECL_GETOPT 1 | #define HAVE_BZLIB_H 1 | #define HAVE_LIBBZ2 1 | #define HAVE_CURSES_H 1 | #define HAVE_NCURSES_H 1 | #define HAVE_LIBNCURSES 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 G_main_add_IPC_Channel (); | int | main () | { | return G_main_add_IPC_Channel (); | ; | return 0; | } configure:34562: result: no configure:34576: error: Core Heartbeat utility libraries not found: no See `config.log' for more details. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-unknown-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_c_stringize=yes ac_cv_compatible_printw=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= 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_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_F77_set= ac_cv_env_F77_value= ac_cv_env_FFLAGS_set= ac_cv_env_FFLAGS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_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_f77_compiler_gnu=no ac_cv_func_dlopen=no ac_cv_func_g_log_set_default_handler=yes ac_cv_func_getopt=yes ac_cv_func_shl_load=no ac_cv_header_arpa_inet_h=yes ac_cv_header_asm_types_h=yes ac_cv_header_assert_h=yes ac_cv_header_auth_client_h=no ac_cv_header_bzlib_h=yes ac_cv_header_ctype_h=yes ac_cv_header_curses_curses_h=no ac_cv_header_curses_h=yes ac_cv_header_dirent_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_errno_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_getopt_h=yes ac_cv_header_glib_h=yes ac_cv_header_glue_config_h=yes ac_cv_header_grp_h=yes ac_cv_header_hb_config_h=no ac_cv_header_inttypes_h=yes ac_cv_header_libxml_xpath_h=yes ac_cv_header_libxslt_xslt_h=yes ac_cv_header_limits_h=yes ac_cv_header_linux_errqueue_h=yes ac_cv_header_malloc_h=yes ac_cv_header_memory_h=yes ac_cv_header_ncurses_h=yes ac_cv_header_ncurses_ncurses_h=no ac_cv_header_netdb_h=yes ac_cv_header_netinet_in_h=yes ac_cv_header_netinet_ip_h=yes ac_cv_header_pam_pam_appl_h=no ac_cv_header_pthread_h=yes ac_cv_header_pwd_h=yes ac_cv_header_security_pam_appl_h=no ac_cv_header_sgtty_h=yes ac_cv_header_signal_h=yes ac_cv_header_stdarg_h=yes ac_cv_header_stdc=yes ac_cv_header_stddef_h=yes ac_cv_header_stdint_h=yes ac_cv_header_stdio_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_dir_h=yes ac_cv_header_sys_ioctl_h=yes ac_cv_header_sys_param_h=yes ac_cv_header_sys_poll_h=yes ac_cv_header_sys_resource_h=yes ac_cv_header_sys_select_h=yes ac_cv_header_sys_socket_h=yes ac_cv_header_sys_sockio_h=no ac_cv_header_sys_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_timeb_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_sys_uio_h=yes ac_cv_header_sys_un_h=yes ac_cv_header_sys_utsname_h=yes ac_cv_header_sys_wait_h=yes ac_cv_header_time_h=yes ac_cv_header_unistd_h=yes ac_cv_header_winsock_h=no ac_cv_host=x86_64-unknown-linux-gnu ac_cv_lib_bz2_BZ2_bzBuffToBuffCompress=yes ac_cv_lib_c_dlopen=no ac_cv_lib_c_gettext=yes ac_cv_lib_crypto_CRYPTO_free=yes ac_cv_lib_dl_dlopen=yes ac_cv_lib_dld_shl_load=no ac_cv_lib_gnugetopt_getopt_long=no ac_cv_lib_ltdl_lt_dlopen=yes ac_cv_lib_ncurses_printw=yes ac_cv_lib_pam_pam_start=no ac_cv_lib_pils_PILLoadPlugin=no ac_cv_lib_plumb_G_main_add_IPC_Channel=no ac_cv_lib_rt_sched_getscheduler=yes ac_cv_lib_socket_socket=no ac_cv_lib_uuid_uuid_create=no ac_cv_lib_uuid_uuid_parse=yes ac_cv_lib_xml2_xmlReadMemory=yes ac_cv_lib_xslt_xsltApplyStylesheet=yes ac_cv_member_struct_tm_tm_gmtoff=yes ac_cv_member_struct_tm_tm_zone=yes ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_HG=/bin/false ac_cv_path_HTML2TXT=/usr/bin/w3m ac_cv_path_PKGCONFIG=/usr/bin/pkg-config ac_cv_path_POD2MAN=/usr/bin/pod2man ac_cv_path_PYTHON=/usr/bin/python ac_cv_path_SCP=/usr/bin/scp ac_cv_path_SSH=/usr/bin/ssh ac_cv_path_TAR=/bin/tar ac_cv_path_TEST=/usr/bin/test ac_cv_path_XML2CONFIG=/usr/bin/xml2-config ac_cv_path_install='/usr/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_CXXCPP='g++ -E' ac_cv_prog_LIBTOOL='$(SHELL) $(top_builddir)/libtool' ac_cv_prog_MAKE=make ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ 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_cc_stdc=-std=gnu99 ac_cv_prog_cxx_g=yes ac_cv_prog_f77_g=no ac_cv_prog_make_make_set=yes ac_cv_sizeof_char=1 ac_cv_sizeof_int=4 ac_cv_sizeof_long=8 ac_cv_sizeof_long_long=8 ac_cv_sizeof_short=2 ac_cv_struct_tm=time.h ac_cv_type_char=yes ac_cv_type_int=yes ac_cv_type_long=yes ac_cv_type_long_long=yes ac_cv_type_short=yes ac_cv_type_size_t=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 am_cv_python_platform=linux2 am_cv_python_pyexecdir='${exec_prefix}/lib/python2.5/site-packages' am_cv_python_pythondir='${prefix}/lib/python2.5/site-packages' am_cv_python_version=2.5 lt_cv_deplibs_check_method=pass_all lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl lt_cv_dlopen_self=yes lt_cv_dlopen_self_static=no lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64' lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_SED=/bin/sed lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_pic_works_CXX=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_compiler_static_works_CXX=yes lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\''' lt_cv_sys_lib_dlsearch_path_spec='/lib /usr/lib /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu ' lt_cv_sys_lib_search_path_spec='/usr/lib/gcc/x86_64-linux-gnu/4.3.2 /usr/lib /lib' lt_cv_sys_max_cmd_len=98304 lt_lt_cv_prog_compiler_c_o='"yes"' lt_lt_cv_prog_compiler_c_o_CXX='"yes"' lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"' lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/missing --run aclocal-1.10' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/missing --run tar' AR='ar' AUTOCONF='${SHELL} /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/missing --run autoconf' AUTOHEADER='${SHELL} /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/missing --run autoheader' AUTOMAKE='${SHELL} /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/missing --run automake-1.10' AWK='gawk' BUILD_AIS_SUPPORT_FALSE='' BUILD_AIS_SUPPORT_TRUE='' BUILD_HEARTBEAT_SUPPORT_FALSE='' BUILD_HEARTBEAT_SUPPORT_TRUE='' BUILD_HELP_FALSE='' BUILD_HELP_TRUE='#' BUILD_OPENIPMI_SERICELOG_FALSE='' BUILD_OPENIPMI_SERICELOG_TRUE='' BUILD_SERVICELOG_FALSE='' BUILD_SERVICELOG_TRUE='' BUILD_VERSION='462f1569a43740667daf7b0f6b521742e9eb8fa7' CC='gcc -std=gnu99' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2 -I/usr/local/linuxha/include/heartbeat' CFLAGS_COPY='' CLUSTERLIBS='' CPP='gcc -std=gnu99 -E' CPPFLAGS=' -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2' CRM_CONFIG_DIR='/usr/local/linuxha/var/lib/heartbeat/crm' CRM_DAEMON_DIR='/usr/local/linuxha/lib/heartbeat' CRM_DAEMON_GROUP='linuxha' CRM_DAEMON_USER='linuxha' CRM_DTD_DIRECTORY='/usr/local/linuxha/share/pacemaker' CRM_DTD_VERSION='1.0' CRM_STATE_DIR='/usr/local/linuxha/var/run/crm' CRYPTOLIB='-lcrypto' CURSESLIBS='-lncurses' CXX='g++' CXXCPP='g++ -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='' DEPDIR='.deps' DSYMUTIL='' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' ENABLE_ESMTP_FALSE='' ENABLE_ESMTP_TRUE='' ENABLE_SNMP_FALSE='' ENABLE_SNMP_TRUE='' ESMTPCONFIG='' ESMTPLIBS='' EXEEXT='' F77='' FFLAGS='' GCC_4_FALSE='' GCC_4_TRUE='' GNUTLSHEAD='' GNUTLSLIBS='' GREP='/bin/grep' HA_STATE_DIR='/usr/local/linuxha/var/run' HA_VARLIBHBDIR='/usr/local/linuxha/var/lib/heartbeat' HB_PKG='heartbeat' HELP2MAN='' HG='/bin/false' HTML2TXT='/usr/bin/w3m' INCLTDL='' INITDIR='/etc/init.d' INIT_EXT='' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LCRSODIR='/usr/local/linuxha/libexec/lcrso' LDFLAGS='' LIBADD_DL='-ldl' LIBADD_INTL='' LIBGNUTLS_CONFIG='' LIBLTDL='' LIBLTDL_DIR='' LIBOBJS='' LIBS='-lbz2 -lxslt -lxml2 -lc -luuid -lrt -ldl -lglib-2.0 -lltdl' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LN_S='ln -s' LOCALE='' LTLIBOBJS='' MAKE='make' MAKEINFO='${SHELL} /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/missing --run makeinfo' MD5='' NMEDIT='' NON_FATAL_CFLAGS='' OBJEXT='o' OCF_RA_DIR='/usr/lib/ocf/resource.d/' OCF_ROOT_DIR='/usr/lib/ocf' PACKAGE='pacemaker' PACKAGE_BUGREPORT='pacemaker@oss.clusterlabs.org' PACKAGE_NAME='pacemaker' PACKAGE_STRING='pacemaker 1.0.5' PACKAGE_TARNAME='pacemaker' PACKAGE_VERSION='1.0.5' PATH_SEPARATOR=':' PE_STATE_DIR='/usr/local/linuxha/var/lib/pengine' PKGCONFIG='/usr/bin/pkg-config' PKGNAME='LXHAhb' POD2MAN='/usr/bin/pod2man' PRETTY_CC='' PYTHON='/usr/bin/python' PYTHON_EXEC_PREFIX='${exec_prefix}' PYTHON_PLATFORM='linux2' PYTHON_PREFIX='${prefix}' PYTHON_VERSION='2.5' QUIET_LIBTOOL_OPTS='' QUIET_MAKE_OPTS='' RANLIB='ranlib' SCP='/usr/bin/scp' SED='/bin/sed' SET_MAKE='' SHELL='/bin/sh' SNMPCONFIG='' SNMPLIBS='' SSH='/usr/bin/ssh' STONITH_PLUGIN_DIR='/usr/local/linuxha/lib/stonith/plugins/stonith/' STRIP='strip' TAR='/bin/tar' TEST='/usr/bin/test' VALGRIND_BIN='/usr/bin/valgrind' VERSION='1.0.5' XML2CONFIG='/usr/bin/xml2-config' ac_ct_CC='gcc' ac_ct_CXX='g++' ac_ct_F77='' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='#' am__fastdepCXX_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='/usr/local/linuxha/bin' build='x86_64-unknown-linux-gnu' build_alias='' build_cpu='x86_64' build_os='linux-gnu' build_vendor='unknown' datadir='/usr/local/linuxha/share' datarootdir='${prefix}/share' docdir='/usr/local/linuxha/share/doc/pacemaker' dvidir='${docdir}' exec_prefix='/usr/local/linuxha' host='x86_64-unknown-linux-gnu' host_alias='' host_cpu='x86_64' host_os='linux-gnu' host_vendor='unknown' htmldir='${docdir}' includedir='/usr/local/linuxha/include' infodir='/usr/local/linuxha/share/info' install_sh='$(SHELL) /usr/src/HA/Pacemaker-1-0-Pacemaker-1.0.5/install-sh' libdir='/usr/local/linuxha/lib' libexecdir='/usr/local/linuxha/libexec' localedir='${datarootdir}/locale' localstatedir='/usr/local/linuxha/var' mandir='/usr/local/linuxha/share/man' mkdir_p='/bin/mkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' pkgpyexecdir='${pyexecdir}/pacemaker' pkgpythondir='${pythondir}/pacemaker' prefix='/usr/local/linuxha' program_transform_name='s,x,x,' psdir='${docdir}' pyexecdir='${exec_prefix}/lib/python2.5/site-packages' pythondir='${prefix}/lib/python2.5/site-packages' sbindir='/usr/local/linuxha/sbin' sharedstatedir='/usr/local/linuxha/com' subdirs='' sysconfdir='/usr/local/linuxha/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "pacemaker" #define PACKAGE_TARNAME "pacemaker" #define PACKAGE_VERSION "1.0.5" #define PACKAGE_STRING "pacemaker 1.0.5" #define PACKAGE_BUGREPORT "pacemaker@oss.clusterlabs.org" #define PACKAGE "pacemaker" #define VERSION "1.0.5" #define PACEMAKER_VERSION "1.0.5" #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 HAVE_STRINGIZE 1 #define SIZEOF_CHAR 1 #define SIZEOF_SHORT 2 #define SIZEOF_INT 4 #define SIZEOF_LONG 8 #define SIZEOF_LONG_LONG 8 #define HAVE_STRUCT_TM_TM_ZONE 1 #define HAVE_TM_ZONE 1 #define ON_LINUX 1 #define HA_LOG_FACILITY LOG_DAEMON #define U64T "%lu" #define HAVE_GLUE_CONFIG_H 1 #define CRM_DTD_DIRECTORY "/usr/local/linuxha/share/pacemaker" #define CRM_DTD_VERSION "1.0" #define CRM_DAEMON_USER "linuxha" #define CRM_DAEMON_GROUP "linuxha" #define CRM_STATE_DIR "/usr/local/linuxha/var/run/crm" #define PE_STATE_DIR "/usr/local/linuxha/var/lib/pengine" #define CRM_CONFIG_DIR "/usr/local/linuxha/var/lib/heartbeat/crm" #define CRM_DAEMON_DIR "/usr/local/linuxha/lib/heartbeat" #define HA_STATE_DIR "/usr/local/linuxha/var/run" #define UUID_FILE "/usr/local/linuxha/var/lib/heartbeat/hb_uuid" #define OCF_RA_DIR "/usr/lib/ocf/resource.d/" #define STONITH_PLUGIN_DIR "/usr/local/linuxha/lib/stonith/plugins/stonith/" #define BUILD_VERSION "462f1569a43740667daf7b0f6b521742e9eb8fa7" #define VALGRIND_BIN "/usr/bin/valgrind" #define HAVE_LIBDL 1 #define HAVE_LIBRT 1 #define HAVE_LIBUUID 1 #define HAVE_LIBC 1 #define STDC_HEADERS 1 #define HAVE_ARPA_INET_H 1 #define HAVE_ASM_TYPES_H 1 #define HAVE_ASSERT_H 1 #define HAVE_CTYPE_H 1 #define HAVE_DIRENT_H 1 #define HAVE_ERRNO_H 1 #define HAVE_FCNTL_H 1 #define HAVE_GETOPT_H 1 #define HAVE_GLIB_H 1 #define HAVE_GRP_H 1 #define HAVE_LIMITS_H 1 #define HAVE_LINUX_ERRQUEUE_H 1 #define HAVE_MALLOC_H 1 #define HAVE_NETDB_H 1 #define HAVE_NETINET_IN_H 1 #define HAVE_NETINET_IP_H 1 #define HAVE_PTHREAD_H 1 #define HAVE_PWD_H 1 #define HAVE_SGTTY_H 1 #define HAVE_SIGNAL_H 1 #define HAVE_STDARG_H 1 #define HAVE_STDDEF_H 1 #define HAVE_STDIO_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_STRINGS_H 1 #define HAVE_SYS_DIR_H 1 #define HAVE_SYS_IOCTL_H 1 #define HAVE_SYS_PARAM_H 1 #define HAVE_SYS_POLL_H 1 #define HAVE_SYS_RESOURCE_H 1 #define HAVE_SYS_SELECT_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYS_TIMEB_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_UIO_H 1 #define HAVE_SYS_UN_H 1 #define HAVE_SYS_UTSNAME_H 1 #define HAVE_SYS_WAIT_H 1 #define HAVE_TIME_H 1 #define HAVE_UNISTD_H 1 #define HAVE_LIBXML2 1 #define HAVE_LIBXSLT 1 #define HAVE_LIBXML_XPATH_H 1 #define HAVE_LIBXSLT_XSLT_H 1 #define HAVE_STRUCT_TM_TM_GMTOFF 1 #define HAVE_G_LOG_SET_DEFAULT_HANDLER 1 #define HAVE_GETOPT 1 #define HAVE_DECL_GETOPT 1 #define HAVE_BZLIB_H 1 #define HAVE_LIBBZ2 1 #define HAVE_CURSES_H 1 #define HAVE_NCURSES_H 1 #define HAVE_LIBNCURSES 1 configure: exit 1