You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Jean-Louis Berliet <jl...@free.fr> on 2004/02/23 11:57:28 UTC

Compilation problems on AIX 5.1

I couldn't compile subversion 0.37 on a AIX 5.1 server.

I just want to have a basic client (http access on a linux subversion
server with apache2).

- The configure options i'm using :
./configure --enable-all-static --without-berkeley-db --without-apache
--without-jdk --without-swig

- the compilation failed with this command :

cd subversion/clients/cmdline && /bin/sh
/int/jlb/subversion-0.37.0/libtool --silent --mode=link cc -all-static 
-g  -g -qHALT=E   -Wl,-brtl 
-L/int/jlb/subversion-0.37.0/apr-util/xml/expat/lib  -rpath
/usr/local/lib -o svn add-cmd.o blame-cmd.o cat-cmd.o checkout-cmd.o
cleanup-cmd.o commit-cmd.o copy-cmd.o delete-cmd.o diff-cmd.o
export-cmd.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 notify.o prompt.o
propdel-cmd.o propedit-cmd.o propget-cmd.o proplist-cmd.o props.o
propset-cmd.o resolved-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
/int/jlb/subversion-0.37.0/apr-util/libaprutil-0.la
/int/jlb/subversion-0.37.0/apr-util/xml/expat/lib/libexpat.la -liconv
/int/jlb/subversion-0.37.0/apr/libapr-0.la -lm -lnsl  -lpthread
/int/jlb/subversion-0.37.0/neon/src/libneon.la -L/usr/local/lib
 
 
 
ld: 0711-317 ERROR: Undefined symbol: t_open
ld: 0711-317 ERROR: Undefined symbol: t_getstate
ld: 0711-317 ERROR: Undefined symbol: t_unbind
ld: 0711-317 ERROR: Undefined symbol: t_sync
ld: 0711-317 ERROR: Undefined symbol: t_close
ld: 0711-317 ERROR: Undefined symbol: t_bind
ld: 0711-317 ERROR: Undefined symbol: t_getinfo
ld: 0711-317 ERROR: Undefined symbol: _terrno
ld: 0711-317 ERROR: Undefined symbol: t_alloc
ld: 0711-317 ERROR: Undefined symbol: t_connect
ld: 0711-317 ERROR: Undefined symbol: t_rcvconnect
ld: 0711-317 ERROR: Undefined symbol: t_free
ld: 0711-317 ERROR: Undefined symbol: t_rcv
ld: 0711-317 ERROR: Undefined symbol: t_look
ld: 0711-317 ERROR: Undefined symbol: t_rcvrel
ld: 0711-317 ERROR: Undefined symbol: t_sndrel
ld: 0711-317 ERROR: Undefined symbol: t_rcvdis
ld: 0711-317 ERROR: Undefined symbol: t_snddis
ld: 0711-317 ERROR: Undefined symbol: t_snd
ld: 0711-317 ERROR: Undefined symbol: t_optmgmt
ld: 0711-317 ERROR: Undefined symbol: t_sndudata
ld: 0711-317 ERROR: Undefined symbol: t_rcvudata
ld: 0711-317 ERROR: Undefined symbol: t_rcvuderr
ld: 0711-317 ERROR: Undefined symbol: t_errlist
ld: 0711-317 ERROR: Undefined symbol: t_nerr
ld: 0711-317 ERROR: Undefined symbol: t_listen
ld: 0711-317 ERROR: Undefined symbol: t_accept
ld: 0711-317 ERROR: Undefined symbol: crypt_r
ld: 0711-317 ERROR: Undefined symbol: max_pw_passlen
ld: 0711-317 ERROR: Undefined symbol: getpass_auto
ld: 0711-317 ERROR: Undefined symbol: salt_len
ld: 0711-317 ERROR: Undefined symbol: encrypted_pw_passlen
ld: 0711-317 ERROR: Undefined symbol: max_history_size
ld: 0711-317 ERROR: Undefined symbol: _valid_crypted
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more
information.
make : 1254-004 Code d'erreur de la dernière commande : 8.

Thanks for the help.

(it's the same problem with "export CFLAGS=-qlanglvl=extended")


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Compilation problems on AIX 5.1

Posted by Travis P <sv...@castle.fastmail.fm>.
On Feb 23, 2004, at 5:57 AM, Jean-Louis Berliet wrote:

> I couldn't compile subversion 0.37 on a AIX 5.1 server.
>
> I just want to have a basic client (http access on a linux subversion
> server with apache2).
>
> - The configure options i'm using :
> ./configure --enable-all-static --without-berkeley-db --without-apache
> --without-jdk --without-swig

I setup a similar configuration to what you are attempting (apache 
server on Linux; client on AIX as well as Linux and MacOS X).
Here is the configure command line that I used to build the subversion 
0.37 client on AIX 5.1:

% env PATH=.:/projects/svn/aix51/pkg/openssl-0.9.7c/bin:/bin:/usr/bin 
CPPFLAGS="-I/projects/svn/aix51/pkg/zlib-1.2.1/include 
-I/projects/svn/aix51/pkg/openssl-0.9.7c/include" 
LDFLAGS="-L/projects/svn/aix51/pkg/zlib-1.2.1/lib 
-L/projects/svn/aix51/pkg/openssl-0.9.7c/lib" CC="xlc_r" 
CFLAGS="-qmaxmem=-1 -O -qlanglvl=extended" ./configure 
--prefix=/projects/svn/aix51/pkg/subversion-0.37.0  --with-ssl 
--with-zlib  --enable-shared=no --enable-maintainer-mode 
--without-berkeley-db |& tee co.conf

I did discover that without "--enable-shared=no," I got a crash related 
to shared libraries whether I compiled with xlc or with gcc (3.3.3).

-Travis


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org