bug-autoconf
[Top][All Lists]
Advanced

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

Re: present but cannot be compiled (Was: Gnome 2.2.1 - ORBit2-2.6.1, con


From: Akim Demaille
Subject: Re: present but cannot be compiled (Was: Gnome 2.2.1 - ORBit2-2.6.1, configure)
Date: Wed, 14 May 2003 10:18:00 +0200
User-agent: Gnus/5.1001 (Gnus v5.10.1) Emacs/21.3 (gnu/linux)

Thanks for the bug report!

Unfortunately, the problem comes from the package itself, not from
Autoconf.  The configure.ac script needs to be updated.  Please, send
all this message (which your output attached) to the bug list (or the
authors) of the package you were trying to configure.

Below two parts of the Autoconf documentation are included: 1. the
documentation of AC_CHECK_HEADER(S), and 2. what's to be done to
upgrade configure.ac.

If you have some knowledge in C compilation, then there is something
more you can do to help: find out what are the prerequisite headers on
your system.

For instance, if the error message is:

       sys/socket.h: present but cannot be compiled
       sys/socket.h: check for missing prerequisite headers?
       sys/socket.h: proceeding with the preprocessor's result

then try to compile the program sample.c:

       #include <sys/socket.h>

with `cc -c sample.c'.  It will fail.  Then try to understand what
other headers are needed.  For instance, on Darwin, one needs:

       #include <stdio.h>
       #include <stdlib.h>
       #include <sys/socket.h>
       #include <sys/socket.h>

to get a successful compilation.  Then, send this additional
information to the package maintainers, together with a description of
your machine.

Thanks!

----------------------------------------------------------------------

Generic Header Checks
---------------------

   These macros are used to find system header files not covered by the
"particular" test macros.  If you need to check the contents of a header
as well as find out whether it is present, you have to write your own
test for it (*note Writing Tests::).

 - Macro: AC_CHECK_HEADER (HEADER-FILE, [ACTION-IF-FOUND],
          [ACTION-IF-NOT-FOUND], [INCLUDES = `default-includes'])
     If the system header file HEADER-FILE is compilable, execute shell
     commands ACTION-IF-FOUND, otherwise execute ACTION-IF-NOT-FOUND.
     If you just want to define a symbol if the header file is
     available, consider using `AC_CHECK_HEADERS' instead.

     For compatibility issues with older versions of Autoconf, please
     read below.

 - Macro: AC_CHECK_HEADERS (HEADER-FILE..., [ACTION-IF-FOUND],
          [ACTION-IF-NOT-FOUND], [INCLUDES = `default-includes'])
     For each given system header file HEADER-FILE in the
     whitespace-separated argument list that exists, define
     `HAVE_HEADER-FILE' (in all capitals).  If ACTION-IF-FOUND is
     given, it is additional shell code to execute when one of the
     header files is found.  You can give it a value of `break' to
     break out of the loop on the first match.  If ACTION-IF-NOT-FOUND
     is given, it is executed when one of the header files is not found.

     For compatibility issues with older versions of Autoconf, please
     read below.

   Previous versions of Autoconf merely checked whether the header was
accepted by the preprocessor.  This was changed because the old test was
inappropriate for typical uses.  Headers are typically used to compile,
not merely to preprocess, and the old behavior sometimes accepted
headers that clashed at compile-time.  If you need to check whether a
header is preprocessable, you can use `AC_PREPROC_IFELSE' (*note
Running the Preprocessor::).

   This scheme, which improves the robustness of the test, also requires
that you make sure that headers that must be included before the
HEADER-FILE be part of the INCLUDES, (*note Default Includes::).  If
looking for `bar.h', which requires that `foo.h' be included before if
it exists, we suggest the following scheme:


AC_CHECK_HEADERS([foo.h])
AC_CHECK_HEADERS([bar.h], [], [],
[#if HAVE_FOO_H
# include <foo.h>
# endif
])

----------------------------------------------------------------------

Header Present But Cannot Be Compiled
=====================================

   The most important guideline to bear in mind when checking for
features is to mimic as much as possible the intended use.
Unfortunately, old versions of `AC_CHECK_HEADER' and `AC_CHECK_HEADERS'
failed to follow this idea, and called the preprocessor, instead of the
compiler, to check for headers.  As a result, incompatibilities between
headers went unnoticed during configuration, and maintainers finally
had to deal with this issue elsewhere.

   As of Autoconf 2.56 both checks are performed, and `configure'
complains loudly if the compiler and the preprocessor do not agree.
For the time being the result used is that of the preprocessor, to give
maintainers time to adjust their `configure.ac', but in the near
future, only the compiler will be considered.

   Consider the following example:

     $ cat number.h
     typedef int number;
     $ cat pi.h
     const number pi = 3;
     $ cat configure.ac
     AC_INIT
     AC_CHECK_HEADERS(pi.h)
     $ autoconf -Wall
     $ ./configure
     checking for gcc... gcc
     checking for C compiler default output... a.out
     checking whether the C compiler works... yes
     checking whether we are cross compiling... no
     checking for suffix of executables...
     checking for suffix of object files... o
     checking whether we are using the GNU C compiler... yes
     checking whether gcc accepts -g... yes
     checking for gcc option to accept ANSI C... none needed
     checking how to run the C preprocessor... gcc -E
     checking for egrep... grep -E
     checking for ANSI C header files... yes
     checking for sys/types.h... yes
     checking for sys/stat.h... yes
     checking for stdlib.h... yes
     checking for string.h... yes
     checking for memory.h... yes
     checking for strings.h... yes
     checking for inttypes.h... yes
     checking for stdint.h... yes
     checking for unistd.h... yes
     checking pi.h usability... no
     checking pi.h presence... yes
     configure: WARNING: pi.h: present but cannot be compiled
     configure: WARNING: pi.h: check for missing prerequisite headers?
     configure: WARNING: pi.h: proceeding with the preprocessor's result
     configure: WARNING:     ## ------------------------------------ ##
     configure: WARNING:     ## Report this to address@hidden ##
     configure: WARNING:     ## ------------------------------------ ##
     checking for pi.h... yes

The proper way the handle this case is using the fourth argument (*note
Generic Headers::):

     $ cat configure.ac
     AC_INIT
     AC_CHECK_HEADERS(number.h pi.h,,,
     [[#if HAVE_NUMBER_H
     # include <number.h>
     #endif
     ]])
     $ autoconf -Wall
     $ ./configure
     checking for gcc... gcc
     checking for C compiler default output... a.out
     checking whether the C compiler works... yes
     checking whether we are cross compiling... no
     checking for suffix of executables...
     checking for suffix of object files... o
     checking whether we are using the GNU C compiler... yes
     checking whether gcc accepts -g... yes
     checking for gcc option to accept ANSI C... none needed
     checking for number.h... yes
     checking for pi.h... yes

   See *Note Particular Headers::, for a list of headers with their
prerequisite.

----------------------------------------------------------------------

Portability of Headers
----------------------

This section tries to collect knowledge about common headers, and the
problems they cause.  By definition, this list will always require
additions.  Please help us keeping it as complete as possible.

`inttypes.h' vs. `stdint.h'
     Paul Eggert notes that: ISO C 1999 says that `inttypes.h' includes
     `stdint.h', so there's no need to include `stdint.h' separately in
     a standard environment.  Many implementations have `inttypes.h'
     but not `stdint.h' (e.g., Solaris 7), but I don't know of any
     implementation that has `stdint.h' but not `inttypes.h'.  Nor do I
     know of any free software that includes `stdint.h'; `stdint.h'
     seems to be a creation of the committee.

`linux/irda.h'
     It requires `linux/types.h' and `sys/socket.h'.

`net/if.h'
     On Darwin, this file requires that `sys/socket.h' be included
     beforehand.  One should run:

          AC_CHECK_HEADERS([sys/socket.h])
          AC_CHECK_HEADERS([net/if.h], [], [],
          [#include <stdio.h>
          #if STDC_HEADERS
          # include <stdlib.h>
          # include <stddef.h>
          #else
          # if HAVE_STDLIB_H
          #  include <stdlib.h>
          # endif
          #endif
          #if HAVE_SYS_SOCKET_H
          # include <sys/socket.h>
          #endif
          ])

`stdint.h'
     See above, item `inttypes.h' vs. `stdint.h'.

`stdlib.h'
     On many systems (e.g., Darwin), `stdio.h' is a prerequisite.

`sys/socket.h'
     On Darwin, `stdlib.h' is a prerequisite.

`X11/extensions/scrnsaver.h'
     Using XFree86, this header requires `X11/Xlib.h', which is probably
     so required that you might not even consider looking for it.

          AC_CHECK_HEADERS([X11/extensions/scrnsaver.h], [], [],
          [[#include <X11/Xlib.h>
          ]])

----------------------------------------------------------------------
configure: WARNING: linux/irda.h: present but cannot be compiled
configure: WARNING: linux/irda.h: check for missing prerequisite headers?
configure: WARNING: linux/irda.h: proceeding with the preprocessor's result
configure: WARNING:     ## ------------------------------------ ##
configure: WARNING:     ## Report this to address@hidden ##
configure: WARNING:     ## ------------------------------------ ##

checking for linux/irda.h... yes
checking openssl/ssl.h usability... yes
checking openssl/ssl.h presence... yes
checking for openssl/ssl.h... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for size_t... yes
checking for vprintf... yes
checking for _doprnt... no
checking for socket... yes
checking for gethostbyname... yes
checking for poptStrippedArgv in -lpopt... yes
checking popt.h usability... yes
checking popt.h presence... yes
checking for popt.h... yes
checking whether byte ordering is bigendian... no
configure: error: Linking is badly borked on your system. Please
ensure your library path is correct                     Check
config.log for details - check near the end of the log above 'failed
program was'





This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.57.  Invocation command line was

  $ ./configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = solid
uname -m = i686
uname -r = 2.4.3aau6
uname -s = Linux
uname -v = #1 Wed Jun 13 14:54:48 EEST 2001

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = i686
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
hostinfo               = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/local/bin
PATH: /bin
PATH: /usr/bin
PATH: /opt/bin
PATH: /usr/X11R6/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1516: checking for a BSD-compatible install
configure:1570: result: /usr/bin/install -c
configure:1581: checking whether build environment is sane
configure:1624: result: yes
configure:1639: checking whether make sets $(MAKE)
configure:1659: result: yes
configure:1682: checking for working aclocal-1.4
configure:1693: result: missing
configure:1697: checking for working autoconf
configure:1704: result: found
configure:1712: checking for working automake-1.4
configure:1723: result: missing
configure:1727: checking for working autoheader
configure:1734: result: found
configure:1742: checking for working makeinfo
configure:1749: result: found
configure:1832: checking build system type
configure:1850: result: i686-pc-linux-gnu
configure:1858: checking host system type
configure:1872: result: i686-pc-linux-gnu
configure:1926: checking for gcc
configure:1942: found /usr/bin/gcc
configure:1952: result: gcc
configure:2196: checking for C compiler version
configure:2199: gcc --version </dev/null >&5
2.96
configure:2202: $? = 0
configure:2204: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-85)
configure:2207: $? = 0
configure:2209: gcc -V </dev/null >&5
gcc: argument to `-V' is missing
configure:2212: $? = 1
configure:2236: checking for C compiler default output
configure:2239: gcc    conftest.c  >&5
configure:2242: $? = 0
configure:2288: result: a.out
configure:2293: checking whether the C compiler works
configure:2299: ./a.out
configure:2302: $? = 0
configure:2319: result: yes
configure:2326: checking whether we are cross compiling
configure:2328: result: no
configure:2331: checking for suffix of executables
configure:2333: gcc -o conftest    conftest.c  >&5
configure:2336: $? = 0
configure:2361: result: 
configure:2367: checking for suffix of object files
configure:2389: gcc -c   conftest.c >&5
configure:2392: $? = 0
configure:2414: result: o
configure:2418: checking whether we are using the GNU C compiler
configure:2443: gcc -c   conftest.c >&5
configure:2446: $? = 0
configure:2449: test -s conftest.o
configure:2452: $? = 0
configure:2465: result: yes
configure:2471: checking whether gcc accepts -g
configure:2493: gcc -c -g  conftest.c >&5
configure:2496: $? = 0
configure:2499: test -s conftest.o
configure:2502: $? = 0
configure:2513: result: yes
configure:2530: checking for gcc option to accept ANSI C
configure:2591: gcc  -c -g -O2  conftest.c >&5
configure:2594: $? = 0
configure:2597: test -s conftest.o
configure:2600: $? = 0
configure:2618: result: none needed
configure:2636: gcc -c -g -O2  conftest.c >&5
conftest.c:2: parse error before `me'
configure:2639: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:2770: checking for ld used by GCC
configure:2833: result: /usr/bin/ld
configure:2842: checking if the linker (/usr/bin/ld) is GNU ld
GNU ld version 2.10.91 (with BFD 2.10.91.0.2)
configure:2854: result: yes
configure:2859: checking for /usr/bin/ld option to reload object files
configure:2866: result: -r
configure:2871: checking for BSD-compatible nm
configure:2907: result: /usr/bin/nm -B
configure:2910: checking for a sed that does not truncate output
configure:2992: result: /bin/sed
configure:2995: checking whether ln -s works
configure:2999: result: yes
configure:3006: checking how to recognise dependent libraries
configure:3187: result: pass_all
configure:3200: checking command to parse /usr/bin/nm -B output
configure:3284: gcc -c -g -O2  conftest.c >&5
configure:3287: $? = 0
configure:3291: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[  
]\([ABCDGISTW][ABCDGISTW]*\)[   ][      ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 
\2\3 \3/p' \> conftest.nm
configure:3294: $? = 0
configure:3346: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
configure:3349: $? = 0
configure:3393: result: ok
configure:3402: checking how to run the C preprocessor
configure:3438: gcc -E  conftest.c
configure:3444: $? = 0
configure:3476: gcc -E  conftest.c
configure:3475:28: ac_nonexistent.h: No such file or directory
configure:3482: $? = 1
configure: failed program was:
| #line 3467 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3520: result: gcc -E
configure:3545: gcc -E  conftest.c
configure:3551: $? = 0
configure:3583: gcc -E  conftest.c
configure:3582:28: ac_nonexistent.h: No such file or directory
configure:3589: $? = 1
configure: failed program was:
| #line 3574 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3632: checking for egrep
configure:3642: result: grep -E
configure:3647: checking for ANSI C header files
configure:3673: gcc -c -g -O2  conftest.c >&5
configure:3676: $? = 0
configure:3679: test -s conftest.o
configure:3682: $? = 0
configure:3771: gcc -o conftest -g -O2   conftest.c  >&5
configure:3774: $? = 0
configure:3776: ./conftest
configure:3779: $? = 0
configure:3794: result: yes
configure:3818: checking for sys/types.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for sys/stat.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for stdlib.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for string.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for memory.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for strings.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for inttypes.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for stdint.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3818: checking for unistd.h
configure:3835: gcc -c -g -O2  conftest.c >&5
configure:3838: $? = 0
configure:3841: test -s conftest.o
configure:3844: $? = 0
configure:3855: result: yes
configure:3881: checking dlfcn.h usability
configure:3894: gcc -c -g -O2  conftest.c >&5
configure:3897: $? = 0
configure:3900: test -s conftest.o
configure:3903: $? = 0
configure:3913: result: yes
configure:3917: checking dlfcn.h presence
configure:3928: gcc -E  conftest.c
configure:3934: $? = 0
configure:3953: result: yes
configure:3989: checking for dlfcn.h
configure:3996: result: yes
configure:4194: checking for ranlib
configure:4210: found /usr/bin/ranlib
configure:4221: result: ranlib
configure:4274: checking for strip
configure:4290: found /usr/bin/strip
configure:4301: result: strip
configure:4511: checking for objdir
configure:4522: result: .libs
configure:4539: checking for gcc option to produce PIC
configure:4685: result: -fPIC
configure:4689: checking if gcc PIC flag -fPIC works
configure:4713: gcc -c -g -O2 -fPIC -DPIC  conftest.c >&5
configure:4716: $? = 0
configure:4719: test -s conftest.o
configure:4722: $? = 0
configure:4760: result: yes
configure:4776: checking if gcc static flag -static works
configure:4801: gcc -o conftest -g -O2   -static conftest.c  >&5
configure:4804: $? = 0
configure:4807: test -s conftest
configure:4810: $? = 0
configure:4826: result: yes
configure:4838: checking if gcc supports -c -o file.o
configure:4861: gcc -c -g -O2 -o out/conftest2.o  conftest.c >&5
configure:4882: result: yes
configure:4887: checking if gcc supports -c -o file.lo
configure:4915: gcc -c -g -O2 -c -o conftest.lo  conftest.c >&5
configure:4918: $? = 0
configure:4921: test -s conftest.lo
configure:4924: $? = 0
configure:4946: result: yes
configure:4977: checking if gcc supports -fno-rtti -fno-exceptions
configure:5000: gcc -c -g -O2 -fno-rtti -fno-exceptions -c conftest.c  
conftest.c >&5
configure:5003: $? = 0
configure:5006: test -s conftest.o
configure:5009: $? = 0
configure:5026: result: yes
configure:5037: checking whether the linker (/usr/bin/ld) supports shared 
libraries
configure:5756: result: yes
configure:5761: checking how to hardcode library paths into programs
configure:5785: result: immediate
configure:5790: checking whether stripping libraries is possible
configure:5795: result: yes
configure:5806: checking dynamic linker characteristics
configure:6213: result: GNU/Linux ld.so
configure:6218: checking if libtool supports shared libraries
configure:6220: result: yes
configure:6223: checking whether to build shared libraries
configure:6244: result: yes
configure:6247: checking whether to build static libraries
configure:6251: result: yes
configure:6925: checking whether -lc should be explicitly linked in
configure:6933: gcc -c -g -O2  conftest.c >&5
configure:6936: $? = 0
configure:6950: gcc -shared conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 
2\>\&1 \| grep  -lc  \>/dev/null 2\>\&1
configure:6953: $? = 0
configure:6966: result: no
configure:7539: checking whether to enable maintainer-specific portions of 
Makefiles
configure:7548: result: no
configure:7563: checking for aclocal flags
configure:7572: result: 
configure:7622: checking for gcc
configure:7648: result: gcc
configure:7892: checking for C compiler version
configure:7895: gcc --version </dev/null >&5
2.96
configure:7898: $? = 0
configure:7900: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-85)
configure:7903: $? = 0
configure:7905: gcc -V </dev/null >&5
gcc: argument to `-V' is missing
configure:7908: $? = 1
configure:7911: checking whether we are using the GNU C compiler
configure:7958: result: yes
configure:7964: checking whether gcc accepts -g
configure:8006: result: yes
configure:8023: checking for gcc option to accept ANSI C
configure:8111: result: none needed
configure:8129: gcc -c -g -O2  conftest.c >&5
conftest.c:2: parse error before `me'
configure:8132: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:8253: checking for a BSD-compatible install
configure:8307: result: /usr/bin/install -c
configure:8353: checking for indentation command to pipe generated c-files 
through
configure:8374: result: indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st
configure:8402: checking for gawk
configure:8418: found /bin/gawk
configure:8428: result: gawk
configure:8448: checking for pkg-config
configure:8466: found /usr/local/bin/pkg-config
configure:8479: result: /usr/local/bin/pkg-config
configure:8557: checking for    linc >= 1.0.0   glib-2.0 >= 2.0.0       
gobject-2.0 >= 2.0.0    gmodule-2.0 >= 2.0.0
configure:8569: result: yes
configure:8573: checking ORBIT_CFLAGS
configure:8580: result: -pthread -I/usr/local/include/linc-1.0 
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include  
configure:8583: checking ORBIT_LIBS
configure:8590: result: -pthread -Wl,--export-dynamic -L/usr/local/lib -llinc 
-lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  
configure:8690: checking for    libIDL-2.0 >= 0.7.4     glib-2.0 >= 2.0.0       
gobject-2.0 >= 2.0.0    gmodule-2.0 >= 2.0.0
configure:8702: result: yes
configure:8706: checking ORBIT_IDL_CFLAGS
configure:8713: result: -I/usr/local/include/libIDL-2.0 
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include  
configure:8716: checking ORBIT_IDL_LIBS
configure:8723: result: -Wl,--export-dynamic -L/usr/local/lib -lIDL-2 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  
configure:8822: checking for    libIDL-2.0 >= 0.7.4     linc >= 1.0.0   
glib-2.0 >= 2.0.0
configure:8832: result: yes
configure:8836: checking ORBIT_NAME_CFLAGS
configure:8842: result: -pthread -I/usr/local/include/libIDL-2.0 
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include 
-I/usr/local/include/linc-1.0  
configure:8845: checking ORBIT_NAME_LIBS
configure:8851: result: -pthread -L/usr/local/lib -lIDL-2 -llinc -lgobject-2.0 
-lgthread-2.0 -lglib-2.0  
configure:8890: checking for ANSI C header files
configure:9037: result: yes
configure:9068: checking fcntl.h usability
configure:9081: gcc -c -g -O2  conftest.c >&5
configure:9084: $? = 0
configure:9087: test -s conftest.o
configure:9090: $? = 0
configure:9100: result: yes
configure:9104: checking fcntl.h presence
configure:9115: gcc -E  conftest.c
configure:9121: $? = 0
configure:9140: result: yes
configure:9176: checking for fcntl.h
configure:9183: result: yes
configure:9059: checking for unistd.h
configure:9064: result: yes
configure:9068: checking sys/endian.h usability
configure:9081: gcc -c -g -O2  conftest.c >&5
configure:9127:24: sys/endian.h: No such file or directory
configure:9084: $? = 1
configure: failed program was:
| #line 9070 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/endian.h>
configure:9100: result: no
configure:9104: checking sys/endian.h presence
configure:9115: gcc -E  conftest.c
configure:9129:24: sys/endian.h: No such file or directory
configure:9121: $? = 1
configure: failed program was:
| #line 9106 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <sys/endian.h>
configure:9140: result: no
configure:9176: checking for sys/endian.h
configure:9183: result: no
configure:9068: checking endian.h usability
configure:9081: gcc -c -g -O2  conftest.c >&5
configure:9084: $? = 0
configure:9087: test -s conftest.o
configure:9090: $? = 0
configure:9100: result: yes
configure:9104: checking endian.h presence
configure:9115: gcc -E  conftest.c
configure:9121: $? = 0
configure:9140: result: yes
configure:9176: checking for endian.h
configure:9183: result: yes
configure:9068: checking machine/endian.h usability
configure:9081: gcc -c -g -O2  conftest.c >&5
configure:9128:28: machine/endian.h: No such file or directory
configure:9084: $? = 1
configure: failed program was:
| #line 9070 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <machine/endian.h>
configure:9100: result: no
configure:9104: checking machine/endian.h presence
configure:9115: gcc -E  conftest.c
configure:9130:28: machine/endian.h: No such file or directory
configure:9121: $? = 1
configure: failed program was:
| #line 9106 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h.  */
| #include <machine/endian.h>
configure:9140: result: no
configure:9176: checking for machine/endian.h
configure:9183: result: no
configure:9068: checking sys/machine.h usability
configure:9081: gcc -c -g -O2  conftest.c >&5
configure:9128:25: sys/machine.h: No such file or directory
configure:9084: $? = 1
configure: failed program was:
| #line 9070 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/machine.h>
configure:9100: result: no
configure:9104: checking sys/machine.h presence
configure:9115: gcc -E  conftest.c
configure:9130:25: sys/machine.h: No such file or directory
configure:9121: $? = 1
configure: failed program was:
| #line 9106 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h.  */
| #include <sys/machine.h>
configure:9140: result: no
configure:9176: checking for sys/machine.h
configure:9183: result: no
configure:9068: checking sys/isa_defs.h usability
configure:9081: gcc -c -g -O2  conftest.c >&5
configure:9128:26: sys/isa_defs.h: No such file or directory
configure:9084: $? = 1
configure: failed program was:
| #line 9070 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/isa_defs.h>
configure:9100: result: no
configure:9104: checking sys/isa_defs.h presence
configure:9115: gcc -E  conftest.c
configure:9130:26: sys/isa_defs.h: No such file or directory
configure:9121: $? = 1
configure: failed program was:
| #line 9106 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| /* end confdefs.h.  */
| #include <sys/isa_defs.h>
configure:9140: result: no
configure:9176: checking for sys/isa_defs.h
configure:9183: result: no
configure:9068: checking sys/poll.h usability
configure:9081: gcc -c -g -O2  conftest.c >&5
configure:9084: $? = 0
configure:9087: test -s conftest.o
configure:9090: $? = 0
configure:9100: result: yes
configure:9104: checking sys/poll.h presence
configure:9115: gcc -E  conftest.c
configure:9121: $? = 0
configure:9140: result: yes
configure:9176: checking for sys/poll.h
configure:9183: result: yes
configure:9214: checking stddef.h usability
configure:9227: gcc -c -g -O2  conftest.c >&5
configure:9230: $? = 0
configure:9233: test -s conftest.o
configure:9236: $? = 0
configure:9246: result: yes
configure:9250: checking stddef.h presence
configure:9261: gcc -E  conftest.c
configure:9267: $? = 0
configure:9286: result: yes
configure:9322: checking for stddef.h
configure:9329: result: yes
configure:9214: checking wchar.h usability
configure:9227: gcc -c -g -O2  conftest.c >&5
configure:9230: $? = 0
configure:9233: test -s conftest.o
configure:9236: $? = 0
configure:9246: result: yes
configure:9250: checking wchar.h presence
configure:9261: gcc -E  conftest.c
configure:9267: $? = 0
configure:9286: result: yes
configure:9322: checking for wchar.h
configure:9329: result: yes
configure:9214: checking wcstr.h usability
configure:9227: gcc -c -g -O2  conftest.c >&5
configure:9277:19: wcstr.h: No such file or directory
configure:9230: $? = 1
configure: failed program was:
| #line 9216 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <wcstr.h>
configure:9246: result: no
configure:9250: checking wcstr.h presence
configure:9261: gcc -E  conftest.c
configure:9279:19: wcstr.h: No such file or directory
configure:9267: $? = 1
configure: failed program was:
| #line 9252 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| /* end confdefs.h.  */
| #include <wcstr.h>
configure:9286: result: no
configure:9322: checking for wcstr.h
configure:9329: result: no
configure:9214: checking wctype.h usability
configure:9227: gcc -c -g -O2  conftest.c >&5
configure:9230: $? = 0
configure:9233: test -s conftest.o
configure:9236: $? = 0
configure:9246: result: yes
configure:9250: checking wctype.h presence
configure:9261: gcc -E  conftest.c
configure:9267: $? = 0
configure:9286: result: yes
configure:9322: checking for wctype.h
configure:9329: result: yes
configure:9214: checking machine/types.h usability
configure:9227: gcc -c -g -O2  conftest.c >&5
configure:9278:27: machine/types.h: No such file or directory
configure:9230: $? = 1
configure: failed program was:
| #line 9216 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <machine/types.h>
configure:9246: result: no
configure:9250: checking machine/types.h presence
configure:9261: gcc -E  conftest.c
configure:9280:27: machine/types.h: No such file or directory
configure:9267: $? = 1
configure: failed program was:
| #line 9252 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| /* end confdefs.h.  */
| #include <machine/types.h>
configure:9286: result: no
configure:9322: checking for machine/types.h
configure:9329: result: no
configure:9359: checking netinet/in.h usability
configure:9372: gcc -c -g -O2  conftest.c >&5
configure:9375: $? = 0
configure:9378: test -s conftest.o
configure:9381: $? = 0
configure:9391: result: yes
configure:9395: checking netinet/in.h presence
configure:9406: gcc -E  conftest.c
configure:9412: $? = 0
configure:9431: result: yes
configure:9467: checking for netinet/in.h
configure:9474: result: yes
configure:9359: checking sys/un.h usability
configure:9372: gcc -c -g -O2  conftest.c >&5
configure:9375: $? = 0
configure:9378: test -s conftest.o
configure:9381: $? = 0
configure:9391: result: yes
configure:9395: checking sys/un.h presence
configure:9406: gcc -E  conftest.c
configure:9412: $? = 0
configure:9431: result: yes
configure:9467: checking for sys/un.h
configure:9474: result: yes
configure:9359: checking linux/irda.h usability
configure:9372: gcc -c -g -O2  conftest.c >&5
In file included from configure:9425:
/usr/include/linux/irda.h:109: parse error before `sa_family_t'
/usr/include/linux/irda.h:109: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:110: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:111: parse error before `sir_addr'
/usr/include/linux/irda.h:111: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:113: parse error before `}'
/usr/include/linux/irda.h:116: parse error before `__u32'
/usr/include/linux/irda.h:116: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:117: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:119: parse error before `charset'
/usr/include/linux/irda.h:119: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:120: parse error before `hints'
/usr/include/linux/irda.h:120: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:121: parse error before `}'
/usr/include/linux/irda.h:124: parse error before `__u32'
/usr/include/linux/irda.h:124: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:126: parse error before `}'
/usr/include/linux/irda.h:136: parse error before `__u8'
/usr/include/linux/irda.h:136: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:136: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:136: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:137: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:139: parse error before `__u8'
/usr/include/linux/irda.h:139: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:140: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:141: parse error before `string'
/usr/include/linux/irda.h:141: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:142: parse error before `}'
/usr/include/linux/irda.h:142: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:143: parse error before `}'
/usr/include/linux/irda.h:143: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:144: parse error before `daddr'
/usr/include/linux/irda.h:144: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:175: parse error before `__u8'
/usr/include/linux/irda.h:175: warning: no semicolon at end of struct or union
/usr/include/linux/irda.h:176: warning: data definition has no type or storage 
class
/usr/include/linux/irda.h:187: field `ifru_line' has incomplete type
/usr/include/linux/irda.h:194: confused by earlier errors, bailing out
configure:9375: $? = 1
configure: failed program was:
| #line 9361 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_SYS_UN_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <linux/irda.h>
configure:9391: result: no
configure:9395: checking linux/irda.h presence
configure:9406: gcc -E  conftest.c
configure:9412: $? = 0
configure:9431: result: yes
configure:9451: WARNING: linux/irda.h: present but cannot be compiled
configure:9453: WARNING: linux/irda.h: check for missing prerequisite headers?
configure:9455: WARNING: linux/irda.h: proceeding with the preprocessor's result
configure:9467: checking for linux/irda.h
configure:9474: result: yes
configure:9359: checking openssl/ssl.h usability
configure:9372: gcc -c -g -O2  conftest.c >&5
configure:9375: $? = 0
configure:9378: test -s conftest.o
configure:9381: $? = 0
configure:9391: result: yes
configure:9395: checking openssl/ssl.h presence
configure:9406: gcc -E  conftest.c
configure:9412: $? = 0
configure:9431: result: yes
configure:9467: checking for openssl/ssl.h
configure:9474: result: yes
configure:9493: checking for an ANSI C-conforming const
configure:9561: gcc -c -g -O2  conftest.c >&5
configure:9564: $? = 0
configure:9567: test -s conftest.o
configure:9570: $? = 0
configure:9581: result: yes
configure:9591: checking for inline
configure:9613: gcc -c -g -O2  conftest.c >&5
configure:9616: $? = 0
configure:9619: test -s conftest.o
configure:9622: $? = 0
configure:9634: result: inline
configure:9649: checking for size_t
configure:9674: gcc -c -g -O2  conftest.c >&5
configure:9677: $? = 0
configure:9680: test -s conftest.o
configure:9683: $? = 0
configure:9694: result: yes
configure:9711: checking for vprintf
configure:9761: gcc -o conftest -g -O2   conftest.c  >&5
configure:9764: $? = 0
configure:9767: test -s conftest
configure:9770: $? = 0
configure:9781: result: yes
configure:9788: checking for _doprnt
configure:9838: gcc -o conftest -g -O2   conftest.c  >&5
/tmp/cc5UWwkH.o: In function `main':
/usr/local/ORBit2-2.6.1/configure:9858: undefined reference to `_doprnt'
/usr/local/ORBit2-2.6.1/configure:9858: undefined reference to `_doprnt'
collect2: ld returned 1 exit status
configure:9841: $? = 1
configure: failed program was:
| #line 9793 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_LINUX_IRDA_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char _doprnt (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char _doprnt ();
| /* 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__doprnt) || defined (__stub____doprnt)
| choke me
| #else
| char (*f) () = _doprnt;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != _doprnt;
|   ;
|   return 0;
| }
configure:9858: result: no
configure:9873: checking for socket
configure:9923: gcc -o conftest -g -O2   conftest.c  >&5
configure:9926: $? = 0
configure:9929: test -s conftest
configure:9932: $? = 0
configure:9943: result: yes
configure:10014: checking for gethostbyname
configure:10064: gcc -o conftest -g -O2   conftest.c  >&5
configure:10067: $? = 0
configure:10070: test -s conftest
configure:10073: $? = 0
configure:10084: result: yes
configure:10156: checking for poptStrippedArgv in -lpopt
configure:10187: gcc -o conftest -g -O2   conftest.c -lpopt   >&5
configure:10190: $? = 0
configure:10193: test -s conftest
configure:10196: $? = 0
configure:10208: result: yes
configure:10229: checking popt.h usability
configure:10242: gcc -c -g -O2  conftest.c >&5
configure:10245: $? = 0
configure:10248: test -s conftest.o
configure:10251: $? = 0
configure:10261: result: yes
configure:10265: checking popt.h presence
configure:10276: gcc -E  conftest.c
configure:10282: $? = 0
configure:10301: result: yes
configure:10337: checking for popt.h
configure:10344: result: yes
configure:10358: checking whether byte ordering is bigendian
configure:10386: gcc -c -g -O2  conftest.c >&5
configure:10389: $? = 0
configure:10392: test -s conftest.o
configure:10395: $? = 0
configure:10420: gcc -c -g -O2  conftest.c >&5
configure: In function `main':
configure:10438: `not' undeclared (first use in this function)
configure:10438: (Each undeclared identifier is reported only once
configure:10438: for each function it appears in.)
configure:10438: parse error before `big'
configure:10423: $? = 1
configure: failed program was:
| #line 10398 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_LINUX_IRDA_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
|  not big endian
| #endif
| 
|   ;
|   return 0;
| }
configure:10543: result: no
configure:10587: gcc -o conftest -g -O2   conftest.c -pthread 
-Wl,--export-dynamic -L/usr/local/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0    >&5
configure:10590: $? = 0
configure:10592: ./conftest
./conftest: error while loading shared libraries: liblinc.so.1: cannot open 
shared object file: No such file or directory
configure:10595: $? = 127
configure: program exited with status 127
configure: failed program was:
| #line 10573 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ENDIAN_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_SYS_UN_H 1
| #define HAVE_LINUX_IRDA_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_VPRINTF 1
| /* end confdefs.h.  */
|  #include <stdio.h>
|              main ()
|              {
|                return 0;
|              }
configure:10605: error: Linking is badly borked on your system. Please ensure 
your library path is correct                      Check config.log for details 
- check near the end of the log above 'failed program was'

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
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_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_exeext=
ac_cv_func__doprnt=no
ac_cv_func_gethostbyname=yes
ac_cv_func_socket=yes
ac_cv_func_vprintf=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_endian_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_linux_irda_h=yes
ac_cv_header_machine_endian_h=no
ac_cv_header_machine_types_h=no
ac_cv_header_memory_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_openssl_ssl_h=yes
ac_cv_header_popt_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_endian_h=no
ac_cv_header_sys_isa_defs_h=no
ac_cv_header_sys_machine_h=no
ac_cv_header_sys_poll_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_un_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_wchar_h=yes
ac_cv_header_wcstr_h=no
ac_cv_header_wctype_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_host_alias=i686-pc-linux-gnu
ac_cv_lib_popt_poptStrippedArgv=yes
ac_cv_objext=o
ac_cv_orbit_aclocal_flags=
ac_cv_path_PKG_CONFIG=/usr/local/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_egrep='grep -E'
ac_cv_prog_make_make_set=yes
ac_cv_type_size_t=yes
lt_cv_archive_cmds_need_lc=no
lt_cv_compiler_c_o=yes
lt_cv_compiler_o_lo=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file='/lib/libc.so.6 /lib/libc-2.2.4.so'
lt_cv_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_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern char 
\1;/p'\'''
lt_cv_ld_reload_flag=-r
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/bin/sed
lt_cv_prog_cc_can_build_shared=yes
lt_cv_prog_cc_no_builtin=
lt_cv_prog_cc_pic=' -fPIC'
lt_cv_prog_cc_pic_works=yes
lt_cv_prog_cc_shlib=
lt_cv_prog_cc_static=-static
lt_cv_prog_cc_static_works=yes
lt_cv_prog_cc_wl=-Wl,
lt_cv_prog_gnu_ld=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[      
]\([ABCDGISTW][ABCDGISTW]*\)[   ][      ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 
\2\3 \3/p'\'''

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='/usr/local/ORBit2-2.6.1/missing aclocal-1.4 '
AUTOCONF='autoconf'
AUTOHEADER='autoheader'
AUTOMAKE='/usr/local/ORBit2-2.6.1/missing automake-1.4'
AWK='gawk'
CC='gcc'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
DEFS=''
DISABLE_DEPRECATED_CFLAGS=''
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
GLIB_REQUIRED='2.0.0'
HAVE_ORBIT_SSL_SUPPORT='1'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LDFLAGS=''
LIBIDL_REQUIRED='0.7.4'
LIBOBJS=''
LIBS='-pthread -Wl,--export-dynamic -L/usr/local/lib -llinc -lgthread-2.0 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LINC_REQUIRED='1.0.0'
LN_S='ln -s'
LTLIBOBJS=''
LT_VERSION='0:0:0'
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='makeinfo'
OBJEXT='o'
ORBIT_ALIGNOF_CORBA_BOOLEAN=''
ORBIT_ALIGNOF_CORBA_CHAR=''
ORBIT_ALIGNOF_CORBA_DOUBLE=''
ORBIT_ALIGNOF_CORBA_FLOAT=''
ORBIT_ALIGNOF_CORBA_LONG=''
ORBIT_ALIGNOF_CORBA_LONG_DOUBLE=''
ORBIT_ALIGNOF_CORBA_LONG_LONG=''
ORBIT_ALIGNOF_CORBA_OCTET=''
ORBIT_ALIGNOF_CORBA_POINTER=''
ORBIT_ALIGNOF_CORBA_SHORT=''
ORBIT_ALIGNOF_CORBA_STRUCT=''
ORBIT_ALIGNOF_CORBA_WCHAR=''
ORBIT_CFLAGS='-pthread -I/usr/local/include/linc-1.0 
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include  '
ORBIT_DEBUG_CFLAGS=''
ORBIT_IDL_CFLAGS='-I/usr/local/include/libIDL-2.0 -I/usr/local/include/glib-2.0 
-I/usr/local/lib/glib-2.0/include  '
ORBIT_IDL_LIBS='-Wl,--export-dynamic -L/usr/local/lib -lIDL-2 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0  '
ORBIT_LIBS='-pthread -Wl,--export-dynamic -L/usr/local/lib -llinc -lgthread-2.0 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  '
ORBIT_MAJOR_VERSION='2'
ORBIT_MICRO_VERSION='1'
ORBIT_MINOR_VERSION='6'
ORBIT_NAME_CFLAGS='-pthread -I/usr/local/include/libIDL-2.0 
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include 
-I/usr/local/include/linc-1.0  '
ORBIT_NAME_LIBS='-pthread -L/usr/local/lib -lIDL-2 -llinc -lgobject-2.0 
-lgthread-2.0 -lglib-2.0  '
ORBIT_SERIAL='19'
ORBIT_VERSION='2.6.1'
PACKAGE='ORBit2'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/local/bin/pkg-config'
POPT_LIBS='-lpopt'
RANLIB='ranlib'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
VERSION='2.6.1'
WARN_CFLAGS=''
ac_ct_CC='gcc'
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${prefix}/share'
exec_prefix='NONE'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
includedir='${prefix}/include'
infodir='${prefix}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
pkglibdir=''
prefix='NONE'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define HAVE_DLFCN_H 1
#define HAVE_ENDIAN_H 1
#define HAVE_FCNTL_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LINUX_IRDA_H 1
#define HAVE_MEMORY_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_OPENSSL_SSL_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_POLL_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UN_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_VPRINTF 1
#define HAVE_WCHAR_H 1
#define HAVE_WCTYPE_H 1
#define INDENT_COMMAND "indent -npro -bad -bap -bc -sob -br -ce -cli2 -npcs 
-di1 -psl -i3 -lp -st"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define STDC_HEADERS 1
#define STDC_HEADERS 1

configure: exit 1




reply via email to

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