aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-09-25 10:27:30 +0800
committerChris Toshok <toshok@src.gnome.org>2001-09-25 10:27:30 +0800
commit917de6bd879b9463be724f58c10c9a9e986e59ad (patch)
tree9787ae31a3e9bbcf09acf244d04ff08ef68d19bf
parent35fe068ed2a74a9eee0f52236625d913951a56b0 (diff)
downloadgsoc2013-evolution-917de6bd879b9463be724f58c10c9a9e986e59ad.tar
gsoc2013-evolution-917de6bd879b9463be724f58c10c9a9e986e59ad.tar.gz
gsoc2013-evolution-917de6bd879b9463be724f58c10c9a9e986e59ad.tar.bz2
gsoc2013-evolution-917de6bd879b9463be724f58c10c9a9e986e59ad.tar.lz
gsoc2013-evolution-917de6bd879b9463be724f58c10c9a9e986e59ad.tar.xz
gsoc2013-evolution-917de6bd879b9463be724f58c10c9a9e986e59ad.tar.zst
gsoc2013-evolution-917de6bd879b9463be724f58c10c9a9e986e59ad.zip
add evolutionperson.schema (EXTRA_DIST): add LDAP_SCHEMA to the dist (but
2001-09-24 Chris Toshok <toshok@ximian.com> * backend/pas/Makefile.am (LDAP_SCHEMA): add evolutionperson.schema (EXTRA_DIST): add LDAP_SCHEMA to the dist (but don't install it). svn path=/trunk/; revision=13107
-rw-r--r--addressbook/ChangeLog11
-rw-r--r--addressbook/backend/pas/Makefile.am5
2 files changed, 15 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 970b746396..3d3089b412 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-24 Chris Toshok <toshok@ximian.com>
+
+ * backend/pas/Makefile.am (LDAP_SCHEMA): add
+ evolutionperson.schema
+ (EXTRA_DIST): add LDAP_SCHEMA to the dist (but don't install it).
+
2001-09-23 JP Rosevear <jpr@ximian.com>
* conduit/address-conduit.c (ecard_from_remote_record): sync the
@@ -6,6 +12,11 @@
2001-09-22 Chris Toshok <toshok@ximian.com>
+ * backend/pas/pas-backend-file.c (do_create): g_free (id) in the
+ error case to plug a memory leak.
+
+2001-09-22 Chris Toshok <toshok@ximian.com>
+
* gui/widgets/e-minicard.c (remodel): when creating the cards,
don't display any of the subname fields (surname, given, middle,
suffix, etc.)
diff --git a/addressbook/backend/pas/Makefile.am b/addressbook/backend/pas/Makefile.am
index d5f4813d8d..ea150597c9 100644
--- a/addressbook/backend/pas/Makefile.am
+++ b/addressbook/backend/pas/Makefile.am
@@ -23,6 +23,9 @@ INCLUDES = \
$(BONOBO_GNOME_CFLAGS) \
$(EXTRA_GNOME_CFLAGS)
+LDAP_SCHEMA = \
+ evolutionperson.schema
+
LDAP_BACKEND_FILES = pas-backend-ldap.c pas-backend-ldap.h
if ENABLE_LDAP
@@ -57,4 +60,4 @@ CLEANFILES = $(BUILT_SOURCES)
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
-EXTRA_DIST = $(LDAP_BACKEND_FILES)
+EXTRA_DIST = $(LDAP_BACKEND_FILES) $(LDAP_SCHEMA)