[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

problem building with Berkeley DB 4.1.24

From: Karl Fogel <kfogel_at_newton.ch.collab.net>
Date: 2002-11-07 21:42:05 CET

I'm seeing a problem in apr-util/ when I try to build a shared
Subversion (including mod_dav_svn) using Berkeley DB 4.1.24. (I've
had no trouble building with 4.0.14 before now.)

This is on a RedHat 7.0 system, FWIW. Both of these dirs exist:

   /usr/local/BerkeleyDB.4.0/
   /usr/local/BerkeleyDB.4.1/

but /etc/ld.so.conf mentions only "/usr/local/BerkeleyDB.4.1/lib/",
and I re-ran ldconfig. Then I did:

   $ ./autogen.sh;
   $ ./configure --enable-maintainer-mode

Various configure spew omitted here (the full output is included at
the end of this mail), but anyway it did seem to find DB 4.1.24 in the
expected place. Nevertheless, the build eventually fails with this
error:

   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /home/kfogel/src/subversion/apr-util/.libs/libaprutil-0.so: undefined reference to `dbopen'
   collect2: ld returned 1 exit status
   make: *** [subversion/clients/cmdline/svn] Error 1
   
   Compilation exited abnormally with code 2 at Thu Nov 7 13:26:07

Hmmm. The only occurence of "dbopen" in apr-util is in
apr-util/dbm/apr_dbm_berkeleydb.c, which has this stretch of code:

   #if DB_VER >= 3
           if ((dberr = db_create(&file.bdb, NULL, 0)) == 0) {
               if ((dberr = (*file.bdb->open)(file.bdb,
   #if DB_VER == 4
                                              NULL,
   #endif
                                              pathname, NULL,
                                              DB_HASH, dbmode,
                                              apr_posix_perms2mode(perm))) != 0) {
                   /* close the DB handler */
                   (void) (*file.bdb->close)(file.bdb, 0);
               }
           }
           file.curs = NULL;
   #elif DB_VER == 2
           dberr = db_open(pathname, DB_HASH, dbmode, apr_posix_perms2mode(perm),
                           NULL, NULL, &file.bdb);
           file.curs = NULL;
   #else
           file.bdb = dbopen(pathname, dbmode, apr_posix_perms2mode(perm),
                             DB_HASH, NULL);
           if (file.bdb == NULL)
               return APR_EGENERAL; /* ### need a better error */
           dberr = 0;
   #endif
           if (dberr != 0)
               return db2s(dberr);

The question is, how did we end up in the 'DB_VER == 2' case? This is
DB 4.1.14, and indeed the code in the 'DB_VER == 4' case looks
correct.

I'm still looking at this, but thought I'd post here to see if anyone
has any ideas.

Here's the full autoconf and configure output:

   buildcheck: checking installation...
   buildcheck: autoconf version 2.52 (ok)
   buildcheck: autoheader version 2.52 (ok)
   buildcheck: libtool version 1.4.2 (ok)
   buildcheck: neon version 0.23.2 (ok)
   Copying libtool helper: /usr/local/share/aclocal/libtool.m4
   Creating getdate.c...
   subversion/libsvn_subr/getdate.y contains 10 shift/reduce conflicts.
   Creating build-outputs.mk...
   Creating svn_private_config.h.in...
   Creating configure...
   Creating configuration files for apr.
   buildconf: checking installation...
   buildconf: autoconf version 2.52 (ok)
   buildconf: libtool version 1.4.2 (ok)
   Copying libtool helper files ...
   Creating include/arch/unix/apr_private.h.in ...
   autoheader: include/arch/unix/apr_private.h.in is unchanged
   Creating configure ...
   Creating configuration files for apr-util.
   Creating include/private/apu_config.h ...
   autoheader: include/private/apu_config.h.in is unchanged
   Creating configure ...
   Invoking xml/expat/buildconf.sh ...
   Incorporating /usr/local/share/aclocal/libtool.m4 into aclocal.m4 ...
   Copying libtool helper files ...
   Creating config.h.in ...
   autoheader: config.h.in is unchanged
   Creating configure ...
   
   You can run ./configure now.
   
   Running autogen.sh implies you are a maintainer. You may prefer
   to run configure in one of the following ways:
   
   ./configure --enable-maintainer-mode
   ./configure --disable-shared
   ./configure --enable-maintainer-mode --disable-shared
   
   Note: this build will create the Subversion shared libraries and a
          command-line client. If you wish to build a Subversion server,
          you will need Apache 2.0. See the INSTALL file for details.
   
   creating config.nice
   configure: Apache Portable Runtime (APR) library configuration
   checking for APR... reconfig
   configuring package in apr now
   checking build system type... i686-pc-linux-gnu
   checking host system type... i686-pc-linux-gnu
   checking target system type... i686-pc-linux-gnu
   Configuring APR library
   Platform: i686-pc-linux-gnu
   checking for working mkdir -p... yes
   APR Version: 0.9.2
   checking for chosen layout... apr
   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 executable suffix...
   checking for object suffix... o
   checking whether we are using the GNU C compiler... yes
   checking whether gcc accepts -g... yes
   Applying APR hints file rules for i686-pc-linux-gnu
     setting CPPFLAGS to "-DLINUX=2"
     adding "-D_REENTRANT" to CPPFLAGS
   (Default will be unix)
   checking whether make sets ${MAKE}... yes
   checking how to run the C preprocessor... gcc -E
   checking for mawk... no
   checking for gawk... gawk
   checking whether ln -s works... yes
   checking for ranlib... ranlib
   checking for a BSD compatible install... /usr/bin/install -c
   checking for rm... rm
   checking for as... as
   checking for cpp... cpp
   checking for ar... ar
   checking for AIX... no
   checking for POSIXized ISC... no
   checking for minix/config.h... no
   checking whether system uses EBCDIC... no
   performing libtool configuration...
   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 how to recognise dependant libraries... pass_all
   checking command to parse /usr/bin/nm -B output... ok
   checking for dlfcn.h... yes
   checking for ranlib... (cached) 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
   
   Check for compiler flags...
   
     adding "-Wall" to CFLAGS
     adding "-Wmissing-prototypes" to CFLAGS
     adding "-Wstrict-prototypes" to CFLAGS
     adding "-Wmissing-declarations" to CFLAGS
   checking for res_init in -lresolv... yes
   checking for gethostbyname in -lnsl... yes
   checking for library containing gethostname... none required
   checking for socket in -lsocket... no
   checking for library containing crypt... -lcrypt
   checking for main in -ltruerand... no
   checking for modf in -lm... yes
   
   Checking for Threads...
   
   checking for pthread.h... yes
   checking for pthreads_cflags... -pthread
   checking for pthreads_lib...
   checking for pthread.h... (cached) yes
   checking whether pthread_getspecific takes two arguments... no
   checking whether pthread_attr_getdetachstate takes one argument... no
   checking for pthread_key_delete... yes
   checking for pthread_rwlock_init... yes
     adding "-D_XOPEN_SOURCE=500" to CPPFLAGS
     adding "-D_BSD_SOURCE" to CPPFLAGS
     adding "-D_SVID_SOURCE" to CPPFLAGS
   APR will use threads
   checking for readdir in -lc_r... no
   checking for gethostbyname in -lc_r... no
   checking for gethostbyaddr in -lc_r... no
   checking for gethostbyname_r... yes
   checking for gethostbyaddr_r... yes
   checking for sigsuspend... yes
   checking for sigwait... yes
   checking for poll... yes
   checking for getpwnam_r... yes
   checking for getpwuid_r... yes
   checking for getgrnam_r... yes
   checking for getgrgid_r... yes
   
   Checking for Shared Memory Support...
   
   checking for sys/mman.h... yes
   checking for sys/ipc.h... yes
   checking for sys/shm.h... yes
   checking for sys/file.h... yes
   checking for kernel/OS.h... no
   checking for os2.h... no
   checking for mmap... yes
   checking for munmap... yes
   checking for shm_open... no
   checking for shm_unlink... no
   checking for shmget... yes
   checking for shmat... yes
   checking for shmdt... yes
   checking for shmctl... yes
   checking for create_area... no
   checking for MAP_ANON in sys/mman.h... yes
   checking for /dev/zero... yes
   checking for mmap that can map /dev/zero... no
   decision on anonymous shared memory allocation method... SysV IPC shmget()
   decision on namebased memory allocation method... SysV IPC shmget()
   checking for alloca... no
   checking for calloc... yes
   checking for strcasecmp... yes
   checking for stricmp... no
   checking for setsid... yes
   checking for isinf... yes
   checking for isnan... yes
   checking for setrlimit... yes
   checking for getrlimit... yes
   checking for writev... yes
   checking for sendfilev in -lsendfile... no
   checking for sendfile... yes
   checking for send_file... no
   checking for sendfilev... no
   checking for sigaction... yes
   checking for sys_siglist declaration in signal.h or unistd.h... yes
   checking for fork... yes
   checking for inet_addr... yes
   checking for inet_network... yes
   checking for _getch... no
   checking for strerror_r... yes
   checking for type of return code from strerror_r... pointer
   checking for crypt_r... yes
   checking style of crypt_r... struct_crypt_data_gnu_source
     adding "-D_GNU_SOURCE" to CPPFLAGS
   checking for mmap... (cached) yes
   checking for memmove... yes
   checking for getpass... yes
   checking for gmtime_r... yes
   checking for localtime_r... yes
   checking for hstrerror... yes
   checking for mkstemp... yes
   checking whether sigwait takes one argument... no
   checking for ANSI C header files... yes
   checking for alloca.h... yes
   checking for ByteOrder.h... no
   checking for conio.h... no
   checking for crypt.h... yes
   checking for ctype.h... yes
   checking for dir.h... no
   checking for dirent.h... yes
   checking for dl.h... no
   checking for dlfcn.h... (cached) yes
   checking for errno.h... yes
   checking for fcntl.h... yes
   checking for grp.h... yes
   checking for io.h... no
   checking for limits.h... yes
   checking for mach-o/dyld.h... no
   checking for malloc.h... yes
   checking for memory.h... yes
   checking for netdb.h... yes
   checking for osreldate.h... no
   checking for poll.h... yes
   checking for process.h... no
   checking for pwd.h... yes
   checking for semaphore.h... yes
   checking for signal.h... yes
   checking for stdarg.h... yes
   checking for stddef.h... yes
   checking for stdio.h... yes
   checking for stdlib.h... yes
   checking for string.h... yes
   checking for strings.h... yes
   checking for sysapi.h... no
   checking for sysgtime.h... no
   checking for termios.h... yes
   checking for time.h... yes
   checking for tpfeq.h... no
   checking for tpfio.h... no
   checking for unistd.h... yes
   checking for unix.h... no
   checking for arpa/inet.h... yes
   checking for kernel/OS.h... (cached) no
   checking for net/errno.h... no
   checking for netinet/in.h... yes
   checking for netinet/sctp.h... no
   checking for netinet/sctp_uio.h... no
   checking for sys/file.h... (cached) yes
   checking for sys/mman.h... (cached) yes
   checking for sys/poll.h... yes
   checking for sys/resource.h... yes
   checking for sys/select.h... yes
   checking for sys/sem.h... yes
   checking for sys/sendfile.h... yes
   checking for sys/signal.h... yes
   checking for sys/socket.h... yes
   checking for sys/stat.h... yes
   checking for sys/sysctl.h... yes
   checking for sys/syslimits.h... no
   checking for sys/time.h... yes
   checking for sys/types.h... yes
   checking for sys/uio.h... yes
   checking for sys/un.h... yes
   checking for sys/wait.h... yes
   checking for netinet/tcp.h... yes
   checking for h_errno in netdb.h... yes
   checking for sys/types.h... (cached) yes
   checking for sys/stat.h... (cached) yes
   checking for stdlib.h... (cached) yes
   checking for string.h... (cached) yes
   checking for memory.h... (cached) yes
   checking for strings.h... (cached) yes
   checking for inttypes.h... yes
   checking for stdint.h... yes
   checking for unistd.h... (cached) yes
   checking for off_t... yes
   checking for pid_t... yes
   checking for size_t... yes
   checking for uid_t in sys/types.h... yes
   checking for ssize_t... yes
   checking for gcc option to accept ANSI C... none needed
   checking for inline... inline
   checking for an ANSI C-conforming const... yes
   checking for size_t... (cached) yes
   checking whether setpgrp takes no argument... yes
   checking for socklen_t... yes
   checking whether system defines INADDR_NONE... yes
   checking for void*... yes
   checking size of void*... 4
   checking for char... yes
   checking size of char... 1
   checking for int... yes
   checking size of int... 4
   checking for long... yes
   checking size of long... 4
   checking for short... yes
   checking size of short... 2
   checking for long double... yes
   checking size of long double... 12
   checking for long long... yes
   checking size of long long... 8
   checking for INT64_C... yes
   checking size of ssize_t... 4
   checking size of size_t... 4
   checking size of off_t... 4
   checking size of pid_t... 4
   checking for strnicmp... no
   checking for strncasecmp... yes
   checking for stricmp... (cached) no
   checking for strcasecmp... (cached) yes
   checking for strdup... yes
   checking for strstr... yes
   checking for memchr... yes
   checking for strtoll... yes
   
   Checking for DSO...
   
   checking for NSLinkModule... no
   checking for shl_load in -ldld... no
   checking for dlopen... no
   checking for dlopen in -ldl... yes
     adding "-ldl" to LIBS
   checking for dlsym... yes
   
   Checking for Processes...
   
   checking for waitpid... yes
   checking for Variable Length Arrays... no
   checking struct rlimit... yes
   
   Checking for Locking...
   
   checking for semget... yes
   checking for semctl... yes
   checking for flock... yes
   checking for semaphore.h... (cached) yes
   checking for sem_close... yes
   checking for sem_unlink... yes
   checking for sem_post... yes
   checking for sem_wait... yes
   checking for working sem_open... no
   checking for union semun in sys/sem.h... no
   checking for LOCK_EX in sys/file.h... yes
   checking for F_SETLK in fcntl.h... yes
   checking for SEM_UNDO in sys/sem.h... yes
   checking for POLLIN in poll.h sys/poll.h... yes
   checking for PTHREAD_PROCESS_SHARED in pthread.h... yes
   checking for pthread_mutexattr_setpshared... yes
   decision on apr_lock implementation method... SysV IPC semget()
   checking if all interprocess locks affect threads... no
   checking if Posix sems affect threads in the same process... no
   checking if SysV sems affect threads in the same process... no
   checking if fcntl locks affect threads in the same process... no
   checking if flock locks affect threads in the same process... no
   checking for entropy source... /dev/random
   
   Checking for Time Support...
   
   checking for tm_gmtoff in struct tm... yes
   
   Checking for Networking support...
   
   checking for in_addr in netinet/in.h... yes
   checking if fd == socket on this platform... yes
   checking for sockaddr sa_len... no
   checking style of gethostbyname_r routine... none
   checking 3rd argument to the gethostbyname_r routines... char
   checking if TCP_NODELAY setting is inherited from listening sockets... yes
   checking if O_NONBLOCK setting is inherited from listening sockets... no
   checking for TCP_CORK in netinet/tcp.h... yes
   checking for TCP_NOPUSH in netinet/tcp.h... no
   checking for SO_ACCEPTFILTER in sys/socket.h... no
   checking if SCTP protocol is supported... no
   checking for set_h_errno... no
   checking for presence of retrans/retry fields in res_state/resolv.h ... yes
   
   Checking for IPv6 Networking support...
   
   checking for library containing getaddrinfo... none required
   checking for library containing gai_strerror... none required
   checking for library containing getnameinfo... none required
   checking for gai_strerror... yes
   checking for working getaddrinfo... yes
   checking for negative error codes for getaddrinfo... yes
   checking for working getnameinfo... yes
   checking for sockaddr_in6... yes
   checking if APR supports IPv6... yes
   
   Restore user-defined environment settings...
   
     restoring CPPFLAGS to ""
     setting EXTRA_CPPFLAGS to "-DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE"
     restoring CFLAGS to ""
     setting EXTRA_CFLAGS to "-g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread"
     restoring LDFLAGS to ""
     setting EXTRA_LDFLAGS to ""
     restoring LIBS to ""
     setting EXTRA_LIBS to "-lm -lcrypt -lnsl -lresolv -ldl"
     restoring INCLUDES to ""
     setting EXTRA_INCLUDES to ""
   
   Construct Makefiles and header files.
   configure: creating ./config.status
   config.status: creating Makefile
   config.status: creating strings/Makefile
   config.status: creating passwd/Makefile
   config.status: creating tables/Makefile
   config.status: creating build/Makefile
   config.status: creating file_io/unix/Makefile
   config.status: creating network_io/unix/Makefile
   config.status: creating threadproc/unix/Makefile
   config.status: creating misc/unix/Makefile
   config.status: creating locks/unix/Makefile
   config.status: creating time/unix/Makefile
   config.status: creating mmap/unix/Makefile
   config.status: creating shmem/unix/Makefile
   config.status: creating user/unix/Makefile
   config.status: creating memory/unix/Makefile
   config.status: creating atomic/unix/Makefile
   config.status: creating poll/unix/Makefile
   config.status: creating support/unix/Makefile
   config.status: creating dso/unix/Makefile
   config.status: creating test/Makefile
   config.status: creating test/internal/Makefile
   config.status: creating include/apr.h
   config.status: creating build/rules.mk
   config.status: creating apr-config
   config.status: creating include/arch/unix/apr_private.h
   apr configured properly
   checking APR version... 0.9.2
   configure: Apache Portable Runtime Utility (APRUTIL) library configuration
   checking for APR-util... reconfig
   configuring package in apr-util now
   checking build system type... i686-pc-linux-gnu
   checking host system type... i686-pc-linux-gnu
   checking target system type... i686-pc-linux-gnu
   checking for working mkdir -p... yes
   APR-util Version: 0.9.2
   checking for chosen layout... apr-util
   Applying apr-util hints file rules for i686-pc-linux-gnu
   checking for APR... yes
   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 executable suffix...
   checking for object suffix... o
   checking whether we are using the GNU C compiler... yes
   checking whether gcc accepts -g... yes
   checking how to run the C preprocessor... gcc -E
   checking for ldap support...
   checking for gdbm.h... yes
   checking for gdbm_open in -lgdbm... yes
   looking for berkeley-db includes with -I/usr/local/BerkeleyDB.4.1/include
   looking for berkeley-db libs with -L/usr/local/BerkeleyDB.4.1/lib
   checking for db4/db.h... no
   checking for db.h... yes
   checking for db_create in -ldb... yes
   checking for lock_get in -ldb... no
   checking for Berkeley DB... found db4
     setting APRUTIL_INCLUDES to "-I/usr/local/BerkeleyDB.4.1/include"
     setting APRUTIL_LDFLAGS to "-L/usr/local/BerkeleyDB.4.1/lib"
   checking for default DBM... sdbm (default)
     setting APRUTIL_EXPORT_LIBS to "-lgdbm"
     setting APRUTIL_LIBS to "-lgdbm"
     adding "-ldb" to APRUTIL_EXPORT_LIBS
     adding "-ldb" to APRUTIL_LIBS
   checking for Expat in /usr... no
   checking for Expat in /usr/local... yes
     adding "-lexpat" to APRUTIL_EXPORT_LIBS
     adding "-I/usr/local/include" to APRUTIL_INCLUDES
     adding "-L/usr/local/lib" to APRUTIL_LDFLAGS
     adding "/usr/local/lib/libexpat.la" to APRUTIL_LIBS
   checking for iconv.h... yes
   checking for type of inbuf parameter to iconv... char **
   checking for iconv.h... (cached) yes
   checking for langinfo.h... yes
   checking for nl_langinfo... yes
   checking for CODESET in langinfo.h... yes
     adding "/home/kfogel/src/subversion/apr/libapr-0.la" to APRUTIL_LIBS
     adding "-lm" to APRUTIL_LIBS
     adding "-lcrypt" to APRUTIL_LIBS
     adding "-lnsl" to APRUTIL_LIBS
     adding "-lresolv" to APRUTIL_LIBS
     adding "-ldl" to APRUTIL_LIBS
   configure: creating ./config.status
   config.status: creating export_vars.sh
   config.status: creating apu-config
   config.status: creating include/private/apu_select_dbm.h
   config.status: creating include/apr_ldap.h
   config.status: creating include/apu.h
   config.status: creating Makefile
   config.status: creating buckets/Makefile
   config.status: creating crypto/Makefile
   config.status: creating dbm/Makefile
   config.status: creating dbm/sdbm/Makefile
   config.status: creating encoding/Makefile
   config.status: creating hooks/Makefile
   config.status: creating ldap/Makefile
   config.status: creating uri/Makefile
   config.status: creating xml/Makefile
   config.status: creating misc/Makefile
   config.status: creating strmatch/Makefile
   config.status: creating xlate/Makefile
   config.status: creating test/Makefile
   config.status: creating include/private/apu_config.h
   config.status: include/private/apu_config.h is unchanged
   apr-util configured properly
   checking APR-UTIL version... 0.9.2
   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 executable suffix...
   checking for object suffix... o
   checking whether we are using the GNU C compiler... yes
   checking whether gcc accepts -g... yes
   checking whether ln -s works... yes
   configuring libtool now
   checking build system type... i686-pc-linux-gnu
   checking host system type... i686-pc-linux-gnu
   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 how to recognise dependant libraries... pass_all
   checking command to parse /usr/bin/nm -B output... ok
   checking how to run the C preprocessor... gcc -E
   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
   configure: checking neon library
   checking neon library version... 0.23.2
   Using neon found in source directory.
   configuring package in neon now
   checking for a BSD-compatible install... /usr/bin/install -c
   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 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 whether ln -s works... yes
   checking how to recognise dependant libraries... pass_all
   checking command to parse /usr/bin/nm -B output... ok
   checking how to run the C preprocessor... gcc -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 for gcc option to accept ANSI C... none needed
   checking for strerror in -lcposix... no
   checking for inline... inline
   checking for an ANSI C-conforming const... yes
   checking for size_t... yes
   checking for off_t... yes
   checking for Darwin... no
   checking whether make sets ${MAKE}... yes
   checking for int... yes
   checking size of int... 4
   checking for long... yes
   checking size of long... 4
   checking for long long... yes
   checking size of long long... 8
   checking errno.h usability... yes
   checking errno.h presence... yes
   checking for errno.h... yes
   checking stdarg.h usability... yes
   checking stdarg.h presence... yes
   checking for stdarg.h... yes
   checking for string.h... (cached) yes
   checking for stdlib.h... (cached) yes
   checking for size_t... (cached) yes
   checking size of size_t... 4
   checking how to print size_t... u
   checking for off_t... (cached) yes
   checking size of off_t... 4
   checking how to print off_t... ld
   checking for ssize_t... yes
   checking size of ssize_t... 4
   checking how to print ssize_t... d
   checking whether byte ordering is bigendian... no
   checking whether strerror_r is declared... yes
   checking for strerror_r... yes
   checking whether strerror_r returns char *... yes
   checking for snprintf... yes
   checking for vsnprintf... yes
   checking for strings.h... (cached) yes
   checking sys/time.h usability... yes
   checking sys/time.h presence... yes
   checking for sys/time.h... yes
   checking limits.h usability... yes
   checking limits.h presence... yes
   checking for limits.h... yes
   checking sys/select.h usability... yes
   checking sys/select.h presence... yes
   checking for sys/select.h... yes
   checking arpa/inet.h usability... yes
   checking arpa/inet.h presence... yes
   checking for arpa/inet.h... yes
   checking signal.h usability... yes
   checking signal.h presence... yes
   checking for signal.h... yes
   checking sys/socket.h usability... yes
   checking sys/socket.h presence... yes
   checking for sys/socket.h... yes
   checking netinet/in.h usability... yes
   checking netinet/in.h presence... yes
   checking for netinet/in.h... yes
   checking for strcasecmp... yes
   checking for signal... yes
   checking for setvbuf... yes
   checking for setsockopt... yes
   checking for library containing socket... none needed
   checking for library containing gethostbyname... none needed
   checking for getaddrinfo... yes
   checking for gai_strerror... yes
   checking for inet_ntop... yes
   checking for struct tm.tm_gmtoff... yes
   checking zlib.h usability... yes
   checking zlib.h presence... yes
   checking for zlib.h... yes
   checking for inflate in -lz... yes
   checking zlib version is >= 1.1.4... no
   checking whether to enable ACL support in neon... yes
   checking whether to enable WebDAV support in neon... yes
   configure: XML parser found: expat in /home/kfogel/src/subversion/apr-util/xml/expat/lib
   configure: debugging is enabled
   checking for pid_t... yes
   checking whether time.h and sys/time.h may both be included... yes
   checking for ar... /usr/bin/ar
   checking for ranlib... /usr/bin/ranlib
   checking for sys/time.h... (cached) yes
   checking for pipe... yes
   checking for isatty... yes
   checking for usleep... yes
   checking for time_t... yes
   checking size of time_t... 4
   checking how to print time_t... ld
   configure: creating ./config.status
   config.status: creating neon-config
   config.status: creating Makefile
   config.status: creating src/Makefile
   config.status: creating test/Makefile
   config.status: creating config.h
   config.status: config.h is unchanged
   
   Configuration for building neon 0.23.2:
   
     Install prefix: /usr/local
     Compiler: gcc
     XML Parser: expat in /home/kfogel/src/subversion/apr-util/xml/expat/lib
     SSL library: No SSL support
     zlib support: unsuitable, >=1.1.4 required
     Build libraries: Shared=yes, Static=yes
   
   Now run 'make' to compile the neon library.
   
   neon configured properly
   checking for any extra libraries neon needs... -L/usr/local/lib
   checking for static Apache module support... no
   checking for Apache module support via DSO through APXS... found at /usr/local/apache2/bin/apxs
   checking httpd version... recent enough
   checking for Berkeley DB in /usr/local/BerkeleyDB.4.1 (as db4)... no
   checking for Berkeley DB in /usr/local/BerkeleyDB.4.1 (as db)... yes
   checking for built-in XMLRPC-EPI... no
   checking for XMLRPC-EPI in the standard places... no
   checking for XMLRPC-EPI in /usr/local... no
   checking for XMLRPC-EPI in /usr... no
   checking for ANSI C header files... yes
   checking for gcc option to accept ANSI C... none needed
   checking for an ANSI C-conforming const... 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 for size_t... yes
   checking for working memcmp... yes
   checking for vprintf... yes
   checking for _doprnt... no
   checking for diff... /usr/bin/diff
   checking for non-broken GNU diff3... /usr/bin/diff3
   checking whether diff3 supports --diff-program arg... no
   checking for python2... /usr/bin/python2
   checking for Python 2.0 or newer
   checking for swig... none
   checking for makeinfo... /usr/local/bin/makeinfo
   configure: creating ./config.status
   config.status: creating Makefile
   config.status: creating svn-config
   config.status: creating svn_private_config.h
   ------ making all in apr
   make[1]: Entering directory `/home/kfogel/src/subversion/apr'
   Making all in strings
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/strings'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/strings'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/strings'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/strings'
   Making all in passwd
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/passwd'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/passwd'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/passwd'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/passwd'
   Making all in tables
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/tables'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/tables'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/tables'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/tables'
   Making all in file_io/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/file_io/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/file_io/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/file_io/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/file_io/unix'
   Making all in network_io/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/network_io/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/network_io/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/network_io/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/network_io/unix'
   Making all in threadproc/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/threadproc/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/threadproc/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/threadproc/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/threadproc/unix'
   Making all in misc/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/misc/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/misc/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/misc/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/misc/unix'
   Making all in locks/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/locks/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/locks/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/locks/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/locks/unix'
   Making all in time/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/time/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/time/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/time/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/time/unix'
   Making all in mmap/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/mmap/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/mmap/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/mmap/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/mmap/unix'
   Making all in shmem/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/shmem/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/shmem/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/shmem/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/shmem/unix'
   Making all in user/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/user/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/user/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/user/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/user/unix'
   Making all in memory/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/memory/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/memory/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/memory/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/memory/unix'
   Making all in atomic/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/atomic/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/atomic/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/atomic/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/atomic/unix'
   Making all in poll/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/poll/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/poll/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/poll/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/poll/unix'
   Making all in support/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/support/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/support/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/support/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/support/unix'
   Making all in dso/unix
   make[2]: Entering directory `/home/kfogel/src/subversion/apr/dso/unix'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr/dso/unix'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr/dso/unix'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr/dso/unix'
   make[2]: Entering directory `/home/kfogel/src/subversion/apr'
   Found newer headers. Will rebuild apr.exp.
   rm -f apr.exp exports.c export_vars.h
   gawk -f /home/kfogel/src/subversion/apr/build/make_var_export.awk /home/kfogel/src/subversion/apr/include/*.h > export_vars.h
   gawk -f /home/kfogel/src/subversion/apr/build/make_exports.awk /home/kfogel/src/subversion/apr/include/*.h > exports.c
   gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I./include -I../include exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$/\1/' >> apr.exp
   gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I./include -I../include export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> apr.exp
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr'
   make[1]: Leaving directory `/home/kfogel/src/subversion/apr'
   ------ completed all in apr
   ------ making all in apr-util
   make[1]: Entering directory `/home/kfogel/src/subversion/apr-util'
   Making all in buckets
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/buckets'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/buckets'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/buckets'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/buckets'
   Making all in crypto
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/crypto'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/crypto'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/crypto'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/crypto'
   Making all in dbm
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/dbm'
   Making all in sdbm
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/dbm/sdbm'
   make[4]: Entering directory `/home/kfogel/src/subversion/apr-util/dbm/sdbm'
   make[4]: Nothing to be done for `local-all'.
   make[4]: Leaving directory `/home/kfogel/src/subversion/apr-util/dbm/sdbm'
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/dbm/sdbm'
   Making all in .
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/dbm'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/dbm'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/dbm'
   Making all in encoding
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/encoding'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/encoding'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/encoding'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/encoding'
   Making all in hooks
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/hooks'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/hooks'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/hooks'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/hooks'
   Making all in ldap
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/ldap'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/ldap'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/ldap'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/ldap'
   Making all in uri
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/uri'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/uri'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/uri'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/uri'
   Making all in xml
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/xml'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/xml'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/xml'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/xml'
   Making all in misc
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/misc'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/misc'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/misc'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/misc'
   Making all in strmatch
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/strmatch'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/strmatch'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/strmatch'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/strmatch'
   Making all in xlate
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util/xlate'
   make[3]: Entering directory `/home/kfogel/src/subversion/apr-util/xlate'
   make[3]: Nothing to be done for `local-all'.
   make[3]: Leaving directory `/home/kfogel/src/subversion/apr-util/xlate'
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util/xlate'
   make[2]: Entering directory `/home/kfogel/src/subversion/apr-util'
   /bin/sh /home/kfogel/src/subversion/apr/libtool --silent --mode=link gcc -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/home/kfogel/src/subversion/apr-util/include -I/home/kfogel/src/subversion/apr-util/include/private -I/home/kfogel/src/subversion/apr/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -version-info 9:2:9 -o libaprutil-0.la -rpath /usr/local/apr/lib buckets/apr_buckets_file.lo buckets/apr_buckets_pool.lo buckets/apr_buckets_flush.lo buckets/apr_buckets_refcount.lo buckets/apr_buckets_heap.lo buckets/apr_buckets_simple.lo buckets/apr_buckets.lo buckets/apr_buckets_mmap.lo buckets/apr_buckets_socket.lo buckets/apr_buckets_eos.lo buckets/apr_buckets_pipe.lo buckets/apr_brigade.lo buckets/apr_buckets_alloc.lo crypto/apr_sha1.lo crypto/apr_md4.lo crypto/apr_md5.lo crypto/uuid.lo crypto/getuuid.lo dbm/sdbm!
 /sdbm.lo dbm/sdbm/sdbm_hash.lo dbm/sdbm/sdbm_lock.lo dbm/sdbm/sdbm_pair.lo dbm/apr_dbm.lo dbm/apr_dbm_berkeleydb.lo dbm/apr_dbm_gdbm.lo dbm/apr_dbm_sdbm.lo dbm/apr_dbm_ndbm.lo encoding/apr_base64.lo hooks/apr_hooks.lo ldap/apr_ldap_compat.lo uri/apr_uri.lo xml/apr_xml.lo misc/apr_date.lo misc/apr_rmm.lo misc/apr_reslist.lo misc/apr_queue.lo misc/apu_version.lo strmatch/apr_strmatch.lo xlate/xlate.lo
   Found newer headers. Will rebuild aprutil.exp.
   rm -f aprutil.exp
   gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/home/kfogel/src/subversion/apr-util/include -I/home/kfogel/src/subversion/apr-util/include/private -I/home/kfogel/src/subversion/apr/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$/\1/' >> aprutil.exp
   gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/home/kfogel/src/subversion/apr-util/include -I/home/kfogel/src/subversion/apr-util/include/private -I/home/kfogel/src/subversion/apr/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> aprutil.exp
   make[2]: Leaving directory `/home/kfogel/src/subversion/apr-util'
   make[1]: Leaving directory `/home/kfogel/src/subversion/apr-util'
   ------ completed all in apr-util
   ------ making all in neon
   make[1]: Entering directory `/home/kfogel/src/subversion/neon'
   cd src && make
   make[2]: Entering directory `/home/kfogel/src/subversion/neon/src'
   make[2]: Nothing to be done for `all'.
   make[2]: Leaving directory `/home/kfogel/src/subversion/neon/src'
   
     Compilation complete. Run 'make install' (as root?) to install neon.
   
   make[1]: Leaving directory `/home/kfogel/src/subversion/neon'
   ------ completed all in neon
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_auth/auth.lo -c subversion/libsvn_auth/auth.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/config.lo -c subversion/libsvn_subr/config.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/config_file.lo -c subversion/libsvn_subr/config_file.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/config_win.lo -c subversion/libsvn_subr/config_win.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/getdate.lo -c subversion/libsvn_subr/getdate.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/hash.lo -c subversion/libsvn_subr/hash.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/io.lo -c subversion/libsvn_subr/io.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/opt.lo -c subversion/libsvn_subr/opt.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/path.lo -c subversion/libsvn_subr/path.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/pipe.lo -c subversion/libsvn_subr/pipe.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/quoprint.lo -c subversion/libsvn_subr/quoprint.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/sorts.lo -c subversion/libsvn_subr/sorts.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/svn_base64.lo -c subversion/libsvn_subr/svn_base64.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/svn_error.lo -c subversion/libsvn_subr/svn_error.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/svn_string.lo -c subversion/libsvn_subr/svn_string.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/target.lo -c subversion/libsvn_subr/target.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/time.lo -c subversion/libsvn_subr/time.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/utf.lo -c subversion/libsvn_subr/utf.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/validate.lo -c subversion/libsvn_subr/validate.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_subr/xml.lo -c subversion/libsvn_subr/xml.c
   cd subversion/libsvn_subr && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_subr-1.la config.lo config_file.lo config_win.lo getdate.lo hash.lo io.lo opt.lo path.lo pipe.lo quoprint.lo sorts.lo svn_base64.lo svn_error.lo svn_string.lo target.lo time.lo utf.lo validate.lo xml.lo /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   cd subversion/libsvn_auth && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_auth-1.la auth.lo ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_delta/compose_delta.lo -c subversion/libsvn_delta/compose_delta.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_delta/default_editor.lo -c subversion/libsvn_delta/default_editor.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_delta/diff.lo -c subversion/libsvn_delta/diff.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_delta/diff_file.lo -c subversion/libsvn_delta/diff_file.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_delta/svndiff.lo -c subversion/libsvn_delta/svndiff.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_delta/text_delta.lo -c subversion/libsvn_delta/text_delta.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_delta/vdelta.lo -c subversion/libsvn_delta/vdelta.c
   cd subversion/libsvn_delta && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_delta-1.la compose_delta.lo default_editor.lo diff.lo diff_file.lo svndiff.lo text_delta.lo vdelta.lo ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/commit.lo -c subversion/libsvn_ra_dav/commit.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/fetch.lo -c subversion/libsvn_ra_dav/fetch.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/log.lo -c subversion/libsvn_ra_dav/log.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/merge.lo -c subversion/libsvn_ra_dav/merge.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/options.lo -c subversion/libsvn_ra_dav/options.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/props.lo -c subversion/libsvn_ra_dav/props.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/session.lo -c subversion/libsvn_ra_dav/session.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_dav/util.lo -c subversion/libsvn_ra_dav/util.c
   cd subversion/libsvn_ra_dav && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_ra_dav-1.la commit.lo fetch.lo log.lo merge.lo options.lo props.lo session.lo util.lo ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl /home/kfogel/src/subversion/neon/src/libneon.la -L/usr/local/lib
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/bdb_compat.lo -c subversion/libsvn_fs/bdb/bdb_compat.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/changes-table.lo -c subversion/libsvn_fs/bdb/changes-table.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/copies-table.lo -c subversion/libsvn_fs/bdb/copies-table.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/dbt.lo -c subversion/libsvn_fs/bdb/dbt.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/nodes-table.lo -c subversion/libsvn_fs/bdb/nodes-table.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/reps-table.lo -c subversion/libsvn_fs/bdb/reps-table.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/rev-table.lo -c subversion/libsvn_fs/bdb/rev-table.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/strings-table.lo -c subversion/libsvn_fs/bdb/strings-table.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/bdb/txn-table.lo -c subversion/libsvn_fs/bdb/txn-table.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/dag.lo -c subversion/libsvn_fs/dag.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/deltify.lo -c subversion/libsvn_fs/deltify.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/err.lo -c subversion/libsvn_fs/err.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/fs.lo -c subversion/libsvn_fs/fs.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/id.lo -c subversion/libsvn_fs/id.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/key-gen.lo -c subversion/libsvn_fs/key-gen.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/node-rev.lo -c subversion/libsvn_fs/node-rev.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/reps-strings.lo -c subversion/libsvn_fs/reps-strings.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/revs-txns.lo -c subversion/libsvn_fs/revs-txns.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/trail.lo -c subversion/libsvn_fs/trail.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/tree.lo -c subversion/libsvn_fs/tree.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/txn.lo -c subversion/libsvn_fs/txn.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/util/fs_skels.lo -c subversion/libsvn_fs/util/fs_skels.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_fs/util/skel.lo -c subversion/libsvn_fs/util/skel.c
   cd subversion/libsvn_fs && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_fs-1.la bdb/bdb_compat.lo bdb/changes-table.lo bdb/copies-table.lo bdb/dbt.lo bdb/nodes-table.lo bdb/reps-table.lo bdb/rev-table.lo bdb/strings-table.lo bdb/txn-table.lo dag.lo deltify.lo err.lo fs.lo id.lo key-gen.lo node-rev.lo reps-strings.lo revs-txns.lo trail.lo tree.lo txn.lo util/fs_skels.lo util/skel.lo ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat -L/usr/local/BerkeleyDB.4.1/lib -ldb /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_local/ra_plugin.lo -c subversion/libsvn_ra_local/ra_plugin.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra_local/split_url.lo -c subversion/libsvn_ra_local/split_url.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/checkout.lo -c subversion/libsvn_repos/checkout.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/commit.lo -c subversion/libsvn_repos/commit.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/delta.lo -c subversion/libsvn_repos/delta.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/dump.lo -c subversion/libsvn_repos/dump.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/hooks.lo -c subversion/libsvn_repos/hooks.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/load.lo -c subversion/libsvn_repos/load.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/log.lo -c subversion/libsvn_repos/log.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/node_tree.lo -c subversion/libsvn_repos/node_tree.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/reporter.lo -c subversion/libsvn_repos/reporter.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/repos.lo -c subversion/libsvn_repos/repos.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_repos/rev_hunt.lo -c subversion/libsvn_repos/rev_hunt.c
   cd subversion/libsvn_repos && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_repos-1.la checkout.lo commit.lo delta.lo dump.lo hooks.lo load.lo log.lo node_tree.lo reporter.lo repos.lo rev_hunt.lo ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   cd subversion/libsvn_ra_local && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_ra_local-1.la ra_plugin.lo split_url.lo ../../subversion/libsvn_repos/libsvn_repos-1.la ../../subversion/libsvn_fs/libsvn_fs-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/add.lo -c subversion/libsvn_client/add.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/auth.lo -c subversion/libsvn_client/auth.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/checkout.lo -c subversion/libsvn_client/checkout.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/cleanup.lo -c subversion/libsvn_client/cleanup.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/commit.lo -c subversion/libsvn_client/commit.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/commit_util.lo -c subversion/libsvn_client/commit_util.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/copy.lo -c subversion/libsvn_client/copy.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/delete.lo -c subversion/libsvn_client/delete.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/diff.lo -c subversion/libsvn_client/diff.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/export.lo -c subversion/libsvn_client/export.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/externals.lo -c subversion/libsvn_client/externals.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/log.lo -c subversion/libsvn_client/log.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/ls.lo -c subversion/libsvn_client/ls.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/prop_commands.lo -c subversion/libsvn_client/prop_commands.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/ra.lo -c subversion/libsvn_client/ra.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/repos_diff.lo -c subversion/libsvn_client/repos_diff.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/resolve.lo -c subversion/libsvn_client/resolve.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/revert.lo -c subversion/libsvn_client/revert.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/revisions.lo -c subversion/libsvn_client/revisions.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/status.lo -c subversion/libsvn_client/status.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/switch.lo -c subversion/libsvn_client/switch.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_client/update.lo -c subversion/libsvn_client/update.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/adm_crawler.lo -c subversion/libsvn_wc/adm_crawler.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/adm_files.lo -c subversion/libsvn_wc/adm_files.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/adm_ops.lo -c subversion/libsvn_wc/adm_ops.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/copy.lo -c subversion/libsvn_wc/copy.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/diff.lo -c subversion/libsvn_wc/diff.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/entries.lo -c subversion/libsvn_wc/entries.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/lock.lo -c subversion/libsvn_wc/lock.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/log.lo -c subversion/libsvn_wc/log.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/merge.lo -c subversion/libsvn_wc/merge.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/props.lo -c subversion/libsvn_wc/props.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/questions.lo -c subversion/libsvn_wc/questions.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/status.lo -c subversion/libsvn_wc/status.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/status_editor.lo -c subversion/libsvn_wc/status_editor.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/translate.lo -c subversion/libsvn_wc/translate.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/update_editor.lo -c subversion/libsvn_wc/update_editor.c
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_wc/util.lo -c subversion/libsvn_wc/util.c
   cd subversion/libsvn_wc && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_wc-1.la adm_crawler.lo adm_files.lo adm_ops.lo copy.lo diff.lo entries.lo lock.lo log.lo merge.lo props.lo questions.lo status.lo status_editor.lo translate.lo update_editor.lo util.lo ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=compile gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/libsvn_ra/ra_loader.lo -c subversion/libsvn_ra/ra_loader.c
   cd subversion/libsvn_ra && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_ra-1.la ra_loader.lo ../../subversion/libsvn_subr/libsvn_subr-1.la ../../subversion/libsvn_ra_local/libsvn_ra_local-1.la ../../subversion/libsvn_ra_dav/libsvn_ra_dav-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   cd subversion/libsvn_client && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o libsvn_client-1.la add.lo auth.lo checkout.lo cleanup.lo commit.lo commit_util.lo copy.lo delete.lo diff.lo export.lo externals.lo log.lo ls.lo prop_commands.lo ra.lo repos_diff.lo resolve.lo revert.lo revisions.lo status.lo switch.lo update.lo ../../subversion/libsvn_wc/libsvn_wc-1.la ../../subversion/libsvn_ra/libsvn_ra-1.la ../../subversion/libsvn_delta/libsvn_delta-1.la ../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: `/usr/lib/libgdbm.la' seems to be moved
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/add-cmd.o -c subversion/clients/cmdline/add-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/checkout-cmd.o -c subversion/clients/cmdline/checkout-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/cleanup-cmd.o -c subversion/clients/cmdline/cleanup-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/commit-cmd.o -c subversion/clients/cmdline/commit-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/copy-cmd.o -c subversion/clients/cmdline/copy-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/delete-cmd.o -c subversion/clients/cmdline/delete-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/diff-cmd.o -c subversion/clients/cmdline/diff-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/export-cmd.o -c subversion/clients/cmdline/export-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/feedback.o -c subversion/clients/cmdline/feedback.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/help-cmd.o -c subversion/clients/cmdline/help-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/import-cmd.o -c subversion/clients/cmdline/import-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/info-cmd.o -c subversion/clients/cmdline/info-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/log-cmd.o -c subversion/clients/cmdline/log-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/ls-cmd.o -c subversion/clients/cmdline/ls-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/main.o -c subversion/clients/cmdline/main.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/merge-cmd.o -c subversion/clients/cmdline/merge-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/mkdir-cmd.o -c subversion/clients/cmdline/mkdir-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/move-cmd.o -c subversion/clients/cmdline/move-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/prompt.o -c subversion/clients/cmdline/prompt.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/propdel-cmd.o -c subversion/clients/cmdline/propdel-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/propedit-cmd.o -c subversion/clients/cmdline/propedit-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/propget-cmd.o -c subversion/clients/cmdline/propget-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/proplist-cmd.o -c subversion/clients/cmdline/proplist-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/props.o -c subversion/clients/cmdline/props.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/propset-cmd.o -c subversion/clients/cmdline/propset-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/resolve-cmd.o -c subversion/clients/cmdline/resolve-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/revert-cmd.o -c subversion/clients/cmdline/revert-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/status-cmd.o -c subversion/clients/cmdline/status-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/status.o -c subversion/clients/cmdline/status.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/switch-cmd.o -c subversion/clients/cmdline/switch-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/update-cmd.o -c subversion/clients/cmdline/update-cmd.c
   gcc -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -I./subversion/include -I. -I/home/kfogel/src/subversion/neon/src -I/usr/local/BerkeleyDB.4.1/include -I/home/kfogel/src/subversion/apr/include -I/home/kfogel/src/subversion/apr-util/include -I/usr/local/BerkeleyDB.4.1/include -I/usr/local/include -o subversion/clients/cmdline/util.o -c subversion/clients/cmdline/util.c
   cd subversion/clients/cmdline && /bin/sh /home/kfogel/src/subversion/libtool --silent --mode=link gcc -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -pthread -Wpointer-arith -Wwrite-strings -Wshadow -DSVN_DEBUG -DAP_DEBUG -L/usr/local/BerkeleyDB.4.1/lib -L/usr/local/lib -rpath /usr/local/lib -o svn add-cmd.o checkout-cmd.o cleanup-cmd.o commit-cmd.o copy-cmd.o delete-cmd.o diff-cmd.o export-cmd.o feedback.o help-cmd.o import-cmd.o info-cmd.o log-cmd.o ls-cmd.o main.o merge-cmd.o mkdir-cmd.o move-cmd.o prompt.o propdel-cmd.o propedit-cmd.o propget-cmd.o proplist-cmd.o props.o propset-cmd.o resolve-cmd.o revert-cmd.o status-cmd.o status.o switch-cmd.o update-cmd.o util.o ../../../subversion/libsvn_client/libsvn_client-1.la ../../../subversion/libsvn_wc/libsvn_wc-1.la ../../../subversion/libsvn_ra/libsvn_ra-1.la ../../../subversion/libsvn_delta/libsvn_delta-1.la ../../../subversion/libsvn_subr/libsvn_subr-1.la /home/kfogel/src/subversion/apr-ut!
 il/libaprutil-0.la -lgdbm -ldb -lexpat /home/kfogel/src/subversion/apr/libapr-0.la -lm -lcrypt -lnsl -lresolv -ldl /home/kfogel/src/subversion/neon/src/libneon.la -L/usr/local/lib
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   libtool: link: warning: library `/usr/lib/libgdbm.la' was moved.
   /home/kfogel/src/subversion/apr-util/.libs/libaprutil-0.so: undefined reference to `dbopen'
   collect2: ld returned 1 exit status
   make: *** [subversion/clients/cmdline/svn] Error 1
   
   Compilation exited abnormally with code 2 at Thu Nov 7 13:26:07

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Nov 7 22:15:25 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.