This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by Device::SerialPort configure 1.04, which was generated by GNU Autoconf 2.61. Invocation command line was $ ./configure ## --------- ## ## Platform. ## ## --------- ## hostname = gcc20 uname -m = x86_64 uname -r = 3.2.0-4-amd64 uname -s = Linux uname -v = #1 SMP Debian 3.2.63-2+deb7u2 /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: /home/peko/host/usr/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/local/games PATH: /usr/games ## ----------- ## ## Core tests. ## ## ----------- ## configure:1739: checking for gcc configure:1755: found /usr/bin/gcc configure:1766: result: gcc configure:2004: checking for C compiler version configure:2011: gcc --version >&5 gcc (Debian 4.7.2-5) 4.7.2 Copyright (C) 2012 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:2014: $? = 0 configure:2021: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.7.2-5' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.7.2 (Debian 4.7.2-5) configure:2024: $? = 0 configure:2031: gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. configure:2034: $? = 4 configure:2057: checking for C compiler default output file name configure:2084: gcc conftest.c >&5 configure:2087: $? = 0 configure:2125: result: a.out configure:2142: checking whether the C compiler works configure:2152: ./a.out configure:2155: $? = 0 configure:2172: result: yes configure:2179: checking whether we are cross compiling configure:2181: result: no configure:2184: checking for suffix of executables configure:2191: gcc -o conftest conftest.c >&5 configure:2194: $? = 0 configure:2218: result: configure:2224: checking for suffix of object files configure:2250: gcc -c conftest.c >&5 configure:2253: $? = 0 configure:2276: result: o configure:2280: checking whether we are using the GNU C compiler configure:2309: gcc -c conftest.c >&5 configure:2315: $? = 0 configure:2332: result: yes configure:2337: checking whether gcc accepts -g configure:2367: gcc -c -g conftest.c >&5 configure:2373: $? = 0 configure:2472: result: yes configure:2489: checking for gcc option to accept ISO C89 configure:2563: gcc -c -g -O2 conftest.c >&5 configure:2569: $? = 0 configure:2592: result: none needed configure:2612: checking for gcc option to accept ISO C99 configure:2771: gcc -c -g -O2 conftest.c >&5 conftest.c:58:29: error: expected ';', ',' or ')' before 'text' conftest.c: In function 'main': conftest.c:112:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' 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 conftest.c:122:3: note: use option -std=c99 or -std=gnu99 to compile your code configure:2777: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | /* 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:2771: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:2777: $? = 0 configure:2807: result: -std=gnu99 configure:2937: checking for gcc -std=gnu99 option to accept ISO Standard C configure:2948: result: -std=gnu99 configure:2959: checking how to run the C preprocessor configure:2999: gcc -std=gnu99 -E conftest.c configure:3005: $? = 0 configure:3036: gcc -std=gnu99 -E conftest.c conftest.c:8:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:3042: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | /* end confdefs.h. */ | #include configure:3075: result: gcc -std=gnu99 -E configure:3104: gcc -std=gnu99 -E conftest.c configure:3110: $? = 0 configure:3141: gcc -std=gnu99 -E conftest.c conftest.c:8:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:3147: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | /* end confdefs.h. */ | #include configure:3185: checking for grep that handles long lines and -e configure:3259: result: /bin/grep configure:3264: checking for egrep configure:3342: result: /bin/grep -E configure:3347: checking for ANSI C header files configure:3377: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3383: $? = 0 configure:3482: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:3485: $? = 0 configure:3491: ./conftest configure:3494: $? = 0 configure:3511: result: yes configure:3521: checking for library containing strerror configure:3562: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:3568: $? = 0 configure:3596: result: none required configure:3619: checking for sys/types.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for sys/stat.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for stdlib.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for string.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for memory.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for strings.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for inttypes.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for stdint.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3619: checking for unistd.h configure:3640: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3646: $? = 0 configure:3662: result: yes configure:3689: checking sys/ioctl.h usability configure:3706: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3712: $? = 0 configure:3726: result: yes configure:3730: checking sys/ioctl.h presence configure:3745: gcc -std=gnu99 -E conftest.c configure:3751: $? = 0 configure:3765: result: yes configure:3798: checking for sys/ioctl.h configure:3806: result: yes configure:3833: checking termios.h usability configure:3850: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:3856: $? = 0 configure:3870: result: yes configure:3874: checking termios.h presence configure:3889: gcc -std=gnu99 -E conftest.c configure:3895: $? = 0 configure:3909: result: yes configure:3942: checking for termios.h configure:3950: result: yes configure:3977: checking sys/termiox.h usability configure:3994: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:53:25: fatal error: sys/termiox.h: No such file or directory compilation terminated. configure:4000: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_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:4014: result: no configure:4018: checking sys/termiox.h presence configure:4033: gcc -std=gnu99 -E conftest.c conftest.c:20:25: fatal error: sys/termiox.h: No such file or directory compilation terminated. configure:4039: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | /* end confdefs.h. */ | #include configure:4053: result: no configure:4086: checking for sys/termiox.h configure:4094: result: no configure:4121: checking sys/termios.h usability configure:4138: gcc -std=gnu99 -c -g -O2 conftest.c >&5 configure:4144: $? = 0 configure:4158: result: yes configure:4162: checking sys/termios.h presence configure:4177: gcc -std=gnu99 -E conftest.c configure:4183: $? = 0 configure:4197: result: yes configure:4230: checking for sys/termios.h configure:4238: result: yes configure:4265: checking sys/ttycom.h usability configure:4282: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:54:24: fatal error: sys/ttycom.h: No such file or directory compilation terminated. configure:4288: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_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:4302: result: no configure:4306: checking sys/ttycom.h presence configure:4321: gcc -std=gnu99 -E conftest.c conftest.c:21:24: fatal error: sys/ttycom.h: No such file or directory compilation terminated. configure:4327: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | #include configure:4341: result: no configure:4374: checking for sys/ttycom.h configure:4382: result: no configure:4409: checking sys/modem.h usability configure:4426: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:54:23: fatal error: sys/modem.h: No such file or directory compilation terminated. configure:4432: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_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:4446: result: no configure:4450: checking sys/modem.h presence configure:4465: gcc -std=gnu99 -E conftest.c conftest.c:21:23: fatal error: sys/modem.h: No such file or directory compilation terminated. configure:4471: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | #include configure:4485: result: no configure:4518: checking for sys/modem.h configure:4526: result: no configure:4553: checking IOKit/serial/ioss.h usability configure:4570: gcc -std=gnu99 -c -g -O2 conftest.c >&5 conftest.c:54:31: fatal error: IOKit/serial/ioss.h: No such file or directory compilation terminated. configure:4576: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_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:4590: result: no configure:4594: checking IOKit/serial/ioss.h presence configure:4609: gcc -std=gnu99 -E conftest.c conftest.c:21:31: fatal error: IOKit/serial/ioss.h: No such file or directory compilation terminated. configure:4615: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | #include configure:4629: result: no configure:4662: checking for IOKit/serial/ioss.h configure:4670: result: no configure:4708: checking definition of _SC_CLK_TCK configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCMBIS configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCMBIC configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCMGET configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of CRTSCTS configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of OCRNL configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of ONLCR configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of ECHOKE configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of ECHOCTL configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_CAR configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_CD configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_RNG configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_RI configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_CTS configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_DSR configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCMIWAIT configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCGICOUNT configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCINQ configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of FIONREAD configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCOUTQ configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCSER_TEMT configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_LE configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCSERGETLSR configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCSDTR configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:51:7: error: 'TIOCSDTR' undeclared (first use in this function) conftest.c:51:7: note: each undeclared identifier is reported only once for each function it appears in configure:4764: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | | #ifdef HAVE_UNISTD_H | # include | #endif | #ifdef HAVE_SYS_IOCTL_H | # include | #endif | #ifdef HAVE_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TERMIOX_H | # include | #endif | #ifdef HAVE_SYS_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TTYCOM_H | # include | #endif | #ifdef HAVE_SYS_MODEM_H | # include | #endif | #ifdef HAVE_IOKIT_SERIAL_IOSS_H | # include | #endif | | | int | main () | { | int a=TIOCSDTR | ; | return 0; | } | configure:4781: result: missing configure:4708: checking definition of TIOCCDTR configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:51:7: error: 'TIOCCDTR' undeclared (first use in this function) conftest.c:51:7: note: each undeclared identifier is reported only once for each function it appears in configure:4764: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | | #ifdef HAVE_UNISTD_H | # include | #endif | #ifdef HAVE_SYS_IOCTL_H | # include | #endif | #ifdef HAVE_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TERMIOX_H | # include | #endif | #ifdef HAVE_SYS_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TTYCOM_H | # include | #endif | #ifdef HAVE_SYS_MODEM_H | # include | #endif | #ifdef HAVE_IOKIT_SERIAL_IOSS_H | # include | #endif | | | int | main () | { | int a=TIOCCDTR | ; | return 0; | } | configure:4781: result: missing configure:4708: checking definition of TIOCM_RTS configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TIOCM_DTR configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of CTSXON configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:51:7: error: 'CTSXON' undeclared (first use in this function) conftest.c:51:7: note: each undeclared identifier is reported only once for each function it appears in configure:4764: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | | #ifdef HAVE_UNISTD_H | # include | #endif | #ifdef HAVE_SYS_IOCTL_H | # include | #endif | #ifdef HAVE_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TERMIOX_H | # include | #endif | #ifdef HAVE_SYS_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TTYCOM_H | # include | #endif | #ifdef HAVE_SYS_MODEM_H | # include | #endif | #ifdef HAVE_IOKIT_SERIAL_IOSS_H | # include | #endif | | | int | main () | { | int a=CTSXON | ; | return 0; | } | configure:4781: result: missing configure:4708: checking definition of RTSXOFF configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:51:7: error: 'RTSXOFF' undeclared (first use in this function) conftest.c:51:7: note: each undeclared identifier is reported only once for each function it appears in configure:4764: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | | #ifdef HAVE_UNISTD_H | # include | #endif | #ifdef HAVE_SYS_IOCTL_H | # include | #endif | #ifdef HAVE_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TERMIOX_H | # include | #endif | #ifdef HAVE_SYS_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TTYCOM_H | # include | #endif | #ifdef HAVE_SYS_MODEM_H | # include | #endif | #ifdef HAVE_IOKIT_SERIAL_IOSS_H | # include | #endif | | | int | main () | { | int a=RTSXOFF | ; | return 0; | } | configure:4781: result: missing configure:4708: checking definition of TCGETX configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of TCSETX configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of IOSSIOSPEED configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:51:7: error: 'IOSSIOSPEED' undeclared (first use in this function) conftest.c:51:7: note: each undeclared identifier is reported only once for each function it appears in configure:4764: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Device::SerialPort" | #define PACKAGE_TARNAME "device--serialport" | #define PACKAGE_VERSION "1.04" | #define PACKAGE_STRING "Device::SerialPort 1.04" | #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" | #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_SYS_IOCTL_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_SYS_TERMIOS_H 1 | /* end confdefs.h. */ | | #ifdef HAVE_UNISTD_H | # include | #endif | #ifdef HAVE_SYS_IOCTL_H | # include | #endif | #ifdef HAVE_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TERMIOX_H | # include | #endif | #ifdef HAVE_SYS_TERMIOS_H | # include | #endif | #ifdef HAVE_SYS_TTYCOM_H | # include | #endif | #ifdef HAVE_SYS_MODEM_H | # include | #endif | #ifdef HAVE_IOKIT_SERIAL_IOSS_H | # include | #endif | | | int | main () | { | int a=IOSSIOSPEED | ; | return 0; | } | configure:4781: result: missing configure:4708: checking definition of B0 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B50 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B75 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B110 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B134 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B150 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B200 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B300 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B600 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B1200 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B1800 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B2400 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B4800 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B9600 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B19200 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B38400 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B57600 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B115200 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B230400 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B460800 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B500000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B576000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B921600 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B1000000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B1152000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B1500000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B2000000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B2500000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B3000000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B3500000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4708: checking definition of B4000000 configure:4758: gcc -std=gnu99 -o conftest -g -O2 conftest.c >&5 configure:4764: $? = 0 configure:4772: result: found configure:4792: checking serial control via ioctl configure:4796: result: yes configure:4805: checking read/write of RTS signal configure:4810: result: yes configure:4819: checking read/write of DTR signal configure:4824: result: yes configure:4833: checking read access to modem lines configure:4836: result: yes configure:4845: checking read access to buffer status configure:4849: result: yes configure:4858: checking read access to serial line status configure:4861: result: yes configure:4870: checking normal CTS/RTS flow control configure:4881: result: yes configure:4985: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by Device::SerialPort config.status 1.04, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on gcc20 config.status:5525: creating config.h ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_c_compiler_gnu='yes' ac_cv_env_CC_set='' ac_cv_env_CC_value='' ac_cv_env_CFLAGS_set='' ac_cv_env_CFLAGS_value='' ac_cv_env_CPPFLAGS_set='' ac_cv_env_CPPFLAGS_value='' ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_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_header_IOKit_serial_ioss_h='no' ac_cv_header_inttypes_h='yes' ac_cv_header_memory_h='yes' ac_cv_header_stdc='yes' ac_cv_header_stdint_h='yes' ac_cv_header_stdlib_h='yes' ac_cv_header_string_h='yes' ac_cv_header_strings_h='yes' ac_cv_header_sys_ioctl_h='yes' ac_cv_header_sys_modem_h='no' ac_cv_header_sys_stat_h='yes' ac_cv_header_sys_termios_h='yes' ac_cv_header_sys_termiox_h='no' ac_cv_header_sys_ttycom_h='no' ac_cv_header_sys_types_h='yes' ac_cv_header_termios_h='yes' ac_cv_header_unistd_h='yes' ac_cv_objext='o' ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP='/bin/grep' ac_cv_prog_CPP='gcc -std=gnu99 -E' ac_cv_prog_ac_ct_CC='gcc' ac_cv_prog_cc_c89='' ac_cv_prog_cc_c99='-std=gnu99' ac_cv_prog_cc_g='yes' ac_cv_prog_cc_stdc='-std=gnu99' ac_cv_search_strerror='none required' ## ----------------- ## ## Output variables. ## ## ----------------- ## CC='gcc -std=gnu99' CFLAGS='-g -O2' CPP='gcc -std=gnu99 -E' CPPFLAGS='' DEFS='-DHAVE_CONFIG_H' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' GREP='/bin/grep' LDFLAGS='' LIBOBJS='' LIBS='' LTLIBOBJS='' OBJEXT='o' PACKAGE_BUGREPORT='devser-bugs@outflux.net' PACKAGE_NAME='Device::SerialPort' PACKAGE_STRING='Device::SerialPort 1.04' PACKAGE_TARNAME='device--serialport' PACKAGE_VERSION='1.04' PATH_SEPARATOR=':' SHELL='/bin/bash' ac_ct_CC='gcc' bindir='${exec_prefix}/bin' build_alias='' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host_alias='' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "Device::SerialPort" #define PACKAGE_TARNAME "device--serialport" #define PACKAGE_VERSION "1.04" #define PACKAGE_STRING "Device::SerialPort 1.04" #define PACKAGE_BUGREPORT "devser-bugs@outflux.net" #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_SYS_IOCTL_H 1 #define HAVE_TERMIOS_H 1 #define HAVE_SYS_TERMIOS_H 1 configure: exit 0