Sync with HEAD

This commit is contained in:
Kurt Zeilenga 2005-06-13 18:56:13 +00:00
parent 1077ed7715
commit 90807249c8
2 changed files with 10 additions and 2 deletions

2
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# $OpenLDAP$
# from OpenLDAP: pkg/ldap/configure.in,v 1.560.2.8 2005/05/19 22:17:05 kurt Exp
# from OpenLDAP: pkg/ldap/configure.in,v 1.560.2.9 2005/06/10 15:11:24 kurt Exp
# This work is part of OpenLDAP Software <http://www.openldap.org/>.
#

View file

@ -106,6 +106,14 @@ MKDEPFLAG = -l
.c.lo:
$(LTCOMPILE_MOD) $<
$(LIBRARY): version.lo
$(LIBRARY): $(OBJS) version.lo
$(AR) rs $@ $(OBJS)
# Must fixup depends for non-libtool objects
depend-local:
@if test -n "$(OBJS)"; then \
OBJ2=`echo $(OBJS) | $(SED) -e 's/\.o//g'`; \
SCR=''; for i in $$OBJ2; do SCR="$$SCR -e s/^$$i.lo:/$$i.o:/"; done; \
mv Makefile Makefile.bak; $(SED) $$SCR Makefile.bak > Makefile && \
$(RM) Makefile.bak; fi