This fixes by setting peeraddr correctly.
Latest CVS source seems to be fixed in another way, but it looks
that stores into auto variable in local scope which may cause a
problem...
When you try to start slapd with the sample commandline
arguments for specifying multiple URIs in
/usr/local/etc/rc.d/slapd.sh, it fails.
PR: ports/49074
Submitted by: Taoka Fumiyoshi <fmysh@iijmio-mail.jp>
Compile it. Try to run it. It won't.
ktracing /usr/local/libexec/slapd -d 0 and confirming with
ldd shows that it compiles with db3's headers (as specified
by the port makefile) but links with /usr/local/lib/libdb4
(if present...as it is on my system).
PR: ports/38744
Submitted by: Faried Nawaz <fn@hungry.org>
- USE_AUTO* -> USE_AUTO*_VER=* where required
- USE_AUTO* / *_DEPENDS=.*auto*:*/devel/auto* -> GNU_CONFIGURE where OK
- Other minor changes to fix things
These changes should be no-ops with the current bsd.port.mk, but will
assist in preparing for the next generation of USE_AUTO*.
Submitted by: bento 4-exp USE_AUTO* cleanups
http://people.FreeBSD.org/~will/4-exp/http://bento.FreeBSD.org/errorlogs/4-exp-latest/
been broken by the incompatibility between db3.2 and db3.3.
I am unconditionally bumping the PORTREVISION's to eliminate possible
troubles that should not happen before the coming release.
Sorry for inconvenience. I'll try to check compatibility hard before
committing next time.
to the really persistent /var/db. Bump PORTREVISION to indicate
behavior/functionality change (make it work across reboots, well
how about that ;)
PR: 27879
Submitted by: David Wimsey <dwimsey@rtci.com>
* Rewrite lines like:
@exec [ CONDITION ] && ACTION
as:
@exec [ ! CONDITION ] || ACTION
In the first version, the @executed command returns false if CONDITION
is false and ACTION is not performed: pkg_add would then complain about the
whole command's exit code.
The second version returns either true or the actual ACTION exit code.
* Do not echo some Makefile commands.
- Use Sleepycat Berkeley DB 3.2 that OpenLDAP2's README
recommends. It is known to be multithread friendlier than
Berkeley DB 1.85 included in our libc or GDBM.
- Add -D_REENTRANT and -D_THREAD_SAFE to CPPFLAGS
Submitted by: Yarema <yds@dppl.com>