diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/backend/pas/Makefile.am | 8 |
2 files changed, 13 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 587a0b1552..f339c28fb0 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2000-07-28 Ettore Perazzoli <ettore@helixcode.com> + + * backend/pas/Makefile.am: Add `pas-backend-ldap.c' and + `pas-backend-ldap.h' to `EXTRA_DIST' so they get distributed even + if the OpenLDAP support is not enabled. + 2000-07-27 Christopher James Lahey <clahey@helixcode.com> * backend/ebook/load-pine-addressbook.c: Changed the URI to load diff --git a/addressbook/backend/pas/Makefile.am b/addressbook/backend/pas/Makefile.am index 69fdeb41a7..8f4f8a3731 100644 --- a/addressbook/backend/pas/Makefile.am +++ b/addressbook/backend/pas/Makefile.am @@ -20,8 +20,12 @@ INCLUDES = \ -I$(top_builddir)/addressbook/backend \ $(BONOBO_GNOME_CFLAGS) +LDAP_BACKEND_SOURCES = pas-backend-ldap.c pas-backend-ldap.h + if ENABLE_LDAP -LDAP_BACKEND = pas-backend-ldap.c pas-backend-ldap.h +LDAP_BACKEND = $(LDAP_BACKEND_SOURCES) +else +LDAP_BACKEND = endif noinst_LIBRARIES = libpas.a @@ -44,3 +48,5 @@ libpas_a_SOURCES = \ BUILT_SOURCES = $(CORBA_SOURCE) CLEANFILES += $(BUILT_SOURCES) + +EXTRA_DIST = $(LDAP_BACKEND_SOURCES)
\ No newline at end of file |