[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: Seg Fault during make tests on AIX (ITS#1134)



I saw your post about AIX 4.3.3 generating seg. faults at the "make test"
step and was having the same problem. I did the following and was able to
get it to pass the tests: I configured with the --enable-shared=no (no
shared libraries). Still I was having a problem with getaddrinfo so I went
into the file include/portable.h and took out the definition of
HAVEGETADDRINFO: 
#define HAVE_GETADDRINFO 1 
and replaced it with 
#undef HAVE_GETADDRINFO

I then did the make depend,make, and make test and it passed all the
tests. ( I then went into the configure script and hardwired getaddrinfo
to no, reran the configure --enable-shared=no,make depend,make, and make
test. If you want instructions for that ask and I'll send them). I haven't
yet actually set up my slapd.conf file yet or created my database, but
passing those tests is a good sign that it will work. I'm using gcc with a
gdbm backend. I had installed ssl and sasl support but for now I've
removed those libraries until I see that what I've done so far actually
works.

Why don't you try the same thing on your box and if you are also
successful we can report back to openldap that we have a workaround for
the problem. 

bz