[omniORB] Trouble building OmniOrb 4.1.4 on Linux

Igor Polonsky polonsig at yahoo.com
Wed Apr 28 21:05:28 BST 2010


Great thanks to Duncan and Tom for their most useful hints!

I've now managed to make and install the ORB.

It turned out that the main problems were caused by a few stupid errors on my part.  But that's not surprising for a guy who last did any Unix development 6.5 years ago.  Let me describe my adventures to you.

- First, I hadn't realized that the configure script would produce a config.log file. That's not mentioned in README.unix, unfortunately.  When Duncan asked me for a log file, I thought he meant a stdout redirect from the configure command.  But then I accidentally saw the "real" config.log, which is of course highly detailed and helpful.

- From the config.log file, I could see right away that a lot of the tests couldn't run because the C++ runtime shared library could not be found.  That was because I had failed to set LD_LIBRARY_PATH in my shell profile.  I had naively expected the configure script to set that variable automatically, since it knew where the gcc executable file lived.   Once I'd set that variable in my .profile, configure was able to do a much better job.  All the problems with numeric type sizes were now gone.

- But make was still failing.  The compiler (preprocessor) could not find some Python-related header files.  It turned out that the default Python installation on my box didn't have any includes.  So I pointed the configure script to a more complete installation of Python via the PYTHON parameter.  The help output implies that this parameter only sets the Python executable.  But somehow my setting it also helped the script to set the include directories right.  After that, it generated a set of files in the build directory that were good enough for make to do its job.

That said, I still see a few failed tests in config.log, which have to do with the lack of some floating point support functions and some socket-related structs.  I'm attaching the log file.  I'd really appreciate if you guys could take a look at it and let me know if any of these issues may create problems for me at run time.

Another question: I see quite a few compiler warning in the output produced by make.  I think that's Ok for a large and dynamic project.  But some of the warnings are of a kind that I personally try hard to avoid:

../../../../../omniORB-4.1.4/include/omniORB4/internal/initialiser.h:66:
warning: 'class omni::omniInitialiser' has virtual functions but non-virtual destructor
../../../../../omniORB-4.1.4/include/omniORB4/omniInterceptors.h:330:
warning: 'class omni::omniInterceptors::createThread_T::info_T' has virtual functions but non-virtual destructor
../../../../../omniORB-4.1.4/include/omniORB4/omniInterceptors.h:345:
warning: 'class omni::omniInterceptors::assignUpcallThread_T::info_T'has virtual functions but non-virtual destructor
../../../../../omniORB-4.1.4/src/lib/omniORB/orbcore/giopImpl10.cc:1681:
warning: 'class omni::omni_giopImpl10_initialiser' has virtual functions but non-virtual destructor

I'd appreciate your opinion on this issue.

Thanks,

Igor


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

It was created by omniORB configure 4.1.4, which was
generated by GNU Autoconf 2.63.  Invocation command line was

  $ ../omniORB-4.1.4/configure --prefix=/Net/devuser/nbkor9k/temp/omni/install PYTHON=/binlib/vndr/Python-2.5.2/bin/python2.5

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

hostname = lonlsd01
uname -m = i686
uname -r = 2.4.21-40.ELsmp
uname -s = Linux
uname -v = #1 SMP Thu Feb 2 22:22:39 EST 2006

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

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

PATH: .
PATH: /binlib/vndr/gcc-4.0.0/bin
PATH: /usr/kerberos/bin
PATH: /usr/local/bin
PATH: /bin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /binlib/vndr/sybase/bin
PATH: /binlib/vndr/inprise/ias/bin


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

