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: ORBit2-2.6.1)


From: Akim Demaille
Subject: Re: present but cannot be compiled (Was: ORBit2-2.6.1)
Date: Tue, 06 May 2003 17:38:57 +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.

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.

`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
          ])

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

`sys/socket.h'
     On Darwin, `stdlib.h' is a prerequisite.
Dear GNU's
While compiling ORBit2-2.6.1 I ran into the following warning with the
request to file a bug report.

Attached is the output from my compile.  The instructions used were:

./configure --prefix=$GNOME_PREFIX &&
make &&
make install

where $GNOME_PREFIX is /opt/gnome-2.2 

I'm not shure what else to file with a bug report, not being familiar
with the procedure.  For any othe info just ask.

Dirk



checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking whether make sets $(MAKE)... yes
checking for working aclocal-1.4... missing
checking for working autoconf... found
checking for working automake-1.4... missing
checking for working autoheader... found
checking for working makeinfo... found
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
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 ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking for a sed that does not truncate output... /bin/sed
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking command to parse /usr/bin/nm -B output... ok
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 dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for ranlib... ranlib
checking for strip... strip
checking for objdir... .libs
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether -lc should be explicitly linked in... no
creating libtool
checking whether to enable maintainer-specific portions of Makefiles... no
checking for aclocal flags... 
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ANSI C... (cached) none needed
checking for a BSD-compatible install... /bin/install -c
checking for indentation command to pipe generated c-files through... cat
checking for gawk... gawk
checking for pkg-config... /usr/bin/pkg-config
checking for    linc >= 1.0.0   glib-2.0 >= 2.0.0       gobject-2.0 >= 2.0.0    
gmodule-2.0 >= 2.0.0... yes
checking ORBIT_CFLAGS... -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0  
checking ORBIT_LIBS... -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  
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... yes
checking ORBIT_IDL_CFLAGS... -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0  
checking ORBIT_IDL_LIBS... -Wl,--export-dynamic -L/opt/gnome-2.2/lib -lIDL-2 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  
checking for    libIDL-2.0 >= 0.7.4     linc >= 1.0.0   glib-2.0 >= 2.0.0... yes
checking ORBIT_NAME_CFLAGS... -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0 
-I/opt/gnome-2.2/include/linc-1.0  
checking ORBIT_NAME_LIBS... -pthread -L/opt/gnome-2.2/lib -lIDL-2 -llinc 
-lgobject-2.0 -lgthread-2.0 -lglib-2.0  
checking for ANSI C header files... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for unistd.h... (cached) yes
checking sys/endian.h usability... no
checking sys/endian.h presence... no
checking for sys/endian.h... no
checking endian.h usability... yes
checking endian.h presence... yes
checking for endian.h... yes
checking machine/endian.h usability... no
checking machine/endian.h presence... no
checking for machine/endian.h... no
checking sys/machine.h usability... no
checking sys/machine.h presence... no
checking for sys/machine.h... no
checking sys/isa_defs.h usability... no
checking sys/isa_defs.h presence... no
checking for sys/isa_defs.h... no
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wcstr.h usability... no
checking wcstr.h presence... no
checking for wcstr.h... no
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking machine/types.h usability... no
checking machine/types.h presence... no
checking for machine/types.h... no
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking linux/irda.h usability... no
checking linux/irda.h presence... yes
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
checking alignment of CORBA_octet... 1
checking alignment of CORBA_boolean... 1
checking alignment of CORBA_char... 1
checking alignment of CORBA_wchar... 2
checking alignment of CORBA_short... 2
checking alignment of CORBA_long... 4
checking alignment of CORBA_long_long... 4
checking alignment of CORBA_float... 4
checking alignment of CORBA_double... 4
checking alignment of CORBA_long_double... 4
checking alignment of CORBA_struct... 1
checking alignment of CORBA_pointer... 4
checking what warning flags to pass to the C compiler... -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations
configure: creating ./config.status
config.status: creating Makefile
config.status: creating orbit2-config
config.status: creating ORBit-2.0.pc
config.status: creating ORBit-CosNaming-2.0.pc
config.status: creating ORBit-imodule-2.0.pc
config.status: creating ORBit.spec
config.status: creating src/Makefile
config.status: creating src/idl-compiler/Makefile
config.status: creating src/idl-compiler/ORBit-idl-2.0.pc
config.status: creating src/idl/Makefile
config.status: creating src/idl/CORBA/Makefile
config.status: creating src/idl/CORBA_PIDL/Makefile
config.status: creating src/idl/interop/Makefile
config.status: creating src/idl/misc/Makefile
config.status: creating src/orb/Makefile
config.status: creating src/orb/include/Makefile
config.status: creating src/orb/util/Makefile
config.status: creating src/orb/GIOP/Makefile
config.status: creating src/orb/orb-core/Makefile
config.status: creating src/orb/dynamic/Makefile
config.status: creating src/orb/poa/Makefile
config.status: creating src/services/Makefile
config.status: creating src/services/name/Makefile
config.status: creating src/services/imodule/Makefile
config.status: creating include/Makefile
config.status: creating include/orbit/Makefile
config.status: creating include/orbit/orbit-config.h
config.status: creating include/orbit/GIOP/Makefile
config.status: creating include/orbit/util/Makefile
config.status: creating include/orbit/orb-core/Makefile
config.status: creating include/orbit/poa/Makefile
config.status: creating include/orbit/dynamic/Makefile
config.status: creating test/Makefile
config.status: creating test/everything/Makefile
config.status: creating test/inhibit/Makefile
config.status: creating test/poa/Makefile
config.status: creating docs/Makefile
config.status: creating docs/devel/Makefile
config.status: creating docs/internals/Makefile
config.status: creating config.h
config.status: executing default-1 commands
ORBit configuration:

        Source code location:   .
        Compiler:               gcc

        Purify cleanliness:     no

make  all-recursive
make[1]: Entering directory `/home/setup/gnome/ORBit2-2.6.1'
Making all in src
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src'
Making all in idl-compiler
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-main.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-driver.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-backend.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-utils.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-backend.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-skels.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-headers.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-common.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-imodule.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-skelimpl.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-utils.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-typecode.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../..                                     
        -I../../include                                 -I../..                 
                                -I../../include                                 
        -DORBIT_BACKENDS_DIR="\"/opt/gnome-2.2/lib/orbit-2.0/idl-backends\""    
        -DVERSION=\"2.6.1\"                                     
-DORBIT2_INTERNAL_API                                           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                 -DG_DISABLE_DEPRECATED                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c orbit-idl-c-deps.c
/bin/sh ../../libtool --mode=link gcc  -g -O2  -o orbit-idl-2  orbit-idl-main.o 
orbit-idl-driver.o orbit-idl-backend.o orbit-idl-utils.o orbit-idl-c-backend.o 
orbit-idl-c-stubs.o orbit-idl-c-skels.o orbit-idl-c-headers.o 
orbit-idl-c-common.o orbit-idl-c-imodule.o orbit-idl-c-skelimpl.o 
orbit-idl-c-utils.o orbit-idl-c-typecode.o orbit-idl-c-deps.o -lpopt -lm        
                         -Wl,--export-dynamic -L/opt/gnome-2.2/lib -lIDL-2 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
