This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by usmb configure 20090411, which was generated by GNU Autoconf 2.63. Invocation command line was $ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --build=i686-uhu-linux --host=i686-uhu-linux --disable-static CFLAGS=-O2 -march=i686 -mtune=generic ## --------- ## ## Platform. ## ## --------- ## hostname = hp06 uname -m = i686 uname -r = 3.15.0-rc8-2.i386 uname -s = Linux uname -v = #2 SMP Thu Jun 5 11:08:29 UTC 2014 /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/lib/uhubuild PATH: /usr/lib/ccache PATH: /sbin PATH: /usr/sbin PATH: /bin PATH: /usr/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1853: checking for i686-uhu-linux-gcc configure:1869: found /usr/bin/i686-uhu-linux-gcc configure:1880: result: i686-uhu-linux-gcc configure:2152: checking for C compiler version configure:2160: i686-uhu-linux-gcc --version >&5 i686-uhu-linux-gcc (GCC) 4.8.3 Copyright (C) 2013 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:2164: $? = 0 configure:2171: i686-uhu-linux-gcc -v >&5 Using built-in specs. COLLECT_GCC=i686-uhu-linux-gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-uhu-linux/4.8.3/lto-wrapper Target: i686-uhu-linux Configured with: /var/uhubuild/work/compile/configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --build=i686-uhu-linux --host=i686-uhu-linux --target=i686-uhu-linux --enable-languages=c,c++,objc,java,fortran --enable-shared --enable-targets=all --disable-multilib --with-gnu-as --with-gnu-ld --with-system-zlib --with-arch-32=i686 --with-arch-64=core2 --with-cpu-32=i686 --with-cpu-64=core2 --with-tune=generic Thread model: posix gcc version 4.8.3 (GCC) configure:2175: $? = 0 configure:2182: i686-uhu-linux-gcc -V >&5 i686-uhu-linux-gcc: error: unrecognized command line option '-V' i686-uhu-linux-gcc: fatal error: no input files compilation terminated. configure:2186: $? = 1 configure:2209: checking for C compiler default output file name configure:2231: i686-uhu-linux-gcc -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2235: $? = 0 configure:2273: result: a.out configure:2292: checking whether the C compiler works configure:2302: ./a.out configure:2306: $? = 0 configure:2325: result: yes configure:2332: checking whether we are cross compiling configure:2334: result: no configure:2337: checking for suffix of executables configure:2344: i686-uhu-linux-gcc -o conftest -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2348: $? = 0 configure:2374: result: configure:2380: checking for suffix of object files configure:2406: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2410: $? = 0 configure:2435: result: o configure:2439: checking whether we are using the GNU C compiler configure:2468: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2475: $? = 0 configure:2492: result: yes configure:2501: checking whether i686-uhu-linux-gcc accepts -g configure:2531: i686-uhu-linux-gcc -c -g conftest.c >&5 configure:2538: $? = 0 configure:2639: result: yes configure:2656: checking for i686-uhu-linux-gcc option to accept ISO C89 configure:2730: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2737: $? = 0 configure:2760: result: none needed configure:2778: checking for i686-uhu-linux-gcc option to accept ISO C99 configure:2937: i686-uhu-linux-gcc -c -O2 -march=i686 -mtune=generic conftest.c >&5 conftest.c:58:29: error: expected ';', ',' or ')' before 'text' test_restrict (ccp restrict text) ^ conftest.c: In function 'main': conftest.c:112:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' char *restrict newvar = "Another string"; ^ conftest.c:112:18: error: 'newvar' undeclared (first use in this function) conftest.c:112:18: note: each undeclared identifier is reported only once for each function it appears in conftest.c:122:3: error: 'for' loop initial declarations are only allowed in C99 mode for (int i = 0; i < ia->datasize; ++i) ^ conftest.c:122:3: note: use option -std=c99 or -std=gnu99 to compile your code configure:2944: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | /* 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:2937: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic conftest.c >&5 configure:2944: $? = 0 configure:2974: result: -std=gnu99 configure:3025: checking for a BSD-compatible install configure:3093: result: /bin/install -c configure:3104: checking for a thread-safe mkdir -p configure:3143: result: /bin/mkdir -p configure:3146: checking for a sed that does not truncate output configure:3212: result: /bin/sed configure:3252: checking for smbc_init in -lsmbclient configure:3287: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient >&5 configure:3294: $? = 0 configure:3315: result: yes configure:3331: checking for smbc_getFunctionStatVFS in -lsmbclient configure:3366: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient -lsmbclient >&5 configure:3373: $? = 0 configure:3394: result: yes configure:3406: checking for smbc_getFunctionOpen in -lsmbclient configure:3441: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient -lsmbclient >&5 configure:3448: $? = 0 configure:3469: result: yes configure:3496: checking for i686-uhu-linux-pkg-config configure:3529: result: no configure:3539: checking for pkg-config configure:3557: found /usr/bin/pkg-config configure:3569: result: /usr/bin/pkg-config configure:3594: checking pkg-config is at least version 0.9.0 configure:3597: result: yes configure:3608: checking for LIBXML2 configure:3615: $PKG_CONFIG --exists --print-errors "libxml-2.0" configure:3618: $? = 0 configure:3631: $PKG_CONFIG --exists --print-errors "libxml-2.0" configure:3634: $? = 0 configure:3711: result: yes configure:3717: checking for GLIB configure:3724: $PKG_CONFIG --exists --print-errors "glib-2.0" configure:3727: $? = 0 configure:3740: $PKG_CONFIG --exists --print-errors "glib-2.0" configure:3743: $? = 0 configure:3820: result: yes configure:3826: checking for FUSE configure:3833: $PKG_CONFIG --exists --print-errors "fuse" configure:3836: $? = 0 configure:3849: $PKG_CONFIG --exists --print-errors "fuse" configure:3852: $? = 0 configure:3929: result: yes configure:3941: checking how to run the C preprocessor configure:3981: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:3988: $? = 0 configure:4019: i686-uhu-linux-gcc -std=gnu99 -E conftest.c conftest.c:15:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:4026: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | #define _BSD_SOURCE /**/ | #define FUSE_USE_VERSION 26 | #define UNUSED __attribute__ ((unused)) | #define MUSTCHECK __attribute__ ((warn_unused_result)) | #define HAVE_LIBSMBCLIENT 1 | #define HAVE_SAMBA33 /**/ | #define HAVE_SAMBA32 /**/ | /* end confdefs.h. */ | #include configure:4059: result: i686-uhu-linux-gcc -std=gnu99 -E configure:4088: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:4095: $? = 0 configure:4126: i686-uhu-linux-gcc -std=gnu99 -E conftest.c conftest.c:15:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:4133: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | #define _BSD_SOURCE /**/ | #define FUSE_USE_VERSION 26 | #define UNUSED __attribute__ ((unused)) | #define MUSTCHECK __attribute__ ((warn_unused_result)) | #define HAVE_LIBSMBCLIENT 1 | #define HAVE_SAMBA33 /**/ | #define HAVE_SAMBA32 /**/ | /* end confdefs.h. */ | #include configure:4173: checking for grep that handles long lines and -e configure:4233: result: /bin/grep configure:4238: checking for egrep configure:4302: result: /bin/grep -E configure:4307: checking for ANSI C header files configure:4337: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4344: $? = 0 configure:4443: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient >&5 configure:4447: $? = 0 configure:4453: ./conftest configure:4457: $? = 0 configure:4475: result: yes configure:4499: checking for sys/types.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for sys/stat.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for stdlib.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for string.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for memory.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for strings.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for inttypes.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for stdint.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4499: checking for unistd.h configure:4520: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4527: $? = 0 configure:4544: result: yes configure:4582: checking fcntl.h usability configure:4599: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4606: $? = 0 configure:4620: result: yes configure:4624: checking fcntl.h presence configure:4639: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:4646: $? = 0 configure:4660: result: yes configure:4688: checking for fcntl.h configure:4697: result: yes configure:4582: checking limits.h usability configure:4599: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4606: $? = 0 configure:4620: result: yes configure:4624: checking limits.h presence configure:4639: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:4646: $? = 0 configure:4660: result: yes configure:4688: checking for limits.h configure:4697: result: yes configure:4582: checking stddef.h usability configure:4599: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4606: $? = 0 configure:4620: result: yes configure:4624: checking stddef.h presence configure:4639: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:4646: $? = 0 configure:4660: result: yes configure:4688: checking for stddef.h configure:4697: result: yes configure:4571: checking for stdlib.h configure:4578: result: yes configure:4571: checking for string.h configure:4578: result: yes configure:4582: checking sys/time.h usability configure:4599: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4606: $? = 0 configure:4620: result: yes configure:4624: checking sys/time.h presence configure:4639: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:4646: $? = 0 configure:4660: result: yes configure:4688: checking for sys/time.h configure:4697: result: yes configure:4582: checking termios.h usability configure:4599: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4606: $? = 0 configure:4620: result: yes configure:4624: checking termios.h presence configure:4639: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:4646: $? = 0 configure:4660: result: yes configure:4688: checking for termios.h configure:4697: result: yes configure:4571: checking for unistd.h configure:4578: result: yes configure:4582: checking utime.h usability configure:4599: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4606: $? = 0 configure:4620: result: yes configure:4624: checking utime.h presence configure:4639: i686-uhu-linux-gcc -std=gnu99 -E conftest.c configure:4646: $? = 0 configure:4660: result: yes configure:4688: checking for utime.h configure:4697: result: yes configure:4714: checking for stdbool.h that conforms to C99 configure:4809: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 conftest.c:61:2: warning: the address of 's' will always evaluate as 'true' [-Waddress] bool e = &s; ^ conftest.c: In function 'main': conftest.c:105:10: warning: the address of 'a' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:105:15: warning: the address of 'b' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:105:20: warning: the address of 'c' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:105:25: warning: the address of 'd' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:105:35: warning: the address of 'f' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:105:40: warning: the address of 'g' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:105:45: warning: the address of 'h' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:105:50: warning: the address of 'i' will always evaluate as 'true' [-Waddress] return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l ^ conftest.c:106:10: warning: the address of 'n' will always evaluate as 'true' [-Waddress] ^ conftest.c:106:15: warning: the address of 'o' will always evaluate as 'true' [-Waddress] ^ conftest.c:106:20: warning: the address of 'p' will always evaluate as 'true' [-Waddress] ^ configure:4816: $? = 0 configure:4831: result: yes configure:4833: checking for _Bool configure:4861: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4868: $? = 0 configure:4895: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 conftest.c: In function 'main': conftest.c:70:20: error: expected expression before ')' token if (sizeof ((_Bool))) ^ configure:4902: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | #define _BSD_SOURCE /**/ | #define FUSE_USE_VERSION 26 | #define UNUSED __attribute__ ((unused)) | #define MUSTCHECK __attribute__ ((warn_unused_result)) | #define HAVE_LIBSMBCLIENT 1 | #define HAVE_SAMBA33 /**/ | #define HAVE_SAMBA32 /**/ | #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_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((_Bool))) | return 0; | ; | return 0; | } configure:4925: result: yes configure:4944: checking for inline configure:4970: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:4977: $? = 0 configure:4995: result: inline configure:5014: checking for mode_t configure:5042: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:5049: $? = 0 configure:5076: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 conftest.c: In function 'main': conftest.c:72:21: error: expected expression before ')' token if (sizeof ((mode_t))) ^ configure:5083: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | #define _BSD_SOURCE /**/ | #define FUSE_USE_VERSION 26 | #define UNUSED __attribute__ ((unused)) | #define MUSTCHECK __attribute__ ((warn_unused_result)) | #define HAVE_LIBSMBCLIENT 1 | #define HAVE_SAMBA33 /**/ | #define HAVE_SAMBA32 /**/ | #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_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((mode_t))) | return 0; | ; | return 0; | } configure:5106: result: yes configure:5118: checking for off_t configure:5146: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:5153: $? = 0 configure:5180: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 conftest.c: In function 'main': conftest.c:72:20: error: expected expression before ')' token if (sizeof ((off_t))) ^ configure:5187: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | #define _BSD_SOURCE /**/ | #define FUSE_USE_VERSION 26 | #define UNUSED __attribute__ ((unused)) | #define MUSTCHECK __attribute__ ((warn_unused_result)) | #define HAVE_LIBSMBCLIENT 1 | #define HAVE_SAMBA33 /**/ | #define HAVE_SAMBA32 /**/ | #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_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((off_t))) | return 0; | ; | return 0; | } configure:5210: result: yes configure:5222: checking for size_t configure:5250: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:5257: $? = 0 configure:5284: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 conftest.c: In function 'main': conftest.c:72:21: error: expected expression before ')' token if (sizeof ((size_t))) ^ configure:5291: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | #define _BSD_SOURCE /**/ | #define FUSE_USE_VERSION 26 | #define UNUSED __attribute__ ((unused)) | #define MUSTCHECK __attribute__ ((warn_unused_result)) | #define HAVE_LIBSMBCLIENT 1 | #define HAVE_SAMBA33 /**/ | #define HAVE_SAMBA32 /**/ | #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_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((size_t))) | return 0; | ; | return 0; | } configure:5314: result: yes configure:5326: checking for uid_t in sys/types.h configure:5349: result: yes configure:5365: checking for uint64_t configure:5396: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 conftest.c: In function 'main': conftest.c:72:12: warning: variable 'test_array' set but not used [-Wunused-but-set-variable] static int test_array [1 - 2 * !((uint64_t) -1 >> (64 - 1) == 1)]; ^ configure:5403: $? = 0 configure:5424: result: yes configure:5441: checking for ptrdiff_t configure:5469: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 configure:5476: $? = 0 configure:5503: i686-uhu-linux-gcc -std=gnu99 -c -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c >&5 conftest.c: In function 'main': conftest.c:72:24: error: expected expression before ')' token if (sizeof ((ptrdiff_t))) ^ configure:5510: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "usmb" | #define PACKAGE_TARNAME "usmb" | #define PACKAGE_VERSION "20090411" | #define PACKAGE_STRING "usmb 20090411" | #define PACKAGE_BUGREPORT "" | #define _BSD_SOURCE /**/ | #define FUSE_USE_VERSION 26 | #define UNUSED __attribute__ ((unused)) | #define MUSTCHECK __attribute__ ((warn_unused_result)) | #define HAVE_LIBSMBCLIENT 1 | #define HAVE_SAMBA33 /**/ | #define HAVE_SAMBA32 /**/ | #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_FCNTL_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UTIME_H 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((ptrdiff_t))) | return 0; | ; | return 0; | } configure:5533: result: yes configure:5551: checking for stdlib.h configure:5558: result: yes configure:5692: checking for GNU libc compatible malloc configure:5726: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient >&5 configure:5730: $? = 0 configure:5736: ./conftest configure:5740: $? = 0 configure:5757: result: yes configure:5790: checking for stdlib.h configure:5797: result: yes configure:5931: checking for GNU libc compatible realloc configure:5965: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient >&5 configure:5969: $? = 0 configure:5975: ./conftest configure:5979: $? = 0 configure:5996: result: yes configure:6030: checking for memset configure:6086: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient >&5 conftest.c:64:6: warning: conflicting types for built-in function 'memset' [enabled by default] char memset (); ^ configure:6093: $? = 0 configure:6115: result: yes configure:6030: checking for strchr configure:6086: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient >&5 conftest.c:65:6: warning: conflicting types for built-in function 'strchr' [enabled by default] char strchr (); ^ configure:6093: $? = 0 configure:6115: result: yes configure:6030: checking for strerror configure:6086: i686-uhu-linux-gcc -std=gnu99 -o conftest -O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic conftest.c -lsmbclient >&5 configure:6093: $? = 0 configure:6115: result: yes configure:6232: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by usmb config.status 20090411, which was generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on hp06 config.status:762: creating Makefile config.status:762: creating config.h configure:7377: WARNING: unrecognized options: --enable-shared, --disable-static ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_compiler_gnu=yes ac_cv_c_inline=inline ac_cv_c_uint64_t=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -march=i686 -mtune=generic ' ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_FUSE_CFLAGS_set= ac_cv_env_FUSE_CFLAGS_value= ac_cv_env_FUSE_LIBS_set= ac_cv_env_FUSE_LIBS_value= ac_cv_env_GLIB_CFLAGS_set= ac_cv_env_GLIB_CFLAGS_value= ac_cv_env_GLIB_LIBS_set= ac_cv_env_GLIB_LIBS_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LIBXML2_CFLAGS_set= ac_cv_env_LIBXML2_CFLAGS_value= ac_cv_env_LIBXML2_LIBS_set= ac_cv_env_LIBXML2_LIBS_value= ac_cv_env_PKG_CONFIG_set= ac_cv_env_PKG_CONFIG_value= ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i686-uhu-linux ac_cv_env_host_alias_set=set ac_cv_env_host_alias_value=i686-uhu-linux ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_func_malloc_0_nonnull=yes ac_cv_func_memset=yes ac_cv_func_realloc_0_nonnull=yes ac_cv_func_strchr=yes ac_cv_func_strerror=yes ac_cv_header_fcntl_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_limits_h=yes ac_cv_header_memory_h=yes ac_cv_header_stdbool_h=yes ac_cv_header_stdc=yes ac_cv_header_stddef_h=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_termios_h=yes ac_cv_header_unistd_h=yes ac_cv_header_utime_h=yes ac_cv_lib_smbclient_smbc_getFunctionOpen=yes ac_cv_lib_smbclient_smbc_getFunctionStatVFS=yes ac_cv_lib_smbclient_smbc_init=yes ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_SED=/bin/sed ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config ac_cv_path_install='/bin/install -c' ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_CC=i686-uhu-linux-gcc ac_cv_prog_CPP='i686-uhu-linux-gcc -std=gnu99 -E' ac_cv_prog_cc_c89= ac_cv_prog_cc_c99=-std=gnu99 ac_cv_prog_cc_g=yes ac_cv_type__Bool=yes ac_cv_type_mode_t=yes ac_cv_type_off_t=yes ac_cv_type_ptrdiff_t=yes ac_cv_type_size_t=yes ac_cv_type_uid_t=yes pkg_cv_FUSE_CFLAGS='-D_FILE_OFFSET_BITS=64 -I/usr/include/fuse ' pkg_cv_FUSE_LIBS='-lfuse -pthread ' pkg_cv_GLIB_CFLAGS='-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include ' pkg_cv_GLIB_LIBS='-lglib-2.0 ' pkg_cv_LIBXML2_CFLAGS='-I/usr/include/libxml2 ' pkg_cv_LIBXML2_LIBS='-lxml2 ' ## ----------------- ## ## Output variables. ## ## ----------------- ## CC='i686-uhu-linux-gcc -std=gnu99' CFLAGS='-O2 -march=i686 -mtune=generic -Wall -Wextra -pedantic' CPP='i686-uhu-linux-gcc -std=gnu99 -E' CPPFLAGS='' DEFS='-DHAVE_CONFIG_H' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' FUSE_CFLAGS='-D_FILE_OFFSET_BITS=64 -I/usr/include/fuse ' FUSE_LIBS='-lfuse -pthread ' GLIB_CFLAGS='-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include ' GLIB_LIBS='-lglib-2.0 ' GREP='/bin/grep' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' LDFLAGS='' LIBOBJS='' LIBS='-lsmbclient ' LIBXML2_CFLAGS='-I/usr/include/libxml2 ' LIBXML2_LIBS='-lxml2 ' LTLIBOBJS='' MKDIR_P='/bin/mkdir -p' OBJEXT='o' PACKAGE_BUGREPORT='' PACKAGE_NAME='usmb' PACKAGE_STRING='usmb 20090411' PACKAGE_TARNAME='usmb' PACKAGE_VERSION='20090411' PATH_SEPARATOR=':' PKG_CONFIG='/usr/bin/pkg-config' SAMBA_VERSION='33' SED='/bin/sed' SHELL='/bin/sh' ac_ct_CC='' bindir='${exec_prefix}/bin' build_alias='i686-uhu-linux' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host_alias='i686-uhu-linux' htmldir='${docdir}' includedir='${prefix}/include' infodir='/usr/share/info' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='/var' mandir='/usr/share/man' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "usmb" #define PACKAGE_TARNAME "usmb" #define PACKAGE_VERSION "20090411" #define PACKAGE_STRING "usmb 20090411" #define PACKAGE_BUGREPORT "" #define _BSD_SOURCE /**/ #define FUSE_USE_VERSION 26 #define UNUSED __attribute__ ((unused)) #define MUSTCHECK __attribute__ ((warn_unused_result)) #define HAVE_LIBSMBCLIENT 1 #define HAVE_SAMBA33 /**/ #define HAVE_SAMBA32 /**/ #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_FCNTL_H 1 #define HAVE_LIMITS_H 1 #define HAVE_STDDEF_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_TERMIOS_H 1 #define HAVE_UNISTD_H 1 #define HAVE_UTIME_H 1 #define HAVE__BOOL 1 #define HAVE_STDBOOL_H 1 #define HAVE_PTRDIFF_T 1 #define HAVE_STDLIB_H 1 #define HAVE_MALLOC 1 #define HAVE_STDLIB_H 1 #define HAVE_REALLOC 1 #define HAVE_MEMSET 1 #define HAVE_STRCHR 1 #define HAVE_STRERROR 1 configure: exit 0