configure:1900: checking build system type
configure:1918: result: i686-pc-linux-gnu
configure:1940: checking host system type
configure:1955: result: i686-pc-linux-gnu
configure:2041: checking for gcc
configure:2057: found /binlib/vndr/gcc-4.0.0/bin/gcc
configure:2068: result: gcc
configure:2300: checking for C compiler version
configure:2308: gcc --version >&5
gcc (GCC) 4.0.0
Copyright (C) 2005 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:2312: $? = 0
configure:2319: gcc -v >&5
Using built-in specs.
Target: i686-pc-linux-gnu
Configured with: ../gcc-4.0.0-src/configure --prefix=/binlib/vndr/gcc-4.0.0 --enable-threads
Thread model: posix
gcc version 4.0.0
configure:2323: $? = 0
configure:2330: gcc -V >&5
gcc: '-V' option must have argument
configure:2334: $? = 1
configure:2357: checking for C compiler default output file name
configure:2379: gcc -O   conftest.c  >&5
configure:2383: $? = 0
configure:2421: result: a.out
configure:2440: checking whether the C compiler works
configure:2450: ./a.out
configure:2454: $? = 0
configure:2473: result: yes
configure:2480: checking whether we are cross compiling
configure:2482: result: no
configure:2485: checking for suffix of executables
configure:2492: gcc -o conftest -O   conftest.c  >&5
configure:2496: $? = 0
configure:2522: result: 
configure:2528: checking for suffix of object files
configure:2554: gcc -c -O  conftest.c >&5
configure:2558: $? = 0
configure:2583: result: o
configure:2587: checking whether we are using the GNU C compiler
configure:2616: gcc -c -O  conftest.c >&5
configure:2623: $? = 0
configure:2640: result: yes
configure:2649: checking whether gcc accepts -g
configure:2679: gcc -c -g  conftest.c >&5
configure:2686: $? = 0
configure:2787: result: yes
configure:2804: checking for gcc option to accept ISO C89
configure:2878: gcc  -c -O  conftest.c >&5
configure:2885: $? = 0
configure:2908: result: none needed
configure:2984: checking for g++
configure:3000: found /binlib/vndr/gcc-4.0.0/bin/g++
configure:3011: result: g++
configure:3038: checking for C++ compiler version
configure:3046: g++ --version >&5
g++ (GCC) 4.0.0
Copyright (C) 2005 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:3050: $? = 0
configure:3057: g++ -v >&5
Using built-in specs.
Target: i686-pc-linux-gnu
Configured with: ../gcc-4.0.0-src/configure --prefix=/binlib/vndr/gcc-4.0.0 --enable-threads
Thread model: posix
gcc version 4.0.0
configure:3061: $? = 0
configure:3068: g++ -V >&5
g++: '-V' option must have argument
configure:3072: $? = 1
configure:3075: checking whether we are using the GNU C++ compiler
configure:3104: g++ -c -O2  conftest.cpp >&5
configure:3111: $? = 0
configure:3128: result: yes
configure:3137: checking whether g++ accepts -g
configure:3167: g++ -c -g  conftest.cpp >&5
configure:3174: $? = 0
configure:3275: result: yes
configure:3303: checking how to run the C preprocessor
configure:3343: gcc -E  conftest.c
configure:3350: $? = 0
configure:3381: gcc -E  conftest.c
conftest.c:8:28: error: ac_nonexistent.h: No such file or directory
configure:3388: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3421: result: gcc -E
configure:3450: gcc -E  conftest.c
configure:3457: $? = 0
configure:3488: gcc -E  conftest.c
conftest.c:8:28: error: ac_nonexistent.h: No such file or directory
configure:3495: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3577: checking for ranlib
configure:3593: found /binlib/vndr/gcc-4.0.0/bin/ranlib
configure:3604: result: ranlib
configure:3640: checking for a BSD-compatible install
configure:3708: result: /usr/bin/install -c
configure:3719: checking whether make sets $(MAKE)
configure:3741: result: yes
configure:3814: checking for python version
configure:3821: result: 2.5
configure:3833: checking for python platform
configure:3840: result: linux2
configure:3847: checking for python script directory
configure:3855: result: ${prefix}/lib/python2.5/site-packages
configure:3864: checking for python extension module directory
configure:3872: result: ${exec_prefix}/lib/python2.5/site-packages
configure:3888: checking for pkg-config
configure:3919: result: no
configure:3938: checking for OpenSSL root
configure:3953: result: no
configure:4146: checking how to run the C++ preprocessor
configure:4182: g++ -E  conftest.cpp
configure:4189: $? = 0
configure:4220: g++ -E  conftest.cpp
conftest.cpp:8:28: error: ac_nonexistent.h: No such file or directory
configure:4227: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4260: result: g++ -E
configure:4289: g++ -E  conftest.cpp
configure:4296: $? = 0
configure:4327: g++ -E  conftest.cpp
conftest.cpp:8:28: error: ac_nonexistent.h: No such file or directory
configure:4334: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4374: checking for grep that handles long lines and -e
configure:4434: result: /bin/grep
configure:4439: checking for egrep
configure:4503: result: /bin/grep -E
configure:4508: checking for ANSI C header files
configure:4538: g++ -c -O2  conftest.cpp >&5
configure:4545: $? = 0
configure:4641: g++ -o conftest -O2   conftest.cpp  >&5
configure:4645: $? = 0
configure:4651: ./conftest
configure:4655: $? = 0
configure:4673: result: yes
configure:4697: checking for sys/types.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for sys/stat.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for stdlib.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for string.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for memory.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for strings.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for inttypes.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for stdint.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4697: checking for unistd.h
configure:4718: g++ -c -O2  conftest.cpp >&5
configure:4725: $? = 0
configure:4742: result: yes
configure:4778: checking errno.h usability
configure:4795: g++ -c -O2  conftest.cpp >&5
configure:4802: $? = 0
configure:4816: result: yes
configure:4820: checking errno.h presence
configure:4835: g++ -E  conftest.cpp
configure:4842: $? = 0
configure:4856: result: yes
configure:4889: checking for errno.h
configure:4898: result: yes
configure:4778: checking fcntl.h usability
configure:4795: g++ -c -O2  conftest.cpp >&5
configure:4802: $? = 0
configure:4816: result: yes
configure:4820: checking fcntl.h presence
configure:4835: g++ -E  conftest.cpp
configure:4842: $? = 0
configure:4856: result: yes
configure:4889: checking for fcntl.h
configure:4898: result: yes
configure:4778: checking netdb.h usability
configure:4795: g++ -c -O2  conftest.cpp >&5
configure:4802: $? = 0
configure:4816: result: yes
configure:4820: checking netdb.h presence
configure:4835: g++ -E  conftest.cpp
configure:4842: $? = 0
configure:4856: result: yes
configure:4889: checking for netdb.h
configure:4898: result: yes
configure:4778: checking signal.h usability
configure:4795: g++ -c -O2  conftest.cpp >&5
configure:4802: $? = 0
configure:4816: result: yes
configure:4820: checking signal.h presence
configure:4835: g++ -E  conftest.cpp
configure:4842: $? = 0
configure:4856: result: yes
configure:4889: checking for signal.h
configure:4898: result: yes
configure:4767: checking for stdlib.h
configure:4774: result: yes
configure:4767: checking for string.h
configure:4774: result: yes
configure:4767: checking for strings.h
configure:4774: result: yes
configure:4923: checking for unistd.h
configure:4930: result: yes
configure:4934: checking nan.h usability
configure:4951: g++ -c -O2  conftest.cpp >&5
conftest.cpp:59:17: error: nan.h: No such file or directory
configure:4958: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <nan.h>
configure:4972: result: no
configure:4976: checking nan.h presence
configure:4991: g++ -E  conftest.cpp
conftest.cpp:26:17: error: nan.h: No such file or directory
configure:4998: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <nan.h>
configure:5012: result: no
configure:5045: checking for nan.h
configure:5054: result: no
configure:4934: checking sys/if.h usability
configure:4951: g++ -c -O2  conftest.cpp >&5
conftest.cpp:59:20: error: sys/if.h: No such file or directory
configure:4958: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/if.h>
configure:4972: result: no
configure:4976: checking sys/if.h presence
configure:4991: g++ -E  conftest.cpp
conftest.cpp:26:20: error: sys/if.h: No such file or directory
configure:4998: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <sys/if.h>
configure:5012: result: no
configure:5045: checking for sys/if.h
configure:5054: result: no
configure:4934: checking sys/ioctl.h usability
configure:4951: g++ -c -O2  conftest.cpp >&5
configure:4958: $? = 0
configure:4972: result: yes
configure:4976: checking sys/ioctl.h presence
configure:4991: g++ -E  conftest.cpp
configure:4998: $? = 0
configure:5012: result: yes
configure:5045: checking for sys/ioctl.h
configure:5054: result: yes
configure:4934: checking sys/param.h usability
configure:4951: g++ -c -O2  conftest.cpp >&5
configure:4958: $? = 0
configure:4972: result: yes
configure:4976: checking sys/param.h presence
configure:4991: g++ -E  conftest.cpp
configure:4998: $? = 0
configure:5012: result: yes
configure:5045: checking for sys/param.h
configure:5054: result: yes
configure:4934: checking sys/time.h usability
configure:4951: g++ -c -O2  conftest.cpp >&5
configure:4958: $? = 0
configure:4972: result: yes
configure:4976: checking sys/time.h presence
configure:4991: g++ -E  conftest.cpp
configure:4998: $? = 0
configure:5012: result: yes
configure:5045: checking for sys/time.h
configure:5054: result: yes
configure:5086: checking sys/poll.h usability
configure:5103: g++ -c -O2  conftest.cpp >&5
configure:5110: $? = 0
configure:5124: result: yes
configure:5128: checking sys/poll.h presence
configure:5143: g++ -E  conftest.cpp
configure:5150: $? = 0
configure:5164: result: yes
configure:5197: checking for sys/poll.h
configure:5206: result: yes
configure:5086: checking ifaddrs.h usability
configure:5103: g++ -c -O2  conftest.cpp >&5
configure:5110: $? = 0
configure:5124: result: yes
configure:5128: checking ifaddrs.h presence
configure:5143: g++ -E  conftest.cpp
configure:5150: $? = 0
configure:5164: result: yes
configure:5197: checking for ifaddrs.h
configure:5206: result: yes
configure:5221: checking whether time.h and sys/time.h may both be included
configure:5251: g++ -c -O2  conftest.cpp >&5
configure:5258: $? = 0
configure:5273: result: yes
configure:5287: checking whether byte ordering is bigendian
configure:5312: g++ -c -O2  conftest.cpp >&5
conftest.cpp:33: error: expected unqualified-id before '!' token
configure:5319: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| /* end confdefs.h.  */
| #ifndef __APPLE_CC__
| 	       not a universal capable compiler
| 	     #endif
| 	     typedef int dummy;
| 
configure:5367: g++ -c -O2  conftest.cpp >&5
configure:5374: $? = 0
configure:5406: g++ -c -O2  conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:39: error: 'big' was not declared in this scope
conftest.cpp:39: error: expected `;' before 'endian'
configure:5413: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 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:5665: result: no
configure:5694: checking size of char
configure:5999: g++ -o conftest -O2   conftest.cpp  >&5
configure:6003: $? = 0
configure:6009: ./conftest
configure:6013: $? = 0
configure:6039: result: 1
configure:6053: checking size of unsigned char
configure:6358: g++ -o conftest -O2   conftest.cpp  >&5
configure:6362: $? = 0
configure:6368: ./conftest
configure:6372: $? = 0
configure:6398: result: 1
configure:6412: checking size of bool
configure:6717: g++ -o conftest -O2   conftest.cpp  >&5
configure:6721: $? = 0
configure:6727: ./conftest
configure:6731: $? = 0
configure:6757: result: 1
configure:6771: checking size of short
configure:7076: g++ -o conftest -O2   conftest.cpp  >&5
configure:7080: $? = 0
configure:7086: ./conftest
configure:7090: $? = 0
configure:7116: result: 2
configure:7130: checking size of int
configure:7435: g++ -o conftest -O2   conftest.cpp  >&5
configure:7439: $? = 0
configure:7445: ./conftest
configure:7449: $? = 0
configure:7475: result: 4
configure:7489: checking size of long
configure:7794: g++ -o conftest -O2   conftest.cpp  >&5
configure:7798: $? = 0
configure:7804: ./conftest
configure:7808: $? = 0
configure:7834: result: 4
configure:7848: checking size of long long
configure:8153: g++ -o conftest -O2   conftest.cpp  >&5
configure:8157: $? = 0
configure:8163: ./conftest
configure:8167: $? = 0
configure:8193: result: 8
configure:8207: checking size of float
configure:8512: g++ -o conftest -O2   conftest.cpp  >&5
configure:8516: $? = 0
configure:8522: ./conftest
configure:8526: $? = 0
configure:8552: result: 4
configure:8566: checking size of double
configure:8871: g++ -o conftest -O2   conftest.cpp  >&5
configure:8875: $? = 0
configure:8881: ./conftest
configure:8885: $? = 0
configure:8911: result: 8
configure:8925: checking size of long double
configure:9230: g++ -o conftest -O2   conftest.cpp  >&5
configure:9234: $? = 0
configure:9240: ./conftest
configure:9244: $? = 0
configure:9270: result: 12
configure:9284: checking size of wchar_t
configure:9589: g++ -o conftest -O2   conftest.cpp  >&5
configure:9593: $? = 0
configure:9599: ./conftest
configure:9603: $? = 0
configure:9629: result: 4
configure:9643: checking size of void*
configure:9948: g++ -o conftest -O2   conftest.cpp  >&5
configure:9952: $? = 0
configure:9958: ./conftest
configure:9962: $? = 0
configure:9988: result: 4
configure:10001: checking for struct sockaddr_in6
configure:10033: g++ -c -O2  conftest.cpp >&5
configure:10040: $? = 0
configure:10071: g++ -c -O2  conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:52: error: expected primary-expression before 'struct'
conftest.cpp:52: error: expected `)' before 'struct'
conftest.cpp:53: error: expected `)' before ';' token
conftest.cpp:53: error: expected `)' before ';' token
configure:10078: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <net/if.h>
| #include <netinet/in.h>
| 
| int
| main ()
| {
| if (sizeof ((struct sockaddr_in6)))
| 	  return 0;
|   ;
|   return 0;
| }
configure:10101: result: yes
configure:10111: checking for struct sockaddr_storage
configure:10143: g++ -c -O2  conftest.cpp >&5
configure:10150: $? = 0
configure:10181: g++ -c -O2  conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:53: error: expected primary-expression before 'struct'
conftest.cpp:53: error: expected `)' before 'struct'
conftest.cpp:54: error: expected `)' before ';' token
conftest.cpp:54: error: expected `)' before ';' token
configure:10188: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| #define HAVE_STRUCT_SOCKADDR_IN6 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <net/if.h>
| #include <netinet/in.h>
| 
| int
| main ()
| {
| if (sizeof ((struct sockaddr_storage)))
| 	  return 0;
|   ;
|   return 0;
| }
configure:10211: result: yes
configure:10221: checking for struct lifconf
configure:10253: g++ -c -O2  conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:54: error: invalid application of 'sizeof' to incomplete type 'lifconf' 
configure:10260: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| #define HAVE_STRUCT_SOCKADDR_IN6 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <net/if.h>
| #include <netinet/in.h>
| 
| int
| main ()
| {
| if (sizeof (struct lifconf))
|        return 0;
|   ;
|   return 0;
| }
configure:10321: result: no
configure:10333: checking for struct sockaddr_in.sin_len
configure:10364: g++ -c -O2  conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:54: error: 'struct sockaddr_in' has no member named 'sin_len'
configure:10371: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| #define HAVE_STRUCT_SOCKADDR_IN6 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <netinet/in.h>
| 
| int
| main ()
| {
| static struct sockaddr_in ac_aggr;
| if (ac_aggr.sin_len)
| return 0;
|   ;
|   return 0;
| }
configure:10407: g++ -c -O2  conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:54: error: 'struct sockaddr_in' has no member named 'sin_len'
configure:10414: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| #define HAVE_STRUCT_SOCKADDR_IN6 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <netinet/in.h>
| 
| int
| main ()
| {
| static struct sockaddr_in ac_aggr;
| if (sizeof ac_aggr.sin_len)
| return 0;
|   ;
|   return 0;
| }
configure:10432: result: no
configure:10442: checking for struct sockaddr_in.sin_zero
configure:10473: g++ -c -O2  conftest.cpp >&5
configure:10480: $? = 0
configure:10541: result: yes
configure:10555: checking whether the compiler recognizes bool as a built-in type
configure:10592: g++ -c -O2  conftest.cpp >&5
configure:10599: $? = 0
configure:10621: result: yes
configure:10631: checking whether the compiler supports const_cast<>
configure:10664: g++ -c -O2  conftest.cpp >&5
configure:10671: $? = 0
configure:10693: result: yes
configure:10703: checking whether the compiler supports dynamic_cast<>
configure:10739: g++ -c -O2  conftest.cpp >&5
configure:10746: $? = 0
configure:10768: result: yes
configure:10778: checking whether the compiler supports reinterpret_cast<>
configure:10816: g++ -c -O2  conftest.cpp >&5
configure:10823: $? = 0
configure:10845: result: yes
configure:10855: checking whether the compiler implements namespaces
configure:10888: g++ -c -O2  conftest.cpp >&5
configure:10895: $? = 0
configure:10917: result: yes
configure:10927: checking whether the compiler supports ISO C++ standard library
configure:10967: g++ -c -O2  conftest.cpp >&5
configure:10974: $? = 0
configure:10996: result: yes
configure:11006: checking whether the compiler supports member constants
configure:11039: g++ -c -O2  conftest.cpp >&5
configure:11046: $? = 0
configure:11068: result: yes
configure:11079: checking whether the compiler supports exceptions
configure:11112: g++ -c -O2  conftest.cpp >&5
configure:11119: $? = 0
configure:11141: result: yes
configure:11151: checking whether exceptions can be caught by base class
configure:11201: g++ -o conftest -O2   conftest.cpp  >&5
configure:11205: $? = 0
configure:11211: ./conftest
configure:11215: $? = 0
configure:11239: result: yes
configure:11249: checking whether base constructors have to be fully-qualified
configure:11301: g++ -c -O2  conftest.cpp >&5
configure:11308: $? = 0
configure:11330: result: no
configure:11340: checking whether the compiler supports covariant return types
configure:11383: g++ -c -O2  conftest.cpp >&5
configure:11390: $? = 0
configure:11412: result: yes
configure:11422: checking whether long is the same type as int
configure:11457: g++ -c -O2  conftest.cpp >&5
configure:11464: $? = 0
configure:11486: result: no
configure:11499: checking for library containing getaddrinfo
configure:11540: g++ -o conftest -O2   conftest.cpp  >&5
configure:11547: $? = 0
configure:11578: result: none required
configure:11604: checking for getaddrinfo
configure:11660: gcc -o conftest -O   conftest.c  >&5
configure:11667: $? = 0
configure:11689: result: yes
configure:11604: checking for gethostname
configure:11660: gcc -o conftest -O   conftest.c  >&5
configure:11667: $? = 0
configure:11689: result: yes
configure:11604: checking for getopt
configure:11660: gcc -o conftest -O   conftest.c  >&5
configure:11667: $? = 0
configure:11689: result: yes
configure:11604: checking for getpid
configure:11660: gcc -o conftest -O   conftest.c  >&5
configure:11667: $? = 0
configure:11689: result: yes
configure:11604: checking for gettimeofday
configure:11660: gcc -o conftest -O   conftest.c  >&5
configure:11667: $? = 0
configure:11689: result: yes
configure:11706: checking for getnameinfo
configure:11762: gcc -o conftest -O   conftest.c  >&5
configure:11769: $? = 0
configure:11791: result: yes
configure:11706: checking for inet_ntop
configure:11762: gcc -o conftest -O   conftest.c  >&5
configure:11769: $? = 0
configure:11791: result: yes
configure:11813: checking for isinf
configure:11869: gcc -o conftest -O   conftest.c  >&5
conftest.c:87: warning: conflicting types for built-in function 'isinf'
configure:11876: $? = 0
configure:11898: result: yes
configure:11813: checking for insinff
configure:11869: gcc -o conftest -O   conftest.c  >&5
/tmp/ccguTyOi.o: In function `main':
conftest.c:(.text+0xd): undefined reference to `insinff'
collect2: ld returned 1 exit status
configure:11876: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| #define HAVE_STRUCT_SOCKADDR_IN6 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| #define HAVE_STRUCT_SOCKADDR_IN_SIN_ZERO 1
| #define HAVE_BOOL /**/
| #define HAVE_CONST_CAST /**/
| #define HAVE_DYNAMIC_CAST /**/
| #define HAVE_REINTERPRET_CAST /**/
| #define HAVE_NAMESPACES /**/
| #define HAVE_STD /**/
| #define HAVE_MEMBER_CONSTANTS /**/
| #define HAVE_EXCEPTIONS /**/
| #define HAVE_CATCH_BY_BASE /**/
| #define OMNI_HAVE_COVARIANT_RETURNS /**/
| #define HAVE_GETADDRINFO 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETOPT 1
| #define HAVE_GETPID 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETNAMEINFO 1
| #define HAVE_INET_NTOP 1
| #define HAVE_ISINF 1
| /* end confdefs.h.  */
| /* Define insinff to an innocuous variant, in case <limits.h> declares insinff.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define insinff innocuous_insinff
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char insinff (); 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
| 
| #undef insinff
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char insinff ();
| /* 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_insinff || defined __stub___insinff
| choke me
| #endif
| 
| int
| main ()
| {
| return insinff ();
|   ;
|   return 0;
| }
configure:11898: result: no
configure:11813: checking for isinfl
configure:11869: gcc -o conftest -O   conftest.c  >&5
conftest.c:88: warning: conflicting types for built-in function 'isinfl'
configure:11876: $? = 0
configure:11898: result: yes
configure:11813: checking for localtime
configure:11869: gcc -o conftest -O   conftest.c  >&5
configure:11876: $? = 0
configure:11898: result: yes
configure:11813: checking for nanosleep
configure:11869: gcc -o conftest -O   conftest.c  >&5
configure:11876: $? = 0
configure:11898: result: yes
configure:11813: checking for poll
configure:11869: gcc -o conftest -O   conftest.c  >&5
configure:11876: $? = 0
configure:11898: result: yes
configure:11813: checking for sigaction
configure:11869: gcc -o conftest -O   conftest.c  >&5
configure:11876: $? = 0
configure:11898: result: yes
configure:11920: checking for sigvec
configure:11976: gcc -o conftest -O   conftest.c  >&5
configure:11983: $? = 0
configure:12005: result: yes
configure:11920: checking for snprintf
configure:11976: gcc -o conftest -O   conftest.c  >&5
conftest.c:94: warning: conflicting types for built-in function 'snprintf'
configure:11983: $? = 0
configure:12005: result: yes
configure:11920: checking for strcasecmp
configure:11976: gcc -o conftest -O   conftest.c  >&5
configure:11983: $? = 0
configure:12005: result: yes
configure:11920: checking for strdup
configure:11976: gcc -o conftest -O   conftest.c  >&5
conftest.c:96: warning: conflicting types for built-in function 'strdup'
configure:11983: $? = 0
configure:12005: result: yes
configure:11920: checking for strerror
configure:11976: gcc -o conftest -O   conftest.c  >&5
configure:11983: $? = 0
configure:12005: result: yes
configure:11920: checking for strftime
configure:11976: gcc -o conftest -O   conftest.c  >&5
conftest.c:98: warning: conflicting types for built-in function 'strftime'
configure:11983: $? = 0
configure:12005: result: yes
configure:11920: checking for stricmp
configure:11976: gcc -o conftest -O   conftest.c  >&5
/tmp/cco7xilG.o: In function `main':
conftest.c:(.text+0xd): undefined reference to `stricmp'
collect2: ld returned 1 exit status
configure:11983: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| #define HAVE_STRUCT_SOCKADDR_IN6 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| #define HAVE_STRUCT_SOCKADDR_IN_SIN_ZERO 1
| #define HAVE_BOOL /**/
| #define HAVE_CONST_CAST /**/
| #define HAVE_DYNAMIC_CAST /**/
| #define HAVE_REINTERPRET_CAST /**/
| #define HAVE_NAMESPACES /**/
| #define HAVE_STD /**/
| #define HAVE_MEMBER_CONSTANTS /**/
| #define HAVE_EXCEPTIONS /**/
| #define HAVE_CATCH_BY_BASE /**/
| #define OMNI_HAVE_COVARIANT_RETURNS /**/
| #define HAVE_GETADDRINFO 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETOPT 1
| #define HAVE_GETPID 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETNAMEINFO 1
| #define HAVE_INET_NTOP 1
| #define HAVE_ISINF 1
| #define HAVE_ISINFL 1
| #define HAVE_LOCALTIME 1
| #define HAVE_NANOSLEEP 1
| #define HAVE_POLL 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGVEC 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRFTIME 1
| /* end confdefs.h.  */
| /* Define stricmp to an innocuous variant, in case <limits.h> declares stricmp.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define stricmp innocuous_stricmp
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char stricmp (); 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
| 
| #undef stricmp
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char stricmp ();
| /* 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_stricmp || defined __stub___stricmp
| choke me
| #endif
| 
| int
| main ()
| {
| return stricmp ();
|   ;
|   return 0;
| }
configure:12005: result: no
configure:12027: checking for strncasecmp
configure:12083: gcc -o conftest -O   conftest.c  >&5
configure:12090: $? = 0
configure:12112: result: yes
configure:12027: checking for strtoul
configure:12083: gcc -o conftest -O   conftest.c  >&5
configure:12090: $? = 0
configure:12112: result: yes
configure:12027: checking for strtoull
configure:12083: gcc -o conftest -O   conftest.c  >&5
configure:12090: $? = 0
configure:12112: result: yes
configure:12027: checking for strtouq
configure:12083: gcc -o conftest -O   conftest.c  >&5
configure:12090: $? = 0
configure:12112: result: yes
configure:12027: checking for uname
configure:12083: gcc -o conftest -O   conftest.c  >&5
configure:12090: $? = 0
configure:12112: result: yes
configure:12027: checking for vprintf
configure:12083: gcc -o conftest -O   conftest.c  >&5
conftest.c:104: warning: conflicting types for built-in function 'vprintf'
configure:12090: $? = 0
configure:12112: result: yes
configure:12027: checking for vsnprintf
configure:12083: gcc -o conftest -O   conftest.c  >&5
conftest.c:105: warning: conflicting types for built-in function 'vsnprintf'
configure:12090: $? = 0
configure:12112: result: yes
configure:12127: checking for working alloca.h
configure:12154: gcc -o conftest -O   conftest.c  >&5
configure:12161: $? = 0
configure:12181: result: yes
configure:12191: checking for alloca
configure:12238: gcc -o conftest -O   conftest.c  >&5
configure:12245: $? = 0
configure:12265: result: yes
configure:12509: checking for IsNANorINF
configure:12547: g++ -c -O2  conftest.cpp >&5
conftest.cpp:87:17: error: nan.h: No such file or directory
conftest.cpp: In function 'int main()':
conftest.cpp:94: error: 'IsNANorINF' was not declared in this scope
configure:12554: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "omniORB"
| #define PACKAGE_TARNAME "omniorb"
| #define PACKAGE_VERSION "4.1.4"
| #define PACKAGE_STRING "omniORB 4.1.4"
| #define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
| #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_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_SIGNAL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_IFADDRS_H 1
| #define TIME_WITH_SYS_TIME 1
| #define SIZEOF_CHAR 1
| #define SIZEOF_UNSIGNED_CHAR 1
| #define SIZEOF_BOOL 1
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_LONG_LONG 8
| #define SIZEOF_FLOAT 4
| #define SIZEOF_DOUBLE 8
| #define SIZEOF_LONG_DOUBLE 12
| #define SIZEOF_WCHAR_T 4
| #define SIZEOF_VOIDP 4
| #define HAVE_STRUCT_SOCKADDR_IN6 1
| #define HAVE_STRUCT_SOCKADDR_STORAGE 1
| #define HAVE_STRUCT_SOCKADDR_IN_SIN_ZERO 1
| #define HAVE_BOOL /**/
| #define HAVE_CONST_CAST /**/
| #define HAVE_DYNAMIC_CAST /**/
| #define HAVE_REINTERPRET_CAST /**/
| #define HAVE_NAMESPACES /**/
| #define HAVE_STD /**/
| #define HAVE_MEMBER_CONSTANTS /**/
| #define HAVE_EXCEPTIONS /**/
| #define HAVE_CATCH_BY_BASE /**/
| #define OMNI_HAVE_COVARIANT_RETURNS /**/
| #define HAVE_GETADDRINFO 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETOPT 1
| #define HAVE_GETPID 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_GETNAMEINFO 1
| #define HAVE_INET_NTOP 1
| #define HAVE_ISINF 1
| #define HAVE_ISINFL 1
| #define HAVE_LOCALTIME 1
| #define HAVE_NANOSLEEP 1
| #define HAVE_POLL 1
| #define HAVE_SIGACTION 1
| #define HAVE_SIGVEC 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRTOUL 1
| #define HAVE_STRTOULL 1
| #define HAVE_STRTOUQ 1
| #define HAVE_UNAME 1
| #define HAVE_VPRINTF 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| /* end confdefs.h.  */
| 
| #include <math.h>
| #include <nan.h>
| 
| int
| main ()
| {
| 
|   double d = 1.23;
|   int i = IsNANorINF(d);
| 
|   ;
|   return 0;
| }
configure:12576: result: no
configure:12586: checking whether SIG_IGN is available
configure:12631: g++ -c -O2  conftest.cpp >&5
configure:12638: $? = 0
configure:12660: result: yes
configure:12670: checking whether gettimeofday() takes a timezone argument
configure:12711: g++ -c -O2  conftest.cpp >&5
configure:12718: $? = 0
configure:12740: result: yes
configure:12750: checking third argument of getsockname
configure:12789: g++ -c -O2  conftest.cpp >&5
configure:12796: $? = 0
configure:12868: result: socklen_t
configure:12874: checking omniORB config file location
configure:12889: result: /etc/omniORB.cfg
configure:12898: checking omniNames log directory
configure:12913: result: /var/omninames
configure:12922: checking whether to build static libraries
configure:12936: result: yes
configure:12941: checking whether to trace threads and locking
configure:12955: result: no
configure:12965: checking whether to support IPv6
configure:12979: result: yes
configure:12989: checking whether alloca should be used in omnicpp
configure:13003: result: yes
configure:13237: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by omniORB config.status 4.1.4, which was
generated by GNU Autoconf 2.63.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on lonlsd01

config.status:906: creating mk/beforeauto.mk
config.status:1053: WARNING:  '../omniORB-4.1.4/mk/beforeauto.mk.in' seems to ignore the --datarootdir setting
config.status:906: creating mk/afterauto.mk
config.status:906: creating GNUmakefile
config.status:906: creating src/tool/omniidl/python/scripts/omniidl
config.status:906: creating src/appl/GNUmakefile
config.status:906: creating src/appl/omniMapper/GNUmakefile
config.status:906: creating src/appl/omniNames/GNUmakefile
config.status:906: creating src/appl/utils/catior/GNUmakefile
config.status:906: creating src/appl/utils/convertior/GNUmakefile
config.status:906: creating src/appl/utils/GNUmakefile
config.status:906: creating src/appl/utils/genior/GNUmakefile
config.status:906: creating src/appl/utils/nameclt/GNUmakefile
config.status:906: creating src/GNUmakefile
config.status:906: creating src/examples/anyExample/GNUmakefile
config.status:906: creating src/examples/bidir/GNUmakefile
config.status:906: creating src/examples/boa/GNUmakefile
config.status:906: creating src/examples/call_back/GNUmakefile
config.status:906: creating src/examples/dii/GNUmakefile
config.status:906: creating src/examples/GNUmakefile
config.status:906: creating src/examples/dsi/GNUmakefile
config.status:906: creating src/examples/echo/GNUmakefile
config.status:906: creating src/examples/poa/GNUmakefile
config.status:906: creating src/examples/poa/implicit_activation/GNUmakefile
config.status:906: creating src/examples/poa/persistent_objref/GNUmakefile
config.status:906: creating src/examples/poa/servant_manager/GNUmakefile
config.status:906: creating src/examples/poa/threading/GNUmakefile
config.status:906: creating src/examples/ssl_echo/GNUmakefile
config.status:906: creating src/examples/thread/GNUmakefile
config.status:906: creating src/examples/valuetype/GNUmakefile
config.status:906: creating src/examples/valuetype/simple/GNUmakefile
config.status:906: creating src/lib/GNUmakefile
config.status:906: creating src/lib/omniORB/codesets/GNUmakefile
config.status:906: creating src/lib/omniORB/GNUmakefile
config.status:906: creating src/lib/omniORB/dynamic/GNUmakefile
config.status:906: creating src/lib/omniORB/omniidl_be/cxx/GNUmakefile
config.status:906: creating src/lib/omniORB/omniidl_be/cxx/dynskel/GNUmakefile
config.status:906: creating src/lib/omniORB/omniidl_be/cxx/header/GNUmakefile
config.status:906: creating src/lib/omniORB/omniidl_be/cxx/impl/GNUmakefile
config.status:906: creating src/lib/omniORB/omniidl_be/cxx/skel/GNUmakefile
config.status:906: creating src/lib/omniORB/omniidl_be/GNUmakefile
config.status:906: creating src/lib/omniORB/orbcore/GNUmakefile
config.status:906: creating src/lib/omniORB/orbcore/ssl/GNUmakefile
config.status:906: creating src/lib/omniORB/connections/GNUmakefile
config.status:906: creating src/lib/omnithread/GNUmakefile
config.status:906: creating src/services/GNUmakefile
config.status:906: creating src/services/mklib/GNUmakefile
config.status:906: creating src/services/mklib/mkBOAlib/GNUmakefile
config.status:906: creating src/tool/GNUmakefile
config.status:906: creating src/tool/omkdepend/GNUmakefile
config.status:906: creating src/tool/omniidl/cxx/cccp/GNUmakefile
config.status:906: creating src/tool/omniidl/cxx/GNUmakefile
config.status:906: creating src/tool/omniidl/GNUmakefile
config.status:906: creating src/tool/omniidl/python/GNUmakefile
config.status:906: creating src/tool/omniidl/python/omniidl_be/GNUmakefile
config.status:906: creating src/tool/omniidl/python/omniidl/GNUmakefile
config.status:906: creating src/tool/omniidl/python/scripts/GNUmakefile
config.status:906: creating include/GNUmakefile
config.status:906: creating include/omniconfig.h
config.status:906: creating include/omnithread/GNUmakefile
config.status:906: creating include/omniORB4/GNUmakefile
config.status:906: creating include/omniORB4/internal/GNUmakefile
config.status:906: creating idl/GNUmakefile
config.status:906: creating idl/COS/GNUmakefile
config.status:906: creating etc/init.d/omniNames
config.status:906: creating contrib/GNUmakefile
config.status:906: creating contrib/pkgconfig/GNUmakefile
config.status:906: creating contrib/pkgconfig/omnithread3.pc
config.status:906: creating contrib/pkgconfig/omniORB4.pc
config.status:1053: WARNING:  '../omniORB-4.1.4/contrib/pkgconfig/omniORB4.pc.in' seems to ignore the --datarootdir setting
config.status:906: creating contrib/pkgconfig/omniDynamic4.pc
config.status:906: creating contrib/pkgconfig/omniCOS4.pc
config.status:1053: WARNING:  '../omniORB-4.1.4/contrib/pkgconfig/omniCOS4.pc.in' seems to ignore the --datarootdir setting
config.status:906: creating contrib/pkgconfig/omniCOSDynamic4.pc
config.status:906: creating contrib/pkgconfig/omniConnectionMgmt4.pc
config.status:906: creating include/omniORB4/acconfig.h

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

ac_cv_build=i686-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_bool=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_cxx_const_cast=yes
ac_cv_cxx_dynamic_cast=yes
ac_cv_cxx_exceptions=yes
ac_cv_cxx_have_std=yes
ac_cv_cxx_member_constants=yes
ac_cv_cxx_namespaces=yes
ac_cv_cxx_reinterpret_cast=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_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_func_alloca_works=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_gethostname=yes
ac_cv_func_getnameinfo=yes
ac_cv_func_getopt=yes
ac_cv_func_getpid=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_inet_ntop=yes
ac_cv_func_insinff=no
ac_cv_func_isinf=yes
ac_cv_func_isinfl=yes
ac_cv_func_localtime=yes
ac_cv_func_nanosleep=yes
ac_cv_func_poll=yes
ac_cv_func_sigaction=yes
ac_cv_func_sigvec=yes
ac_cv_func_snprintf=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strftime=yes
ac_cv_func_stricmp=no
ac_cv_func_strncasecmp=yes
ac_cv_func_strtoul=yes
ac_cv_func_strtoull=yes
ac_cv_func_strtouq=yes
ac_cv_func_uname=yes
ac_cv_func_vprintf=yes
ac_cv_func_vsnprintf=yes
ac_cv_header_errno_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_ifaddrs_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_nan_h=no
ac_cv_header_netdb_h=yes
ac_cv_header_signal_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_if_h=no
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_poll_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_member_struct_sockaddr_in_sin_len=no
ac_cv_member_struct_sockaddr_in_sin_zero=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_PKG_CONFIG=no
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_search_getaddrinfo='none required'
ac_cv_sizeof_bool=1
ac_cv_sizeof_char=1
ac_cv_sizeof_double=8
ac_cv_sizeof_float=4
ac_cv_sizeof_int=4
ac_cv_sizeof_long=4
ac_cv_sizeof_long_double=12
ac_cv_sizeof_long_long=8
ac_cv_sizeof_short=2
ac_cv_sizeof_unsigned_char=1
ac_cv_sizeof_voidp=4
ac_cv_sizeof_wchar_t=4
ac_cv_type_struct_lifconf=no
ac_cv_type_struct_sockaddr_in6=yes
ac_cv_type_struct_sockaddr_storage=yes
ac_cv_working_alloca_h=yes
am_cv_python_platform=linux2
am_cv_python_pyexecdir='${exec_prefix}/lib/python2.5/site-packages'
am_cv_python_pythondir='${prefix}/lib/python2.5/site-packages'
am_cv_python_version=2.5
omni_cv_cxx_catch_by_base=yes
omni_cv_cxx_covariant_returns=yes
omni_cv_cxx_long_is_int=no
omni_cv_cxx_need_fq_base_ctor=no
omni_cv_enable_alloca=yes
omni_cv_enable_ipv6=yes
omni_cv_enable_static=yes
omni_cv_enable_thread_tracing=no
omni_cv_gettimeofday_timezone=yes
omni_cv_have_isnanorinf=no
omni_cv_omninames_logdir=/var/omninames
omni_cv_omniorb_config=/etc/omniORB.cfg
omni_cv_openssl_root=no
omni_cv_sig_ign_available=yes
omni_cv_sockname_size_t=socklen_t

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

ALLOCA=''
CC='gcc'
CFLAGS='-O'
COMPILER_NAME='Compiler_GCC'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXFLAGS='-O2'
DEFS='-DHAVE_CONFIG_H'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_STATIC='yes'
EXEEXT=''
EXTRA_GCC_CXXFLAGS=''
GREP='/bin/grep'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LTLIBOBJS=''
OBJEXT='o'
OMNINAMES_LOGDIR='/var/omninames'
OMNIORB_CONFIG='/etc/omniORB.cfg'
OPENSSL_CFLAGS=''
OPENSSL_LIBS=''
OPEN_SSL_CPPFLAGS=''
OPEN_SSL_LIB=''
OPEN_SSL_ROOT=''
OSVERSION='2'
PACKAGE_BUGREPORT='bugs at omniorb-support.com'
PACKAGE_NAME='omniORB'
PACKAGE_STRING='omniORB 4.1.4'
PACKAGE_TARNAME='omniorb'
PACKAGE_VERSION='4.1.4'
PATH_SEPARATOR=':'
PKG_CONFIG='no'
PLATFORM_DEFINE='__linux__'
PLATFORM_NAME='Linux'
PROCESSOR_DEFINE='__x86__'
PROCESSOR_NAME='x86Processor'
PYTHON='/binlib/vndr/Python-2.5.2/bin/python2.5'
PYTHON_EXEC_PREFIX='${exec_prefix}'
PYTHON_PLATFORM='linux2'
PYTHON_PREFIX='${prefix}'
PYTHON_VERSION='2.5'
RANLIB='ranlib'
SET_MAKE=''
SHELL='/bin/sh'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
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}'
pkgpyexecdir='${pyexecdir}/'
pkgpythondir='${pythondir}/'
prefix='/Net/devuser/nbkor9k/temp/omni/install'
program_transform_name='s,x,x,'
psdir='${docdir}'
pyexecdir='${exec_prefix}/lib/python2.5/site-packages'
pythondir='${prefix}/lib/python2.5/site-packages'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

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

#define PACKAGE_NAME "omniORB"
#define PACKAGE_TARNAME "omniorb"
#define PACKAGE_VERSION "4.1.4"
#define PACKAGE_STRING "omniORB 4.1.4"
#define PACKAGE_BUGREPORT "bugs at omniorb-support.com"
#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_ERRNO_H 1
#define HAVE_FCNTL_H 1
#define HAVE_NETDB_H 1
#define HAVE_SIGNAL_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_STRINGS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_POLL_H 1
#define HAVE_IFADDRS_H 1
#define TIME_WITH_SYS_TIME 1
#define SIZEOF_CHAR 1
#define SIZEOF_UNSIGNED_CHAR 1
#define SIZEOF_BOOL 1
#define SIZEOF_SHORT 2
#define SIZEOF_INT 4
#define SIZEOF_LONG 4
#define SIZEOF_LONG_LONG 8
#define SIZEOF_FLOAT 4
#define SIZEOF_DOUBLE 8
#define SIZEOF_LONG_DOUBLE 12
#define SIZEOF_WCHAR_T 4
#define SIZEOF_VOIDP 4
#define HAVE_STRUCT_SOCKADDR_IN6 1
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
#define HAVE_STRUCT_SOCKADDR_IN_SIN_ZERO 1
#define HAVE_BOOL /**/
#define HAVE_CONST_CAST /**/
#define HAVE_DYNAMIC_CAST /**/
#define HAVE_REINTERPRET_CAST /**/
#define HAVE_NAMESPACES /**/
#define HAVE_STD /**/
#define HAVE_MEMBER_CONSTANTS /**/
#define HAVE_EXCEPTIONS /**/
#define HAVE_CATCH_BY_BASE /**/
#define OMNI_HAVE_COVARIANT_RETURNS /**/
#define HAVE_GETADDRINFO 1
#define HAVE_GETHOSTNAME 1
#define HAVE_GETOPT 1
#define HAVE_GETPID 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_GETNAMEINFO 1
#define HAVE_INET_NTOP 1
#define HAVE_ISINF 1
#define HAVE_ISINFL 1
#define HAVE_LOCALTIME 1
#define HAVE_NANOSLEEP 1
#define HAVE_POLL 1
#define HAVE_SIGACTION 1
#define HAVE_SIGVEC 1
#define HAVE_SNPRINTF 1
#define HAVE_STRCASECMP 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRFTIME 1
#define HAVE_STRNCASECMP 1
#define HAVE_STRTOUL 1
#define HAVE_STRTOULL 1
#define HAVE_STRTOUQ 1
#define HAVE_UNAME 1
#define HAVE_VPRINTF 1
#define HAVE_VSNPRINTF 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_SIG_IGN /**/
#define GETTIMEOFDAY_TIMEZONE /**/
#define OMNI_SOCKNAME_SIZE_T socklen_t

configure: exit 0


More information about the omniORB-list mailing list