mkdir .libs
gcc -g -O2 -o orbit-idl-2 orbit-idl-main.o orbit-idl-driver.o 
orbit-idl-backend.o orbit-idl-utils.o orbit-idl-c-backend.o orbit-idl-c-stubs.o 
orbit-idl-c-skels.o orbit-idl-c-headers.o orbit-idl-c-common.o 
orbit-idl-c-imodule.o orbit-idl-c-skelimpl.o orbit-idl-c-utils.o 
orbit-idl-c-typecode.o orbit-idl-c-deps.o -Wl,--export-dynamic  
/usr/lib/libpopt.so -lm -L/opt/gnome-2.2/lib /opt/gnome-2.2/lib/libIDL-2.so 
/usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
Making all in idl
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
Making all in CORBA
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA'
Making all in CORBA_PIDL
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA_PIDL'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA_PIDL'
Making all in interop
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/interop'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/interop'
Making all in misc
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/misc'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/misc'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
Making all in orb
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
Making all in include
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/include'
(cd ../../../include; make)
make[5]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include'
Making all in orbit
make[6]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
Making all in GIOP
make[7]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
Making all in util
make[7]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
Making all in orb-core
make[7]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
(rm -f corba-defs.h corba-defs-stubs.c corba-defs-skels.c corba-defs-common.c 
corba-defs-imodule.c corba-defs-skelimpl.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
-I../../../src/idl/CORBA                                
-I../../../src/idl/interop                              --noskels --nodefskels 
--nostubs --noidata              --nocommon                                     
         --showcpperrors                  --define=Object=OObject               
         --define=TypeCode=TTypeCode --deps ./.deps/corba-defs.idl.P 
../../../src/orb/orb-core/corba-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: headers skel_impl imodule

for I in corba-defs.h corba-defs-stubs.c corba-defs-skels.c corba-defs-common.c 
corba-defs-imodule.c corba-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
(rm -f iop-defs.h iop-defs-stubs.c iop-defs-skels.c iop-defs-common.c 
iop-defs-imodule.c iop-defs-skelimpl.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
-I../../../src/idl/CORBA                                
-I../../../src/idl/interop                              --noskels --nodefskels 
--nostubs --noidata              --nocommon                                     
         --showcpperrors                  --define=Object=OObject               
         --define=TypeCode=TTypeCode --deps ./.deps/iop-defs.idl.P 
../../../src/orb/orb-core/iop-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: headers skel_impl imodule

for I in iop-defs.h iop-defs-stubs.c iop-defs-skels.c iop-defs-common.c 
iop-defs-imodule.c iop-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
(rm -f orbit-interface.h || true ) > /dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
-I../../../src/idl/CORBA                                
-I../../../src/idl/interop                              --noskels --nodefskels 
--nostubs --noidata              --nocommon                                     
         --showcpperrors --deps .deps/orbit-interface.idl.P 
../../../src/orb/orb-core/orbit-interface.idl
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: headers skel_impl imodule

make[7]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
Making all in poa
make[7]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
(rm -f poa-defs.h poa-defs-stubs.c poa-defs-skels.c poa-defs-common.c 
poa-defs-imodule.c poa-defs-skelimpl.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
                        -I../../../src/idl/CORBA                                
                -I../../../src/orb/orb-core                                     
-I../../../src/idl/misc                                         
--define=Object=OObject --define=TypeCode=TTypeCode                     
--noskels --nodefskels --nostubs --nocommon --noidata                   
--showcpperrors --deps ./.deps/poa-defs.idl.P ../../../src/orb/poa/poa-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: headers skel_impl imodule

for I in poa-defs.h poa-defs-stubs.c poa-defs-skels.c poa-defs-common.c 
poa-defs-imodule.c poa-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
make[7]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
Making all in dynamic
make[7]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
(rm -f dynamic-defs.h dynamic-defs-stubs.c dynamic-defs-skels.c 
dynamic-defs-common.c dynamic-defs-imodule.c dynamic-defs-skelimpl.c || true) > 
/dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
                -I../../../src/idl/CORBA                                        
-I../../../src/orb/orb-core                             -I../../../src/idl/misc 
                                --define=Object=OObject 
--define=TypeCode=TTypeCode             --noskels --nodefskels --nostubs 
--nocommon --noidata           --showcpperrors  --deps 
./.deps/dynamic-defs.idl.P ../../../src/orb/dynamic/dynamic-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: headers skel_impl imodule

for I in dynamic-defs.h dynamic-defs-stubs.c dynamic-defs-skels.c 
dynamic-defs-common.c dynamic-defs-imodule.c dynamic-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
make[7]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
make[7]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[6]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[6]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[5]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/include'
Making all in orb-core
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/orb-core'
make[5]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
(rm -f orbit-interface-common.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 --nostubs --noskels --showcpperrors 
--noheaders --deps .deps/orbit-interface.idl.P orbit-interface.idl
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: common skel_impl imodule

(rm -f corba-defs.h corba-defs-stubs.c corba-defs-skels.c corba-defs-common.c 
corba-defs-imodule.c corba-defs-skelimpl.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
                -I../../../src/idl/CORBA                                        
-I../../../src/idl/misc                                 
-I../../../src/idl/interop -I.                                  --noskels 
--nodefskels --nostubs --noidata --noheaders          --define=Object=OObject 
--define=TypeCode=TTypeCode             --showcpperrors --deps 
./.deps/corba-defs.idl.P corba-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: common skel_impl imodule

for I in corba-defs.h corba-defs-stubs.c corba-defs-skels.c corba-defs-common.c 
corba-defs-imodule.c corba-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
(rm -f iop-defs.h iop-defs-stubs.c iop-defs-skels.c iop-defs-common.c 
iop-defs-imodule.c iop-defs-skelimpl.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
                -I../../../src/idl/CORBA                                        
-I../../../src/idl/misc                                 
-I../../../src/idl/interop -I.                                  --noskels 
--nodefskels --nostubs --noidata --noheaders          --define=Object=OObject 
--define=TypeCode=TTypeCode             --showcpperrors --deps 
./.deps/iop-defs.idl.P iop-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: common skel_impl imodule

for I in iop-defs.h iop-defs-stubs.c iop-defs-skels.c iop-defs-common.c 
iop-defs-imodule.c iop-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
(rm -f corba-ops.h corba-ops-stubs.c corba-ops-common.c corba-ops-skels.c || 
true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 --showcpperrors --deps 
.deps/corba-ops.idl.P corba-ops.idl
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in corba-ops.h corba-ops-stubs.c corba-ops-common.c corba-ops-skels.c; do 
                                                        \
        sed -e 's,ZZZis_a,_is_a,g' -e 's,ZZis_a,is_a,g' $I > $I.out; mv $I.out 
$I;      \
done;                                                                           
        \
sed -e "s,Z,_,g" corba-ops-skels.c > corba-ops-skels.c.out;                     
        \
mv corba-ops-skels.c.out corba-ops-skels.c;
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-interface-common.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-interface-common.c  -fPIC -DPIC -o .libs/orbit-interface-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-interface-common.c -o orbit-interface-common.o >/dev/null 2>&1
mv -f .libs/orbit-interface-common.lo orbit-interface-common.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-defs-common.c
rm -f .libs/corba-defs-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-defs-common.c  -fPIC -DPIC -o .libs/corba-defs-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-defs-common.c -o corba-defs-common.o >/dev/null 2>&1
mv -f .libs/corba-defs-common.lo corba-defs-common.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c iop-defs-common.c
rm -f .libs/iop-defs-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
iop-defs-common.c  -fPIC -DPIC -o .libs/iop-defs-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
iop-defs-common.c -o iop-defs-common.o >/dev/null 2>&1
mv -f .libs/iop-defs-common.lo iop-defs-common.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-ops-stubs.c
rm -f .libs/corba-ops-stubs.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-ops-stubs.c  -fPIC -DPIC -o .libs/corba-ops-stubs.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-ops-stubs.c -o corba-ops-stubs.o >/dev/null 2>&1
mv -f .libs/corba-ops-stubs.lo corba-ops-stubs.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-ops-common.c
rm -f .libs/corba-ops-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-ops-common.c  -fPIC -DPIC -o .libs/corba-ops-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-ops-common.c -o corba-ops-common.o >/dev/null 2>&1
mv -f .libs/corba-ops-common.lo corba-ops-common.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-ops-skels.c
rm -f .libs/corba-ops-skels.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-ops-skels.c  -fPIC -DPIC -o .libs/corba-ops-skels.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-ops-skels.c -o corba-ops-skels.o >/dev/null 2>&1
mv -f .libs/corba-ops-skels.lo corba-ops-skels.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-orb.c
rm -f .libs/corba-orb.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-orb.c  -fPIC -DPIC -o .libs/corba-orb.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-orb.c -o corba-orb.o >/dev/null 2>&1
mv -f .libs/corba-orb.lo corba-orb.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbhttp.c
rm -f .libs/orbhttp.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbhttp.c  -fPIC -DPIC -o .libs/orbhttp.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbhttp.c -o orbhttp.o >/dev/null 2>&1
mv -f .libs/orbhttp.lo orbhttp.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-object.c
rm -f .libs/orbit-object.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-object.c  -fPIC -DPIC -o .libs/orbit-object.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-object.c -o orbit-object.o >/dev/null 2>&1
mv -f .libs/orbit-object.lo orbit-object.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-small.c
rm -f .libs/orbit-small.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-small.c  -fPIC -DPIC -o .libs/orbit-small.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-small.c -o orbit-small.o >/dev/null 2>&1
mv -f .libs/orbit-small.lo orbit-small.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-typelib.c
rm -f .libs/orbit-typelib.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-typelib.c  -fPIC -DPIC -o .libs/orbit-typelib.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-typelib.c -o orbit-typelib.o >/dev/null 2>&1
mv -f .libs/orbit-typelib.lo orbit-typelib.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-trace.c
rm -f .libs/orbit-trace.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-trace.c  -fPIC -DPIC -o .libs/orbit-trace.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-trace.c -o orbit-trace.o >/dev/null 2>&1
mv -f .libs/orbit-trace.lo orbit-trace.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-object.c
rm -f .libs/corba-object.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-object.c  -fPIC -DPIC -o .libs/corba-object.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-object.c -o corba-object.o >/dev/null 2>&1
mv -f .libs/corba-object.lo corba-object.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-policy.c
rm -f .libs/corba-policy.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-policy.c  -fPIC -DPIC -o .libs/corba-policy.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-policy.c -o corba-policy.o >/dev/null 2>&1
mv -f .libs/corba-policy.lo corba-policy.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-env.c
rm -f .libs/corba-env.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-env.c  -fPIC -DPIC -o .libs/corba-env.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-env.c -o corba-env.o >/dev/null 2>&1
mv -f .libs/corba-env.lo corba-env.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-string.c
rm -f .libs/corba-string.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-string.c  -fPIC -DPIC -o .libs/corba-string.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-string.c -o corba-string.o >/dev/null 2>&1
mv -f .libs/corba-string.lo corba-string.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c allocators.c
rm -f .libs/allocators.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
allocators.c  -fPIC -DPIC -o .libs/allocators.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
allocators.c -o allocators.o >/dev/null 2>&1
mv -f .libs/allocators.lo allocators.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-typecode.c
rm -f .libs/corba-typecode.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-typecode.c  -fPIC -DPIC -o .libs/corba-typecode.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-typecode.c -o corba-typecode.o >/dev/null 2>&1
mv -f .libs/corba-typecode.lo corba-typecode.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-types.c
rm -f .libs/corba-types.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-types.c  -fPIC -DPIC -o .libs/corba-types.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-types.c -o corba-types.o >/dev/null 2>&1
mv -f .libs/corba-types.lo corba-types.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-any.c
rm -f .libs/corba-any.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-any.c  -fPIC -DPIC -o .libs/corba-any.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-any.c -o corba-any.o >/dev/null 2>&1
mv -f .libs/corba-any.lo corba-any.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-context.c
rm -f .libs/corba-context.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-context.c  -fPIC -DPIC -o .libs/corba-context.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-context.c -o corba-context.o >/dev/null 2>&1
mv -f .libs/corba-context.lo corba-context.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-nvlist.c
rm -f .libs/corba-nvlist.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-nvlist.c  -fPIC -DPIC -o .libs/corba-nvlist.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-nvlist.c -o corba-nvlist.o >/dev/null 2>&1
mv -f .libs/corba-nvlist.lo corba-nvlist.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c corba-request.c
rm -f .libs/corba-request.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-request.c  -fPIC -DPIC -o .libs/corba-request.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
corba-request.c -o corba-request.o >/dev/null 2>&1
mv -f .libs/corba-request.lo corba-request.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                                      -I.                    
                         -I../../../include                                     
 -I../../../include                              
-I../../../include/orbit/orb-core               
-DORBIT_TYPELIB_DIR=\""/opt/gnome-2.2/lib/orbit-2.0"\"          
-DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c iop-profiles.c
rm -f .libs/iop-profiles.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
iop-profiles.c  -fPIC -DPIC -o .libs/iop-profiles.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I. -I../../../include 
-I../../../include -I../../../include/orbit/orb-core 
-DORBIT_TYPELIB_DIR=\"/opt/gnome-2.2/lib/orbit-2.0\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
iop-profiles.c -o iop-profiles.o >/dev/null 2>&1
mv -f .libs/iop-profiles.lo iop-profiles.lo
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o liborb-core.la   
orbit-interface-common.lo corba-defs-common.lo iop-defs-common.lo 
corba-ops-stubs.lo corba-ops-common.lo corba-ops-skels.lo corba-orb.lo 
orbhttp.lo orbit-object.lo orbit-small.lo orbit-typelib.lo orbit-trace.lo 
corba-object.lo corba-policy.lo corba-env.lo corba-string.lo allocators.lo 
corba-typecode.lo corba-types.lo corba-any.lo corba-context.lo corba-nvlist.lo 
corba-request.lo iop-profiles.lo  
rm -fr .libs/liborb-core.la .libs/liborb-core.* .libs/liborb-core.*
ar cru .libs/liborb-core.al orbit-interface-common.lo corba-defs-common.lo 
iop-defs-common.lo corba-ops-stubs.lo corba-ops-common.lo corba-ops-skels.lo 
corba-orb.lo orbhttp.lo orbit-object.lo orbit-small.lo orbit-typelib.lo 
orbit-trace.lo corba-object.lo corba-policy.lo corba-env.lo corba-string.lo 
allocators.lo corba-typecode.lo corba-types.lo corba-any.lo corba-context.lo 
corba-nvlist.lo corba-request.lo iop-profiles.lo
ranlib .libs/liborb-core.al
creating liborb-core.la
(cd .libs && rm -f liborb-core.la && ln -s ../liborb-core.la liborb-core.la)
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/orb-core'
Making all in util
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/util'
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\"   
         -DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c genrand.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
genrand.c  -fPIC -DPIC -o .libs/genrand.lo
genrand.c: In function `genuid_rand_openssl':
genrand.c:114: warning: assignment discards qualifiers from pointer target type
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
genrand.c -o genrand.o >/dev/null 2>&1
mv -f .libs/genrand.lo genrand.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\"   
         -DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-options.c
rm -f .libs/orbit-options.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-options.c  -fPIC -DPIC -o .libs/orbit-options.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-options.c -o orbit-options.o >/dev/null 2>&1
mv -f .libs/orbit-options.lo orbit-options.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\"   
         -DORBIT2_INTERNAL_API                                   -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                                     
                                                 -DG_DISABLE_DEPRECATED         
                 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-util.c
rm -f .libs/orbit-util.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-util.c  -fPIC -DPIC -o .libs/orbit-util.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT_SYSTEM_RCFILE=\"/opt/gnome-2.2/etc/orbitrc\" -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-util.c -o orbit-util.o >/dev/null 2>&1
mv -f .libs/orbit-util.lo orbit-util.lo
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o liborb-util.la   
genrand.lo orbit-options.lo orbit-util.lo  
rm -fr .libs/liborb-util.la .libs/liborb-util.* .libs/liborb-util.*
ar cru .libs/liborb-util.al genrand.lo orbit-options.lo orbit-util.lo
ranlib .libs/liborb-util.al
creating liborb-util.la
(cd .libs && rm -f liborb-util.la && ln -s ../liborb-util.la liborb-util.la)
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/util'
Making all in GIOP
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/GIOP'
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                      
-DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c 
giop-connection.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-connection.c  -fPIC -DPIC -o .libs/giop-connection.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-connection.c -o giop-connection.o >/dev/null 2>&1
mv -f .libs/giop-connection.lo giop-connection.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                      
-DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c 
giop-server.c
rm -f .libs/giop-server.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-server.c  -fPIC -DPIC -o .libs/giop-server.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-server.c -o giop-server.o >/dev/null 2>&1
mv -f .libs/giop-server.lo giop-server.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                      
-DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c 
giop.c
rm -f .libs/giop.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c giop.c  
-fPIC -DPIC -o .libs/giop.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c giop.c 
-o giop.o >/dev/null 2>&1
mv -f .libs/giop.lo giop.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                      
-DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c 
giop-send-buffer.c
rm -f .libs/giop-send-buffer.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-send-buffer.c  -fPIC -DPIC -o .libs/giop-send-buffer.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-send-buffer.c -o giop-send-buffer.o >/dev/null 2>&1
mv -f .libs/giop-send-buffer.lo giop-send-buffer.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                      
-DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c 
giop-recv-buffer.c
rm -f .libs/giop-recv-buffer.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-recv-buffer.c  -fPIC -DPIC -o .libs/giop-recv-buffer.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-recv-buffer.c -o giop-recv-buffer.o >/dev/null 2>&1
mv -f .libs/giop-recv-buffer.lo giop-recv-buffer.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                      
-DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c 
giop-endian.c
rm -f .libs/giop-endian.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-endian.c  -fPIC -DPIC -o .libs/giop-endian.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
giop-endian.c -o giop-endian.o >/dev/null 2>&1
mv -f .libs/giop-endian.lo giop-endian.lo
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o libGIOP.la   
giop-connection.lo giop-server.lo giop.lo giop-send-buffer.lo 
giop-recv-buffer.lo giop-endian.lo  
rm -fr .libs/libGIOP.la .libs/libGIOP.* .libs/libGIOP.*
ar cru .libs/libGIOP.al giop-connection.lo giop-server.lo giop.lo 
giop-send-buffer.lo giop-recv-buffer.lo giop-endian.lo
ranlib .libs/libGIOP.al
creating libGIOP.la
(cd .libs && rm -f libGIOP.la && ln -s ../libGIOP.la libGIOP.la)
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/GIOP'
Making all in poa
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/poa'
(rm -f poa-defs.h poa-defs-stubs.c poa-defs-skels.c poa-defs-common.c 
poa-defs-imodule.c poa-defs-skelimpl.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
                -I../../../src/idl/CORBA                                        
-I../../../src/idl/misc                                 
-I../../../src/orb/orb-core                             --noskels --nodefskels 
--nostubs --noidata --noheaders          --define=Object=OObject 
--define=TypeCode=TTypeCode             --showcpperrors --deps 
./.deps/poa-defs.idl.P poa-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: common skel_impl imodule

for I in poa-defs.h poa-defs-stubs.c poa-defs-skels.c poa-defs-common.c 
poa-defs-imodule.c poa-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -I../../../src/orb/orb-core                     
-I../../../src/orb/orb-core                     -I../../../include/orbit/poa    
                -I../../../include/orbit/orb-core                       
-I../../../include/orbit/orb-core               -I../../../src/orb/poa          
                -DORBIT2_INTERNAL_API                                   -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations                            
                                                          
-DG_DISABLE_DEPRECATED                          -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c poa-defs-common.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-defs-common.c  -fPIC -DPIC -o .libs/poa-defs-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-defs-common.c -o poa-defs-common.o >/dev/null 2>&1
mv -f .libs/poa-defs-common.lo poa-defs-common.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -I../../../src/orb/orb-core                     
-I../../../src/orb/orb-core                     -I../../../include/orbit/poa    
                -I../../../include/orbit/orb-core                       
-I../../../include/orbit/orb-core               -I../../../src/orb/poa          
                -DORBIT2_INTERNAL_API                                   -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations                            
                                                          
-DG_DISABLE_DEPRECATED                          -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c poa.c
rm -f .libs/poa.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c poa.c  
-fPIC -DPIC -o .libs/poa.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c poa.c 
-o poa.o >/dev/null 2>&1
mv -f .libs/poa.lo poa.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -I../../../src/orb/orb-core                     
-I../../../src/orb/orb-core                     -I../../../include/orbit/poa    
                -I../../../include/orbit/orb-core                       
-I../../../include/orbit/orb-core               -I../../../src/orb/poa          
                -DORBIT2_INTERNAL_API                                   -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations                            
                                                          
-DG_DISABLE_DEPRECATED                          -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c poa-manager.c
rm -f .libs/poa-manager.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-manager.c  -fPIC -DPIC -o .libs/poa-manager.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-manager.c -o poa-manager.o >/dev/null 2>&1
mv -f .libs/poa-manager.lo poa-manager.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -I../../../src/orb/orb-core                     
-I../../../src/orb/orb-core                     -I../../../include/orbit/poa    
                -I../../../include/orbit/orb-core                       
-I../../../include/orbit/orb-core               -I../../../src/orb/poa          
                -DORBIT2_INTERNAL_API                                   -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations                            
                                                          
-DG_DISABLE_DEPRECATED                          -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c poa-policy.c
rm -f .libs/poa-policy.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-policy.c  -fPIC -DPIC -o .libs/poa-policy.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-policy.c -o poa-policy.o >/dev/null 2>&1
mv -f .libs/poa-policy.lo poa-policy.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -I../../../src/orb/orb-core                     
-I../../../src/orb/orb-core                     -I../../../include/orbit/poa    
                -I../../../include/orbit/orb-core                       
-I../../../include/orbit/orb-core               -I../../../src/orb/poa          
                -DORBIT2_INTERNAL_API                                   -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations                            
                                                          
-DG_DISABLE_DEPRECATED                          -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c poa-servants.c
rm -f .libs/poa-servants.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-servants.c  -fPIC -DPIC -o .libs/poa-servants.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
poa-servants.c -o poa-servants.o >/dev/null 2>&1
mv -f .libs/poa-servants.lo poa-servants.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../include     
                         -I../../../src/orb/orb-core                     
-I../../../src/orb/orb-core                     -I../../../include/orbit/poa    
                -I../../../include/orbit/orb-core                       
-I../../../include/orbit/orb-core               -I../../../src/orb/poa          
                -DORBIT2_INTERNAL_API                                   -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations                            
                                                          
-DG_DISABLE_DEPRECATED                          -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-adaptor.c
rm -f .libs/orbit-adaptor.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-adaptor.c  -fPIC -DPIC -o .libs/orbit-adaptor.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-I../../../src/orb/orb-core -I../../../src/orb/orb-core 
-I../../../include/orbit/poa -I../../../include/orbit/orb-core 
-I../../../include/orbit/orb-core -I../../../src/orb/poa -DORBIT2_INTERNAL_API 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
-DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-adaptor.c -o orbit-adaptor.o >/dev/null 2>&1
mv -f .libs/orbit-adaptor.lo orbit-adaptor.lo
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o liborb-poa.la   
poa-defs-common.lo poa.lo poa-manager.lo poa-policy.lo poa-servants.lo 
orbit-adaptor.lo  
rm -fr .libs/liborb-poa.la .libs/liborb-poa.* .libs/liborb-poa.*
ar cru .libs/liborb-poa.al poa-defs-common.lo poa.lo poa-manager.lo 
poa-policy.lo poa-servants.lo orbit-adaptor.lo
ranlib .libs/liborb-poa.al
creating liborb-poa.la
(cd .libs && rm -f liborb-poa.la && ln -s ../liborb-poa.la liborb-poa.la)
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/poa'
Making all in dynamic
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/dynamic'
(rm -f dynamic-defs.h dynamic-defs-stubs.c dynamic-defs-skels.c 
dynamic-defs-common.c dynamic-defs-imodule.c dynamic-defs-skelimpl.c || true) > 
/dev/null
../../../src/idl-compiler/orbit-idl-2 -I../../../src/idl/CORBA_PIDL             
                --define=Object=OObject --define=TypeCode=TTypeCode             
-I../../../src/idl/CORBA                                        
-I../../../src/idl/misc                                 
-I../../../src/orb/orb-core                             --noskels --nodefskels 
--nostubs --noidata --noheaders          --showcpperrors --deps 
./.deps/dynamic-defs.idl.P dynamic-defs.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: common skel_impl imodule

for I in dynamic-defs.h dynamic-defs-stubs.c dynamic-defs-skels.c 
dynamic-defs-common.c dynamic-defs-imodule.c dynamic-defs-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../src/orb     
                                 -I../../../include                             
 -I../../../include/orbit/dynamic                        -DORBIT2_INTERNAL_API  
                                 -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                          
                            -DG_DISABLE_DEPRECATED                          
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c dynamic-defs-common.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../src/orb 
-I../../../include -I../../../include/orbit/dynamic -DORBIT2_INTERNAL_API -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations -DG_DISABLE_DEPRECATED 
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c dynamic-defs-common.c  -fPIC -DPIC 
-o .libs/dynamic-defs-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../src/orb 
-I../../../include -I../../../include/orbit/dynamic -DORBIT2_INTERNAL_API -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations -DG_DISABLE_DEPRECATED 
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c dynamic-defs-common.c -o 
dynamic-defs-common.o >/dev/null 2>&1
mv -f .libs/dynamic-defs-common.lo dynamic-defs-common.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                                       -I../../../src/orb     
                                 -I../../../include                             
 -I../../../include/orbit/dynamic                        -DORBIT2_INTERNAL_API  
                                 -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                                                          
                            -DG_DISABLE_DEPRECATED                          
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c dynany.c
rm -f .libs/dynany.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../src/orb 
-I../../../include -I../../../include/orbit/dynamic -DORBIT2_INTERNAL_API -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations -DG_DISABLE_DEPRECATED 
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c dynany.c  -fPIC -DPIC -o 
.libs/dynany.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../src/orb 
-I../../../include -I../../../include/orbit/dynamic -DORBIT2_INTERNAL_API -Wall 
-Wunused -Wmissing-prototypes -Wmissing-declarations -DG_DISABLE_DEPRECATED 
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c dynany.c -o dynany.o >/dev/null 2>&1
mv -f .libs/dynany.lo dynany.lo
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o liborb-dynamic.la   
dynamic-defs-common.lo dynany.lo  
rm -fr .libs/liborb-dynamic.la .libs/liborb-dynamic.* .libs/liborb-dynamic.*
ar cru .libs/liborb-dynamic.al dynamic-defs-common.lo dynany.lo
ranlib .libs/liborb-dynamic.al
creating liborb-dynamic.la
(cd .libs && rm -f liborb-dynamic.la && ln -s ../liborb-dynamic.la 
liborb-dynamic.la)
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/dynamic'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
/bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I.    
                                        -I.                                     
-I../../include                         -I../../include                 
-DORBIT_VERSION=\"2.6.1\"               -DORBIT2_INTERNAL_API                   
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
                                                        -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c orbit-init.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I. -I. -I../../include -I../../include 
-DORBIT_VERSION=\"2.6.1\" -DORBIT2_INTERNAL_API -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-init.c  -fPIC -DPIC -o .libs/orbit-init.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I. -I. -I../../include -I../../include 
-DORBIT_VERSION=\"2.6.1\" -DORBIT2_INTERNAL_API -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c 
orbit-init.c -o orbit-init.o >/dev/null 2>&1
mv -f .libs/orbit-init.lo orbit-init.lo
/bin/sh ../../libtool --mode=link gcc  -g -O2  -o libORBit-2.la -rpath 
/opt/gnome-2.2/lib -version-info 0:0:0           -pthread -Wl,--export-dynamic 
-L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl 
-lglib-2.0                     -lpopt orbit-init.lo util/liborb-util.la        
GIOP/libGIOP.la         orb-core/liborb-core.la         poa/liborb-poa.la       
dynamic/liborb-dynamic.la 
rm -fr .libs/libORBit-2.la .libs/libORBit-2.* .libs/libORBit-2.*
gcc -shared  orbit-init.lo -Wl,--whole-archive util/.libs/liborb-util.al 
GIOP/.libs/libGIOP.al orb-core/.libs/liborb-core.al poa/.libs/liborb-poa.al 
dynamic/.libs/liborb-dynamic.al -Wl,--no-whole-archive  -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib -Wl,--rpath -Wl,/opt/gnome-2.2/lib -L/usr/lib 
-L/opt/gnome-2.2/lib /opt/gnome-2.2/lib/liblinc.so /usr/lib/libgthread-2.0.so 
/usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so /usr/lib/libpopt.so  -Wl,--export-dynamic -Wl,-soname 
-Wl,libORBit-2.so.0 -o .libs/libORBit-2.so.0.0.0
(cd .libs && rm -f libORBit-2.so.0 && ln -s libORBit-2.so.0.0.0 libORBit-2.so.0)
(cd .libs && rm -f libORBit-2.so && ln -s libORBit-2.so.0.0.0 libORBit-2.so)
rm -fr .libs/libORBit-2.lax
mkdir .libs/libORBit-2.lax
rm -fr .libs/libORBit-2.lax/liborb-util.al
mkdir .libs/libORBit-2.lax/liborb-util.al
(cd .libs/libORBit-2.lax/liborb-util.al && ar x 
/home/setup/gnome/ORBit2-2.6.1/src/orb/util/.libs/liborb-util.al)
rm -fr .libs/libORBit-2.lax/libGIOP.al
mkdir .libs/libORBit-2.lax/libGIOP.al
(cd .libs/libORBit-2.lax/libGIOP.al && ar x 
/home/setup/gnome/ORBit2-2.6.1/src/orb/GIOP/.libs/libGIOP.al)
rm -fr .libs/libORBit-2.lax/liborb-core.al
mkdir .libs/libORBit-2.lax/liborb-core.al
(cd .libs/libORBit-2.lax/liborb-core.al && ar x 
/home/setup/gnome/ORBit2-2.6.1/src/orb/orb-core/.libs/liborb-core.al)
rm -fr .libs/libORBit-2.lax/liborb-poa.al
mkdir .libs/libORBit-2.lax/liborb-poa.al
(cd .libs/libORBit-2.lax/liborb-poa.al && ar x 
/home/setup/gnome/ORBit2-2.6.1/src/orb/poa/.libs/liborb-poa.al)
rm -fr .libs/libORBit-2.lax/liborb-dynamic.al
mkdir .libs/libORBit-2.lax/liborb-dynamic.al
(cd .libs/libORBit-2.lax/liborb-dynamic.al && ar x 
/home/setup/gnome/ORBit2-2.6.1/src/orb/dynamic/.libs/liborb-dynamic.al)
ar cru .libs/libORBit-2.a  orbit-init.o  
.libs/libORBit-2.lax/liborb-util.al/genrand.lo 
.libs/libORBit-2.lax/liborb-util.al/orbit-options.lo 
.libs/libORBit-2.lax/liborb-util.al/orbit-util.lo  
.libs/libORBit-2.lax/libGIOP.al/giop.lo 
.libs/libORBit-2.lax/libGIOP.al/giop-send-buffer.lo 
.libs/libORBit-2.lax/libGIOP.al/giop-endian.lo 
.libs/libORBit-2.lax/libGIOP.al/giop-server.lo 
.libs/libORBit-2.lax/libGIOP.al/giop-recv-buffer.lo 
.libs/libORBit-2.lax/libGIOP.al/giop-connection.lo  
.libs/libORBit-2.lax/liborb-core.al/corba-request.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-policy.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-string.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-ops-skels.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-any.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-orb.lo 
.libs/libORBit-2.lax/liborb-core.al/iop-defs-common.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-types.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-ops-common.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-env.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-ops-stubs.lo 
.libs/libORBit-2.lax/liborb-core.al/orbhttp.lo 
.libs/libORBit-2.lax/liborb-core.al/allocators.lo 
.libs/libORBit-2.lax/liborb-core.al/orbit-interface-common.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-nvlist.lo 
.libs/libORBit-2.lax/liborb-core.al/orbit-trace.lo 
.libs/libORBit-2.lax/liborb-core.al/orbit-object.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-typecode.lo 
.libs/libORBit-2.lax/liborb-core.al/iop-profiles.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-object.lo 
.libs/libORBit-2.lax/liborb-core.al/orbit-typelib.lo 
.libs/libORBit-2.lax/liborb-core.al/orbit-small.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-defs-common.lo 
.libs/libORBit-2.lax/liborb-core.al/corba-context.lo  
.libs/libORBit-2.lax/liborb-poa.al/orbit-adaptor.lo 
.libs/libORBit-2.lax/liborb-poa.al/poa-defs-common.lo 
.libs/libORBit-2.lax/liborb-poa.al/poa.lo 
.libs/libORBit-2.lax/liborb-poa.al/poa-manager.lo 
.libs/libORBit-2.lax/liborb-poa.al/poa-policy.lo 
.libs/libORBit-2.lax/liborb-poa.al/poa-servants.lo  
.libs/libORBit-2.lax/liborb-dynamic.al/dynamic-defs-common.lo 
.libs/libORBit-2.lax/liborb-dynamic.al/dynany.lo 
ranlib .libs/libORBit-2.a
rm -fr .libs/libORBit-2.lax
creating libORBit-2.la
(cd .libs && rm -f libORBit-2.la && ln -s ../libORBit-2.la libORBit-2.la)
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
Making all in services
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
Making all in name
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services/name'
(rm -f CosNaming.h CosNaming-stubs.c CosNaming-skels.c CosNaming-common.c 
CosNaming-imodule.c CosNaming-skelimpl.c || true) > /dev/null
../../../src/idl-compiler/orbit-idl-2 --showcpperrors --deps 
./.deps/CosNaming.idl.P CosNaming.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in CosNaming.h CosNaming-stubs.c CosNaming-skels.c CosNaming-common.c 
CosNaming-imodule.c CosNaming-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I.                                      
-I../../../include              -I../../../include                      
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -DG_DISABLE_DEPRECATED      
    -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -I/opt/gnome-2.2/include/linc-1.0      -g 
-O2 -c orbit-name-server.c
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I.                                      
-I../../../include              -I../../../include                      
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -DG_DISABLE_DEPRECATED      
    -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -I/opt/gnome-2.2/include/linc-1.0      -g 
-O2 -c CosNaming-skels.c
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I.                                      
-I../../../include              -I../../../include                      
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -DG_DISABLE_DEPRECATED      
    -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -I/opt/gnome-2.2/include/linc-1.0      -g 
-O2 -c name-support.c
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                      -I../../../include              
-I../../../include                      -DORBIT2_INTERNAL_API                   
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations                      
        -DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c CosNaming-common.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I../../../include 
-I../../../include -DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c CosNaming-common.c  -fPIC -DPIC -o 
.libs/CosNaming-common.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I../../../include 
-I../../../include -DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c CosNaming-common.c -o 
CosNaming-common.o >/dev/null 2>&1
mv -f .libs/CosNaming-common.lo CosNaming-common.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I.                                      -I../../../include              
-I../../../include                      -DORBIT2_INTERNAL_API                   
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations                      
        -DG_DISABLE_DEPRECATED          -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c CosNaming-stubs.c
rm -f .libs/CosNaming-stubs.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I../../../include 
-I../../../include -DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c CosNaming-stubs.c  -fPIC -DPIC -o 
.libs/CosNaming-stubs.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I. -I../../../include 
-I../../../include -DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -DG_DISABLE_DEPRECATED -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/libIDL-2.0 
-I/opt/gnome-2.2/include/linc-1.0 -g -O2 -c CosNaming-stubs.c -o 
CosNaming-stubs.o >/dev/null 2>&1
mv -f .libs/CosNaming-stubs.lo CosNaming-stubs.lo
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o libORBitCosNaming-2.la 
-rpath /opt/gnome-2.2/lib ../../../src/orb/libORBit-2.la CosNaming-common.lo 
CosNaming-stubs.lo  
rm -fr .libs/libORBitCosNaming-2.la .libs/libORBitCosNaming-2.* 
.libs/libORBitCosNaming-2.*
gcc -shared  CosNaming-common.lo CosNaming-stubs.lo  -Wl,--rpath 
-Wl,/home/setup/gnome/ORBit2-2.6.1/src/orb/.libs -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib  -L/usr/lib -L/opt/gnome-2.2/lib 
../../../src/orb/.libs/libORBit-2.so   -Wl,-soname -Wl,libORBitCosNaming-2.so.0 
-o .libs/libORBitCosNaming-2.so.0.0.0
(cd .libs && rm -f libORBitCosNaming-2.so.0 && ln -s 
libORBitCosNaming-2.so.0.0.0 libORBitCosNaming-2.so.0)
(cd .libs && rm -f libORBitCosNaming-2.so && ln -s libORBitCosNaming-2.so.0.0.0 
libORBitCosNaming-2.so)
ar cru .libs/libORBitCosNaming-2.a  CosNaming-common.o CosNaming-stubs.o 
ranlib .libs/libORBitCosNaming-2.a
creating libORBitCosNaming-2.la
(cd .libs && rm -f libORBitCosNaming-2.la && ln -s ../libORBitCosNaming-2.la 
libORBitCosNaming-2.la)
rm -f libname-server-2.a
ar cru libname-server-2.a orbit-name-server.o CosNaming-skels.o name-support.o 
ranlib libname-server-2.a
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I.                                      
-I../../../include              -I../../../include                      
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -DG_DISABLE_DEPRECATED      
    -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -I/opt/gnome-2.2/include/linc-1.0      -g 
-O2 -c name-client.c
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o name-client-2  
name-client.o name-support.o ../../../src/orb/libORBit-2.la                     
    libORBitCosNaming-2.la                                          -lm         
                                                    -pthread 
-L/opt/gnome-2.2/lib -lIDL-2 -llinc -lgobject-2.0 -lgthread-2.0 -lglib-2.0   
gcc -g -O2 -o .libs/name-client-2 name-client.o name-support.o -pthread  
../../../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib 
./.libs/libORBitCosNaming-2.so 
/home/setup/gnome/ORBit2-2.6.1/src/orb/.libs/libORBit-2.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libpopt.so -lm 
/opt/gnome-2.2/lib/libIDL-2.so /opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto 
/usr/lib/libgobject-2.0.so /usr/lib/libgthread-2.0.so -lpthread 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating name-client-2
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I.                                      
-I../../../include              -I../../../include                      
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -DG_DISABLE_DEPRECATED      
    -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -I/opt/gnome-2.2/include/linc-1.0      -g 
-O2 -c boot.c
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o orbit-name-server-2  
boot.o libname-server-2.a ../../../src/orb/libORBit-2.la                        
      libORBitCosNaming-2.la                                          -lm       
                                                      -pthread 
-L/opt/gnome-2.2/lib -lIDL-2 -llinc -lgobject-2.0 -lgthread-2.0 -lglib-2.0   
gcc -g -O2 -o .libs/orbit-name-server-2 boot.o -pthread  libname-server-2.a 
../../../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib 
./.libs/libORBitCosNaming-2.so 
/home/setup/gnome/ORBit2-2.6.1/src/orb/.libs/libORBit-2.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libpopt.so -lm 
/opt/gnome-2.2/lib/libIDL-2.so /opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto 
/usr/lib/libgobject-2.0.so /usr/lib/libgthread-2.0.so -lpthread 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating orbit-name-server-2
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services/name'
Making all in imodule
make[4]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/src/services/imodule'
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0                             -g -O2 -c 
orbit-imodule-utils.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c orbit-imodule-utils.c  -fPIC 
-DPIC -o .libs/orbit-imodule-utils.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c orbit-imodule-utils.c -o 
orbit-imodule-utils.o >/dev/null 2>&1
mv -f .libs/orbit-imodule-utils.lo orbit-imodule-utils.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0                             -g -O2 -c 
orbit-imodule-libidl-utils.c
rm -f .libs/orbit-imodule-libidl-utils.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c orbit-imodule-libidl-utils.c  
-fPIC -DPIC -o .libs/orbit-imodule-libidl-utils.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c orbit-imodule-libidl-utils.c -o 
orbit-imodule-libidl-utils.o >/dev/null 2>&1
mv -f .libs/orbit-imodule-libidl-utils.lo orbit-imodule-libidl-utils.lo
/bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. 
-I../../../include                       -I../../../include              
-DORBIT2_INTERNAL_API                   -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations                              -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0                             -g -O2 -c 
orbit-imodule.c
rm -f .libs/orbit-imodule.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c orbit-imodule.c  -fPIC -DPIC -o 
.libs/orbit-imodule.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../include -I../../../include 
-DORBIT2_INTERNAL_API -Wall -Wunused -Wmissing-prototypes 
-Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c orbit-imodule.c -o 
orbit-imodule.o >/dev/null 2>&1
mv -f .libs/orbit-imodule.lo orbit-imodule.lo
/bin/sh ../../../libtool --mode=link gcc  -g -O2  -o libORBit-imodule-2.la 
-rpath /opt/gnome-2.2/lib  orbit-imodule-utils.lo orbit-imodule-libidl-utils.lo 
orbit-imodule.lo  
rm -fr .libs/libORBit-imodule-2.la .libs/libORBit-imodule-2.* 
.libs/libORBit-imodule-2.*
gcc -shared  orbit-imodule-utils.lo orbit-imodule-libidl-utils.lo 
orbit-imodule.lo   -Wl,-soname -Wl,libORBit-imodule-2.so.0 -o 
.libs/libORBit-imodule-2.so.0.0.0
(cd .libs && rm -f libORBit-imodule-2.so.0 && ln -s libORBit-imodule-2.so.0.0.0 
libORBit-imodule-2.so.0)
(cd .libs && rm -f libORBit-imodule-2.so && ln -s libORBit-imodule-2.so.0.0.0 
libORBit-imodule-2.so)
ar cru .libs/libORBit-imodule-2.a  orbit-imodule-utils.o 
orbit-imodule-libidl-utils.o orbit-imodule.o 
ranlib .libs/libORBit-imodule-2.a
creating libORBit-imodule-2.la
(cd .libs && rm -f libORBit-imodule-2.la && ln -s ../libORBit-imodule-2.la 
libORBit-imodule-2.la)
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services/imodule'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src'
Making all in include
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include'
Making all in orbit
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
Making all in GIOP
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
Making all in util
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
Making all in orb-core
make[4]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
Making all in poa
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
Making all in dynamic
make[4]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include'
Making all in test
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test'
Making all in everything
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/everything'
(rm -f everything.h everything-stubs.c everything-skels.c everything-common.c 
everything-imodule.c everything-skelimpl.c || true) > /dev/null
../../src/idl-compiler/orbit-idl-2 --showcpperrors --add-imodule --deps 
./.deps/everything.idl.P everything.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in everything.h everything-stubs.c everything-skels.c everything-common.c 
everything-imodule.c everything-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
/bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. 
-I../../include                -I../../include                 -I../../src      
               -I../../src/ORBitutil           -I../../src/orb                 
-I../../src                     -I../../src/services/imodule    
-DORBIT2_INTERNAL_API                      
-DTEST_SRCDIR=\""../.."/test/everything\"    -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                      -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c everything-imodule.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include -I../../include -I../../src 
-I../../src/ORBitutil -I../../src/orb -I../../src -I../../src/services/imodule 
-DORBIT2_INTERNAL_API -DTEST_SRCDIR=\"../../test/everything\" -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c everything-imodule.c  -fPIC -DPIC 
-o .libs/everything-imodule.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include -I../../include -I../../src 
-I../../src/ORBitutil -I../../src/orb -I../../src -I../../src/services/imodule 
-DORBIT2_INTERNAL_API -DTEST_SRCDIR=\"../../test/everything\" -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/opt/gnome-2.2/include/linc-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0 -g -O2 -c everything-imodule.c -o 
everything-imodule.o >/dev/null 2>&1
mv -f .libs/everything-imodule.lo everything-imodule.lo
/bin/sh ../../libtool --mode=link gcc  -g -O2  -o Everything_module.la -rpath 
/opt/gnome-2.2/lib/orbit-2.0 -export-dynamic -module everything-imodule.lo 
../../src/orb/libORBit-2.la 
rm -fr .libs/Everything_module.la .libs/Everything_module.* 
.libs/Everything_module.*
gcc -shared  everything-imodule.lo  -Wl,--rpath 
-Wl,/home/setup/gnome/ORBit2-2.6.1/src/orb/.libs -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib  -L/usr/lib -L/opt/gnome-2.2/lib 
../../src/orb/.libs/libORBit-2.so   -Wl,-soname -Wl,Everything_module.so.0 -o 
.libs/Everything_module.so.0.0.0
(cd .libs && rm -f Everything_module.so.0 && ln -s Everything_module.so.0.0.0 
Everything_module.so.0)
(cd .libs && rm -f Everything_module.so && ln -s Everything_module.so.0.0.0 
Everything_module.so)
ar cru .libs/Everything_module.a  everything-imodule.o 
ranlib .libs/Everything_module.a
creating Everything_module.la
(cd .libs && rm -f Everything_module.la && ln -s ../Everything_module.la 
Everything_module.la)
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
                -I../../src                     -I../../src/ORBitutil           
-I../../src/orb                 -I../../src                     
-I../../src/services/imodule    -DORBIT2_INTERNAL_API                      
-DTEST_SRCDIR=\""../.."/test/everything\"    -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                      -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c everything-skels.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
                -I../../src                     -I../../src/ORBitutil           
-I../../src/orb                 -I../../src                     
-I../../src/services/imodule    -DORBIT2_INTERNAL_API                      
-DTEST_SRCDIR=\""../.."/test/everything\"    -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                      -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c everything-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
                -I../../src                     -I../../src/ORBitutil           
-I../../src/orb                 -I../../src                     
-I../../src/services/imodule    -DORBIT2_INTERNAL_API                      
-DTEST_SRCDIR=\""../.."/test/everything\"    -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                      -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c everything-common.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
                -I../../src                     -I../../src/ORBitutil           
-I../../src/orb                 -I../../src                     
-I../../src/services/imodule    -DORBIT2_INTERNAL_API                      
-DTEST_SRCDIR=\""../.."/test/everything\"    -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                      -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c client.c
/bin/sh ../../libtool --mode=link gcc  -g -O2  -o client -static -module 
everything-skels.o everything-stubs.o everything-common.o client.o 
../../src/orb/libORBit-2.la                                 
../../src/services/imodule/libORBit-imodule-2.la                
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -lIDL-2 -lgobject-2.0 -lgmodule-2.0 
-ldl -lglib-2.0                                                   -pthread 
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o client everything-skels.o everything-stubs.o everything-common.o 
client.o -Wl,--export-dynamic -pthread -Wl,--export-dynamic  
../../src/orb/.libs/libORBit-2.a -L/opt/gnome-2.2/lib /usr/lib/libpopt.a 
../../src/services/imodule/.libs/libORBit-imodule-2.a 
/opt/gnome-2.2/lib/libIDL-2.a /opt/gnome-2.2/lib/liblinc.a -lssl -lcrypto 
/usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
                -I../../src                     -I../../src/ORBitutil           
-I../../src/orb                 -I../../src                     
-I../../src/services/imodule    -DORBIT2_INTERNAL_API                      
-DTEST_SRCDIR=\""../.."/test/everything\"    -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                      -pthread 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0                                  
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/libIDL-2.0      -g -O2 -c server.c
/bin/sh ../../libtool --mode=link gcc  -g -O2  -o server -static -module 
server.o everything-skels.o everything-stubs.o everything-common.o 
../../src/orb/libORBit-2.la                                 
../../src/services/imodule/libORBit-imodule-2.la                
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -lIDL-2 -lgobject-2.0 -lgmodule-2.0 
-ldl -lglib-2.0                                                   -pthread 
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o server server.o everything-skels.o everything-stubs.o 
everything-common.o -Wl,--export-dynamic -pthread -Wl,--export-dynamic  
../../src/orb/.libs/libORBit-2.a -L/opt/gnome-2.2/lib /usr/lib/libpopt.a 
../../src/services/imodule/.libs/libORBit-imodule-2.a 
/opt/gnome-2.2/lib/libIDL-2.a /opt/gnome-2.2/lib/liblinc.a -lssl -lcrypto 
/usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/everything'
Making all in inhibit
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/inhibit'
(rm -f foo.h foo-stubs.c foo-skels.c foo-common.c foo-imodule.c foo-skelimpl.c 
|| true) > /dev/null
../../src/idl-compiler/orbit-idl-2 --showcpperrors -I. --deps ./.deps/foo.idl.P 
foo.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in foo.h foo-stubs.c foo-skels.c foo-common.c foo-imodule.c 
foo-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
        -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c foo-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
        -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c foo-skels.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
        -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c foo-common.c
(rm -f baa.h baa-stubs.c baa-skels.c baa-common.c baa-imodule.c baa-skelimpl.c 
|| true) > /dev/null
../../src/idl-compiler/orbit-idl-2 --showcpperrors -I. --deps ./.deps/baa.idl.P 
baa.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in baa.h baa-stubs.c baa-skels.c baa-common.c baa-imodule.c 
baa-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
        -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c baa-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
        -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c baa-skels.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
        -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c baa-common.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include             -I../../include 
        -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations              
        -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-inhibit.c
/bin/sh ../../libtool --mode=link gcc  -g -O2  -o test-inhibit  foo-stubs.o 
foo-skels.o foo-common.o baa-stubs.o baa-skels.o baa-common.o test-inhibit.o 
../../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
mkdir .libs
gcc -g -O2 -o .libs/test-inhibit foo-stubs.o foo-skels.o foo-common.o 
baa-stubs.o baa-skels.o baa-common.o test-inhibit.o -pthread 
-Wl,--export-dynamic  ../../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib 
/usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto 
/usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating test-inhibit
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/inhibit'
Making all in poa
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/poa'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/poa'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test'
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c ior-decode.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o ior-decode-2  ior-decode.o 
../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
mkdir .libs
gcc -g -O2 -o .libs/ior-decode-2 ior-decode.o -pthread -Wl,--export-dynamic  
../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib /usr/lib/libpopt.so 
/opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto /usr/lib/libgthread-2.0.so 
-lpthread /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating ior-decode-2
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c typelib-dump.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o typelib-dump  typelib-dump.o 
../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/typelib-dump typelib-dump.o -pthread -Wl,--export-dynamic  
../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib /usr/lib/libpopt.so 
/opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto /usr/lib/libgthread-2.0.so 
-lpthread /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating typelib-dump
(rm -f test1.h test1-stubs.c test1-skels.c test1-common.c test1-imodule.c 
test1-skelimpl.c || true) > /dev/null
../src/idl-compiler/orbit-idl-2 --showcpperrors --deps ./.deps/test1.idl.P 
test1.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in test1.h test1-stubs.c test1-skels.c test1-common.c test1-imodule.c 
test1-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test1.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test1-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test1-skels.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test1-common.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o test1  test1.o test1-stubs.o 
test1-skels.o test1-common.o ../src/orb/libORBit-2.la -pthread 
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/test1 test1.o test1-stubs.o test1-skels.o test1-common.o 
-pthread -Wl,--export-dynamic  ../src/orb/.libs/libORBit-2.so 
-L/opt/gnome-2.2/lib /usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl 
-lcrypto /usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating test1
(rm -f echo.h echo-stubs.c echo-skels.c echo-common.c echo-imodule.c 
echo-skelimpl.c || true) > /dev/null
../src/idl-compiler/orbit-idl-2 --showcpperrors --deps ./.deps/echo.idl.P 
echo.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in echo.h echo-stubs.c echo-skels.c echo-common.c echo-imodule.c 
echo-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c echo-client.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c echo-common.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c echo-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c echo-skels.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o echo-client  echo-client.o 
echo-common.o echo-stubs.o echo-skels.o ../src/orb/libORBit-2.la -pthread 
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/echo-client echo-client.o echo-common.o echo-stubs.o 
echo-skels.o -pthread -Wl,--export-dynamic  ../src/orb/.libs/libORBit-2.so 
-L/opt/gnome-2.2/lib /usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl 
-lcrypto /usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating echo-client
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c echo-client-t.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o echo-client-t  echo-client-t.o 
echo-common.o echo-stubs.o echo-skels.o ../src/orb/libORBit-2.la -pthread 
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/echo-client-t echo-client-t.o echo-common.o echo-stubs.o 
echo-skels.o -pthread -Wl,--export-dynamic  ../src/orb/.libs/libORBit-2.so 
-L/opt/gnome-2.2/lib /usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl 
-lcrypto /usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating echo-client-t
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c echo-server.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c echo-srv.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o echo-server  echo-server.o 
echo-srv.o echo-common.o echo-stubs.o echo-skels.o ../src/orb/libORBit-2.la 
-pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/echo-server echo-server.o echo-srv.o echo-common.o 
echo-stubs.o echo-skels.o -pthread -Wl,--export-dynamic  
../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib /usr/lib/libpopt.so 
/opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto /usr/lib/libgthread-2.0.so 
-lpthread /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating echo-server
(rm -f empty.h empty-stubs.c empty-skels.c empty-common.c empty-imodule.c 
empty-skelimpl.c || true) > /dev/null
../src/idl-compiler/orbit-idl-2 --showcpperrors --deps ./.deps/empty.idl.P 
empty.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in empty.h empty-stubs.c empty-skels.c empty-common.c empty-imodule.c 
empty-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c empty-client.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c empty-common.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c empty-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c empty-skels.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o empty-client  empty-client.o 
empty-common.o empty-stubs.o empty-skels.o ../src/orb/libORBit-2.la -pthread 
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/empty-client empty-client.o empty-common.o empty-stubs.o 
empty-skels.o -pthread -Wl,--export-dynamic  ../src/orb/.libs/libORBit-2.so 
-L/opt/gnome-2.2/lib /usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl 
-lcrypto /usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating empty-client
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c empty-server.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o empty-server  empty-server.o 
empty-common.o empty-stubs.o empty-skels.o ../src/orb/libORBit-2.la -pthread 
-Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/empty-server empty-server.o empty-common.o empty-stubs.o 
empty-skels.o -pthread -Wl,--export-dynamic  ../src/orb/.libs/libORBit-2.so 
-L/opt/gnome-2.2/lib /usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl 
-lcrypto /usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating empty-server
(rm -f test-any.h test-any-stubs.c test-any-skels.c test-any-common.c 
test-any-imodule.c test-any-skelimpl.c || true) > /dev/null
../src/idl-compiler/orbit-idl-2 --showcpperrors --deps ./.deps/test-any.idl.P 
test-any.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in test-any.h test-any-stubs.c test-any-skels.c test-any-common.c 
test-any-imodule.c test-any-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-any-client.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-any-common.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-any-stubs.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-any-skels.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o test-any-client  
test-any-client.o test-any-common.o test-any-stubs.o test-any-skels.o 
../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/test-any-client test-any-client.o test-any-common.o 
test-any-stubs.o test-any-skels.o -pthread -Wl,--export-dynamic  
../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib /usr/lib/libpopt.so 
/opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto /usr/lib/libgthread-2.0.so 
-lpthread /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating test-any-client
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-any-server.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o test-any-server  
test-any-server.o test-any-common.o test-any-stubs.o test-any-skels.o 
../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/test-any-server test-any-server.o test-any-common.o 
test-any-stubs.o test-any-skels.o -pthread -Wl,--export-dynamic  
../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib /usr/lib/libpopt.so 
/opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto /usr/lib/libgthread-2.0.so 
-lpthread /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating test-any-server
(rm -f dynany.h dynany-stubs.c dynany-skels.c dynany-common.c dynany-imodule.c 
dynany-skelimpl.c || true) > /dev/null
../src/idl-compiler/orbit-idl-2 --showcpperrors --deps ./.deps/dynany.idl.P 
dynany.idl 
orbit-idl-2 2.6.1 compiling
  mode, show preprocessor errors, passes: stubs skels common headers skel_impl 
imodule

for I in dynany.h dynany-stubs.c dynany-skels.c dynany-common.c 
dynany-imodule.c dynany-skelimpl.c; do \
        if test -f $I; then \
                sed -e 's,OObject,Object,g' -e 's,TTypeCode,TypeCode,g' $I > 
$I.out; \
                mv $I.out $I ; \
        fi; \
done
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c dynany-common.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-dynany.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o test-dynany -lm dynany-common.o 
test-dynany.o ../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic 
-L/opt/gnome-2.2/lib -llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl 
-lglib-2.0   
gcc -g -O2 -o .libs/test-dynany dynany-common.o test-dynany.o -pthread 
-Wl,--export-dynamic  -lm ../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib 
/usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto 
/usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating test-dynany
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-mem.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o test-mem  test-mem.o 
../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/test-mem test-mem.o -pthread -Wl,--export-dynamic  
../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib /usr/lib/libpopt.so 
/opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto /usr/lib/libgthread-2.0.so 
-lpthread /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating test-mem
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-performance.c
/bin/sh ../libtool --mode=link gcc  -g -O2  -o test-performance  
test-performance.o test1-skels.o test1-common.o ../src/orb/libORBit-2.la 
-pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib -llinc -lgthread-2.0 
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/test-performance test-performance.o test1-skels.o 
test1-common.o -pthread -Wl,--export-dynamic  ../src/orb/.libs/libORBit-2.so 
-L/opt/gnome-2.2/lib /usr/lib/libpopt.so /opt/gnome-2.2/lib/liblinc.so -lssl 
-lcrypto /usr/lib/libgthread-2.0.so -lpthread /usr/lib/libgobject-2.0.so 
/usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib
creating test-performance
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include           -I../src/orb            
-I../include    -DORBIT2_INTERNAL_API           -Wall -Wunused 
-Wmissing-prototypes -Wmissing-declarations                              
-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/opt/gnome-2.2/include/linc-1.0      -g -O2 -c test-giop.c
test-giop.c:13:4: warning: #warning GIOP test hooks only enabled in a debugging 
build
/bin/sh ../libtool --mode=link gcc  -g -O2  -o test-giop  test-giop.o 
../src/orb/libORBit-2.la -pthread -Wl,--export-dynamic -L/opt/gnome-2.2/lib 
-llinc -lgthread-2.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
gcc -g -O2 -o .libs/test-giop test-giop.o -pthread -Wl,--export-dynamic  
../src/orb/.libs/libORBit-2.so -L/opt/gnome-2.2/lib /usr/lib/libpopt.so 
/opt/gnome-2.2/lib/liblinc.so -lssl -lcrypto /usr/lib/libgthread-2.0.so 
-lpthread /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so -Wl,--rpath -Wl,/opt/gnome-2.2/lib
creating test-giop
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test'
Making all in docs
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs'
Making all in devel
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs/devel'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs/devel'
Making all in internals
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs/internals'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs/internals'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1'
make[1]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1'
Making install in src
make[1]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src'
Making install in idl-compiler
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
/bin/sh ../../mkinstalldirs /opt/gnome-2.2/bin
 /bin/sh ../../libtool  --mode=install /bin/install -c  orbit-idl-2 
/opt/gnome-2.2/bin/orbit-idl-2
/bin/install -c orbit-idl-2 /opt/gnome-2.2/bin/orbit-idl-2
/bin/sh ../../mkinstalldirs /opt/gnome-2.2/lib/pkgconfig
 /bin/install -c -m 644 ./ORBit-idl-2.0.pc 
/opt/gnome-2.2/lib/pkgconfig/ORBit-idl-2.0.pc
/bin/sh ../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/orbit-idl
 /bin/install -c -m 644 orbit-idl-backend.h 
/opt/gnome-2.2/include/orbit-2.0/orbit-idl/orbit-idl-backend.h
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
Making install in idl
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
Making install in CORBA
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA'
Making install in CORBA_PIDL
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA_PIDL'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA_PIDL'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA_PIDL'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/CORBA_PIDL'
Making install in interop
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/interop'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/interop'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/interop'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/interop'
Making install in misc
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/misc'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/misc'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/misc'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl/misc'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl'
Making install in orb
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
Making install in include
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/include'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/include'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/include'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/include'
Making install in orb-core
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/orb-core'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/idl-compiler'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/orb-core'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/orb-core'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/orb-core'
Making install in util
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/util'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/util'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/util'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/util'
Making install in GIOP
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/GIOP'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/GIOP'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/GIOP'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/GIOP'
Making install in poa
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/poa'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/poa'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/poa'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/poa'
Making install in dynamic
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/dynamic'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/dynamic'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/dynamic'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb/dynamic'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
/bin/sh ../../mkinstalldirs /opt/gnome-2.2/lib
/bin/sh ../../libtool  --mode=install /bin/install -c libORBit-2.la 
/opt/gnome-2.2/lib/libORBit-2.la
/bin/install -c .libs/libORBit-2.so.0.0.0 /opt/gnome-2.2/lib/libORBit-2.so.0.0.0
(cd /opt/gnome-2.2/lib && rm -f libORBit-2.so.0 && ln -s libORBit-2.so.0.0.0 
libORBit-2.so.0)
(cd /opt/gnome-2.2/lib && rm -f libORBit-2.so && ln -s libORBit-2.so.0.0.0 
libORBit-2.so)
/bin/install -c .libs/libORBit-2.lai /opt/gnome-2.2/lib/libORBit-2.la
/bin/install -c .libs/libORBit-2.a /opt/gnome-2.2/lib/libORBit-2.a
ranlib /opt/gnome-2.2/lib/libORBit-2.a
chmod 644 /opt/gnome-2.2/lib/libORBit-2.a
PATH="$PATH:/sbin" ldconfig -n /opt/gnome-2.2/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /opt/gnome-2.2/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/orb'
Making install in services
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
Making install in name
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services/name'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services/name'
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/lib
 /bin/install -c -m 644 libname-server-2.a /opt/gnome-2.2/lib/libname-server-2.a
 ranlib /opt/gnome-2.2/lib/libname-server-2.a
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/lib
/bin/sh ../../../libtool  --mode=install /bin/install -c libORBitCosNaming-2.la 
/opt/gnome-2.2/lib/libORBitCosNaming-2.la
libtool: install: warning: relinking `libORBitCosNaming-2.la'
(cd /home/setup/gnome/ORBit2-2.6.1/src/services/name; /bin/sh ../../../libtool 
--mode=relink gcc -g -O2 -o libORBitCosNaming-2.la -rpath /opt/gnome-2.2/lib 
../../../src/orb/libORBit-2.la CosNaming-common.lo CosNaming-stubs.lo )
gcc -shared  CosNaming-common.lo CosNaming-stubs.lo  -Wl,--rpath 
-Wl,/opt/gnome-2.2/lib  -L/usr/lib -L/opt/gnome-2.2/lib -lORBit-2   -Wl,-soname 
-Wl,libORBitCosNaming-2.so.0 -o .libs/libORBitCosNaming-2.so.0.0.0
/bin/install -c .libs/libORBitCosNaming-2.so.0.0.0T 
/opt/gnome-2.2/lib/libORBitCosNaming-2.so.0.0.0
(cd /opt/gnome-2.2/lib && rm -f libORBitCosNaming-2.so.0 && ln -s 
libORBitCosNaming-2.so.0.0.0 libORBitCosNaming-2.so.0)
(cd /opt/gnome-2.2/lib && rm -f libORBitCosNaming-2.so && ln -s 
libORBitCosNaming-2.so.0.0.0 libORBitCosNaming-2.so)
/bin/install -c .libs/libORBitCosNaming-2.lai 
/opt/gnome-2.2/lib/libORBitCosNaming-2.la
/bin/install -c .libs/libORBitCosNaming-2.a 
/opt/gnome-2.2/lib/libORBitCosNaming-2.a
ranlib /opt/gnome-2.2/lib/libORBitCosNaming-2.a
chmod 644 /opt/gnome-2.2/lib/libORBitCosNaming-2.a
PATH="$PATH:/sbin" ldconfig -n /opt/gnome-2.2/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /opt/gnome-2.2/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/share/idl/orbit-2.0
 /bin/install -c -m 644 ./CosNaming.idl 
/opt/gnome-2.2/share/idl/orbit-2.0/CosNaming.idl
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/ORBitservices
 /bin/install -c -m 644 CosNaming.h 
/opt/gnome-2.2/include/orbit-2.0/ORBitservices/CosNaming.h
 /bin/install -c -m 644 CosNaming_impl.h 
/opt/gnome-2.2/include/orbit-2.0/ORBitservices/CosNaming_impl.h
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services/name'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services/name'
Making install in imodule
make[3]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/src/services/imodule'
make[4]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/src/services/imodule'
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/lib
/bin/sh ../../../libtool  --mode=install /bin/install -c libORBit-imodule-2.la 
/opt/gnome-2.2/lib/libORBit-imodule-2.la
/bin/install -c .libs/libORBit-imodule-2.so.0.0.0 
/opt/gnome-2.2/lib/libORBit-imodule-2.so.0.0.0
(cd /opt/gnome-2.2/lib && rm -f libORBit-imodule-2.so.0 && ln -s 
libORBit-imodule-2.so.0.0.0 libORBit-imodule-2.so.0)
(cd /opt/gnome-2.2/lib && rm -f libORBit-imodule-2.so && ln -s 
libORBit-imodule-2.so.0.0.0 libORBit-imodule-2.so)
/bin/install -c .libs/libORBit-imodule-2.lai 
/opt/gnome-2.2/lib/libORBit-imodule-2.la
/bin/install -c .libs/libORBit-imodule-2.a 
/opt/gnome-2.2/lib/libORBit-imodule-2.a
ranlib /opt/gnome-2.2/lib/libORBit-imodule-2.a
chmod 644 /opt/gnome-2.2/lib/libORBit-imodule-2.a
PATH="$PATH:/sbin" ldconfig -n /opt/gnome-2.2/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /opt/gnome-2.2/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/ORBitservices
 /bin/install -c -m 644 orbit-imodule.h 
/opt/gnome-2.2/include/orbit-2.0/ORBitservices/orbit-imodule.h
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services/imodule'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services/imodule'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src/services'
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/src'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src'
make[1]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/src'
Making install in include
make[1]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include'
Making install in orbit
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
Making install in GIOP
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/orbit/GIOP
 /bin/install -c -m 644 giop-endian.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-endian.h
 /bin/install -c -m 644 giop-connection.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-connection.h
 /bin/install -c -m 644 giop-endian.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-endian.h
 /bin/install -c -m 644 giop-recv-buffer.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-recv-buffer.h
 /bin/install -c -m 644 giop-send-buffer.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-send-buffer.h
 /bin/install -c -m 644 giop-server.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-server.h
 /bin/install -c -m 644 giop-types.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-types.h
 /bin/install -c -m 644 giop.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop.h
 /bin/install -c -m 644 giop-basics.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/GIOP/giop-basics.h
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/GIOP'
Making install in util
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/orbit/util
 /bin/install -c -m 644 basic_types.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/util/basic_types.h
 /bin/install -c -m 644 orbit-util.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/util/orbit-util.h
 /bin/install -c -m 644 orbit-genrand.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/util/orbit-genrand.h
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/util'
Making install in orb-core
make[3]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
make[4]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/orbit/orb-core
 /bin/install -c -m 644 corba-environment-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-environment-type.h
 /bin/install -c -m 644 corba-nvlist.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-nvlist.h
 /bin/install -c -m 644 corba-object-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-object-type.h
 /bin/install -c -m 644 corba-orb-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-orb-type.h
 /bin/install -c -m 644 corba-orb.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-orb.h
 /bin/install -c -m 644 corba-pobj.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-pobj.h
 /bin/install -c -m 644 corba-typecode-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-typecode-type.h
 /bin/install -c -m 644 orb-core.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/orb-core.h
 /bin/install -c -m 644 orb-types.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/orb-types.h
 /bin/install -c -m 644 orbit-object.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/orbit-object.h
 /bin/install -c -m 644 orbit-small.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/orbit-small.h
 /bin/install -c -m 644 corba-defs.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-defs.h
 /bin/install -c -m 644 corba-context.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-context.h
 /bin/install -c -m 644 corba-context-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-context-type.h
 /bin/install -c -m 644 iop-defs.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/iop-defs.h
 /bin/install -c -m 644 corba-object.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-object.h
 /bin/install -c -m 644 corba-policy-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-policy-type.h
 /bin/install -c -m 644 corba-string.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-string.h
 /bin/install -c -m 644 corba-environment.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-environment.h
 /bin/install -c -m 644 corba-any.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-any.h
 /bin/install -c -m 644 orb-core-types.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/orb-core-types.h
 /bin/install -c -m 644 corba-typecode.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-typecode.h
 /bin/install -c -m 644 allocators.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/allocators.h
 /bin/install -c -m 644 corba-any-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/corba-any-type.h
 /bin/install -c -m 644 orbit-interface.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orb-core/orbit-interface.h
make[4]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
make[3]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/orb-core'
Making install in poa
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/orbit/poa
 /bin/install -c -m 644 poa-types.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/poa/poa-types.h
 /bin/install -c -m 644 poa.h /opt/gnome-2.2/include/orbit-2.0/orbit/poa/poa.h
 /bin/install -c -m 644 poa-basics.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/poa/poa-basics.h
 /bin/install -c -m 644 poa-defs.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/poa/poa-defs.h
 /bin/install -c -m 644 poa-policy.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/poa/poa-policy.h
 /bin/install -c -m 644 portableserver-poa-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/poa/portableserver-poa-type.h
 /bin/install -c -m 644 portableserver-current-type.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/poa/portableserver-current-type.h
 /bin/install -c -m 644 orbit-adaptor.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/poa/orbit-adaptor.h
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit/poa'
Making install in dynamic
make[3]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
make[4]: Entering directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/orbit/dynamic
 /bin/install -c -m 644 dynamic.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/dynamic/dynamic.h
 /bin/install -c -m 644 dynamic-defs.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/dynamic/dynamic-defs.h
make[4]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
make[3]: Leaving directory 
`/home/setup/gnome/ORBit2-2.6.1/include/orbit/dynamic'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[4]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[4]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/gnome-2.2/include/orbit-2.0/orbit
 /bin/install -c -m 644 orbit.h /opt/gnome-2.2/include/orbit-2.0/orbit/orbit.h
 /bin/install -c -m 644 orbit-config.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orbit-config.h
 /bin/install -c -m 644 orbit-types.h 
/opt/gnome-2.2/include/orbit-2.0/orbit/orbit-types.h
make[4]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include/orbit'
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include'
make[1]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/include'
Making install in test
make[1]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test'
Making install in everything
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/everything'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/everything'
make[3]: Nothing to be done for `install-exec-am'.
/bin/sh ../../mkinstalldirs /opt/gnome-2.2/lib/orbit-2.0
/bin/sh ../../libtool  --mode=install /bin/install -c Everything_module.la 
/opt/gnome-2.2/lib/orbit-2.0/Everything_module.la
libtool: install: warning: relinking `Everything_module.la'
(cd /home/setup/gnome/ORBit2-2.6.1/test/everything; /bin/sh ../../libtool 
--mode=relink gcc -g -O2 -o Everything_module.la -rpath 
/opt/gnome-2.2/lib/orbit-2.0 -export-dynamic -module everything-imodule.lo 
../../src/orb/libORBit-2.la )
gcc -shared  everything-imodule.lo  -Wl,--rpath -Wl,/opt/gnome-2.2/lib  
-L/usr/lib -L/opt/gnome-2.2/lib -lORBit-2   -Wl,-soname 
-Wl,Everything_module.so.0 -o .libs/Everything_module.so.0.0.0
/bin/install -c .libs/Everything_module.so.0.0.0T 
/opt/gnome-2.2/lib/orbit-2.0/Everything_module.so.0.0.0
(cd /opt/gnome-2.2/lib/orbit-2.0 && rm -f Everything_module.so.0 && ln -s 
Everything_module.so.0.0.0 Everything_module.so.0)
(cd /opt/gnome-2.2/lib/orbit-2.0 && rm -f Everything_module.so && ln -s 
Everything_module.so.0.0.0 Everything_module.so)
/bin/install -c .libs/Everything_module.lai 
/opt/gnome-2.2/lib/orbit-2.0/Everything_module.la
/bin/install -c .libs/Everything_module.a 
/opt/gnome-2.2/lib/orbit-2.0/Everything_module.a
ranlib /opt/gnome-2.2/lib/orbit-2.0/Everything_module.a
chmod 644 /opt/gnome-2.2/lib/orbit-2.0/Everything_module.a
PATH="$PATH:/sbin" ldconfig -n /opt/gnome-2.2/lib/orbit-2.0
----------------------------------------------------------------------
Libraries have been installed in:
   /opt/gnome-2.2/lib/orbit-2.0

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/everything'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/everything'
Making install in inhibit
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/inhibit'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/inhibit'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/inhibit'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/inhibit'
Making install in poa
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/poa'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test/poa'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/poa'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test/poa'
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/test'
/bin/sh ../mkinstalldirs /opt/gnome-2.2/bin
 /bin/sh ../libtool  --mode=install /bin/install -c  ior-decode-2 
/opt/gnome-2.2/bin/ior-decode-2
/bin/install -c .libs/ior-decode-2 /opt/gnome-2.2/bin/ior-decode-2
 /bin/sh ../libtool  --mode=install /bin/install -c  typelib-dump 
/opt/gnome-2.2/bin/typelib-dump
/bin/install -c .libs/typelib-dump /opt/gnome-2.2/bin/typelib-dump
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test'
make[1]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/test'
Making install in docs
make[1]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs'
Making install in devel
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs/devel'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs/devel'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs/devel'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs/devel'
Making install in internals
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs/internals'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs/internals'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs/internals'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs/internals'
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[3]: Entering directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[1]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1/docs'
make[1]: Entering directory `/home/setup/gnome/ORBit2-2.6.1'
make[2]: Entering directory `/home/setup/gnome/ORBit2-2.6.1'
/bin/sh ./mkinstalldirs /opt/gnome-2.2/bin
 /bin/install -c orbit2-config /opt/gnome-2.2/bin/orbit2-config
/bin/sh ./mkinstalldirs /opt/gnome-2.2/share/aclocal
 /bin/install -c -m 644 ./ORBit2.m4 /opt/gnome-2.2/share/aclocal/ORBit2.m4
/bin/sh ./mkinstalldirs /opt/gnome-2.2/lib/pkgconfig
 /bin/install -c -m 644 ./ORBit-2.0.pc /opt/gnome-2.2/lib/pkgconfig/ORBit-2.0.pc
 /bin/install -c -m 644 ./ORBit-CosNaming-2.0.pc 
/opt/gnome-2.2/lib/pkgconfig/ORBit-CosNaming-2.0.pc
 /bin/install -c -m 644 ./ORBit-imodule-2.0.pc 
/opt/gnome-2.2/lib/pkgconfig/ORBit-imodule-2.0.pc
make[2]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1'
make[1]: Leaving directory `/home/setup/gnome/ORBit2-2.6.1'




reply via email to

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