diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-28 07:16:07 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-07-28 07:16:07 +0800 |
commit | 6b69bd22e31261fe9db4283c223f76879ad3f7fe (patch) | |
tree | 93f2947d14ea030830fbd86330ba2edf15fd6f0d | |
parent | 2c5a9bc2278c0922807316a0a63d84cd0333f545 (diff) | |
download | gsoc2013-evolution-6b69bd22e31261fe9db4283c223f76879ad3f7fe.tar gsoc2013-evolution-6b69bd22e31261fe9db4283c223f76879ad3f7fe.tar.gz gsoc2013-evolution-6b69bd22e31261fe9db4283c223f76879ad3f7fe.tar.bz2 gsoc2013-evolution-6b69bd22e31261fe9db4283c223f76879ad3f7fe.tar.lz gsoc2013-evolution-6b69bd22e31261fe9db4283c223f76879ad3f7fe.tar.xz gsoc2013-evolution-6b69bd22e31261fe9db4283c223f76879ad3f7fe.tar.zst gsoc2013-evolution-6b69bd22e31261fe9db4283c223f76879ad3f7fe.zip |
Make sure the LDAP backend files get distributed even if OpenLDAP
support is not enabled.
svn path=/trunk/; revision=4401
-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 |