diff options
author | tv <tv@pkgsrc.org> | 1999-05-04 00:08:43 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1999-05-04 00:08:43 +0000 |
commit | 72a191db1c236b672c5b86978616b022bfd9a510 (patch) | |
tree | ea0da3278774396a84c0aaa7b00292117e2cced2 /databases/openldap/patches | |
parent | f537c05412dd6a2f2ec6eb18def0eb9bdf9b7f1a (diff) | |
download | pkgsrc-72a191db1c236b672c5b86978616b022bfd9a510.tar.gz |
Build shared libraries by using pkglibtool (bump version to "...p1" to
indicate change), skip "make depend", add a Kerberos switch, and add a few
backends.
Diffstat (limited to 'databases/openldap/patches')
-rw-r--r-- | databases/openldap/patches/patch-aa | 21 | ||||
-rw-r--r-- | databases/openldap/patches/patch-ab | 19 |
2 files changed, 40 insertions, 0 deletions
diff --git a/databases/openldap/patches/patch-aa b/databases/openldap/patches/patch-aa new file mode 100644 index 00000000000..633cc98fadc --- /dev/null +++ b/databases/openldap/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1 1999/05/04 00:08:43 tv Exp $ + +--- configure.orig Mon May 3 18:51:06 1999 ++++ configure Mon May 3 18:51:24 1999 +@@ -2067,6 +2067,7 @@ + echo "$ac_t""no" 1>&6 + fi + ++if false; then + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' + +@@ -2112,7 +2113,7 @@ + ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \ + $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \ + || { echo "configure: error: libtool configure failed" 1>&2; exit 1; } +- ++fi + + # Extract the first word of "sendmail", so it can be a program name with args. + set dummy sendmail; ac_word=$2 diff --git a/databases/openldap/patches/patch-ab b/databases/openldap/patches/patch-ab new file mode 100644 index 00000000000..53bec849992 --- /dev/null +++ b/databases/openldap/patches/patch-ab @@ -0,0 +1,19 @@ +$NetBSD: patch-ab,v 1.1 1999/05/04 00:08:43 tv Exp $ + +--- build/lib-shared.mk.orig Mon May 3 19:21:39 1999 ++++ build/lib-shared.mk Mon May 3 19:24:56 1999 +@@ -18,9 +18,10 @@ + + $(LIBRARY): version.lo + $(LINK) -rpath $(libdir) -o $@ $(OBJS) version.lo +- $(RM) ../$@; \ +- (d=`$(PWD)` ; $(LN_S) `$(BASENAME) $$d`/$@ ../$@) +- $(RM) ../`$(BASENAME) $@ .la`.a; \ +- (d=`$(PWD)`; t=`$(BASENAME) $@ .la`.a; $(LN_S) `$(BASENAME) $$d`/.libs/$$t ../$$t) ++ @$(RM) ../$@ ++ @for ext in a so so.1.0; do \ ++ $(RM) ../`$(BASENAME) $@ .la`.$$ext; \ ++ (d=`$(PWD)`; t=`$(BASENAME) $@ .la`.$$ext; $(LN_S) `$(BASENAME) $$d`/.libs/$$t ../$$t); \ ++ done + + Makefile: $(top_srcdir)/build/lib-shared.mk |