Author: rmeggins
Update of /cvs/dirsec/ldapserver In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27806/ldapserver
Modified Files: Makefile.am Makefile.in configure install-sh compile aclocal.m4 depcomp missing Log Message: Resolves: bug 215995 Bug Description: autoconf build needs to link replication plugin with libdb Reviewed by: nhosoi (Thanks!) Fix Description: Add $(DB_LINK) to the replication plugin in Makefile.am Platforms tested: RHEL4/FC5 Flag Day: no Doc impact: no
Index: Makefile.am =================================================================== RCS file: /cvs/dirsec/ldapserver/Makefile.am,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- Makefile.am 15 Nov 2006 17:17:37 -0000 1.13 +++ Makefile.am 16 Nov 2006 18:56:03 -0000 1.14 @@ -681,7 +681,7 @@ ldap/servers/plugins/replication/windows_tot_protocol.c
libreplication_plugin_la_CPPFLAGS = @icu_inc@ @db_inc@ $(PLUGIN_CPPFLAGS) -libreplication_plugin_la_LIBADD = $(ICU_LINK) +libreplication_plugin_la_LIBADD = $(ICU_LINK) $(DB_LINK)
#------------------------ # libretrocl-plugin
Index: Makefile.in =================================================================== RCS file: /cvs/dirsec/ldapserver/Makefile.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- Makefile.in 15 Nov 2006 17:17:37 -0000 1.14 +++ Makefile.in 16 Nov 2006 18:56:03 -0000 1.15 @@ -350,7 +350,8 @@ libreferint_plugin_la_LIBADD = am_libreferint_plugin_la_OBJECTS = ldap/servers/plugins/referint/libreferint_plugin_la-referint.lo libreferint_plugin_la_OBJECTS = $(am_libreferint_plugin_la_OBJECTS) -libreplication_plugin_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +libreplication_plugin_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) am_libreplication_plugin_la_OBJECTS = ldap/servers/plugins/replication/libreplication_plugin_la-cl5_api.lo \ ldap/servers/plugins/replication/libreplication_plugin_la-cl5_clcache.lo \ ldap/servers/plugins/replication/libreplication_plugin_la-cl5_config.lo \ @@ -1543,7 +1544,7 @@ ldap/servers/plugins/replication/windows_tot_protocol.c
libreplication_plugin_la_CPPFLAGS = @icu_inc@ @db_inc@ $(PLUGIN_CPPFLAGS) -libreplication_plugin_la_LIBADD = $(ICU_LINK) +libreplication_plugin_la_LIBADD = $(ICU_LINK) $(DB_LINK)
#------------------------ # libretrocl-plugin
389-commits@lists.fedoraproject.org