diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/contact-editor/Makefile.am | 4 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/test-editor.c | 23 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/Makefile.am | 4 |
3 files changed, 19 insertions, 12 deletions
diff --git a/addressbook/gui/contact-editor/Makefile.am b/addressbook/gui/contact-editor/Makefile.am index ccd40deebb..29ddb6ee9c 100644 --- a/addressbook/gui/contact-editor/Makefile.am +++ b/addressbook/gui/contact-editor/Makefile.am @@ -1,3 +1,7 @@ +if OS_WIN32 +WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-addressbook.la +endif + AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ diff --git a/addressbook/gui/contact-editor/test-editor.c b/addressbook/gui/contact-editor/test-editor.c index 751bab4203..d6f77c3261 100644 --- a/addressbook/gui/contact-editor/test-editor.c +++ b/addressbook/gui/contact-editor/test-editor.c @@ -29,18 +29,17 @@ #include "ebook/e-card.h" #define TEST_VCARD \ -"BEGIN:VCARD" \ -"FN:Nat" \ -"N:Friedman;Nat;D;Mr." \ -"BDAY:1977-08-06" \ -"TEL;WORK:617 679 1984" \ -"TEL;CELL:123 456 7890" \ -"EMAIL;INTERNET:nat@nat.org" \ -"EMAIL;INTERNET:nat@ximian.com" \ -"ADR;WORK;POSTAL:P.O. Box 101;;;Any Town;CA;91921-1234;" \ -"ADR;HOME;POSTAL;INTL:P.O. Box 202;;;Any Town 2;MI;12344-4321;USA" \ -"END:VCARD" \ -"" +"BEGIN:VCARD\n" \ +"FN:Nat\n" \ +"N:Friedman;Nat;D;Mr.\n" \ +"BDAY:1977-08-06\n" \ +"TEL;WORK:617 679 1984\n" \ +"TEL;CELL:123 456 7890\n" \ +"EMAIL;INTERNET:nat@nat.org\n" \ +"EMAIL;INTERNET:nat@ximian.com\n" \ +"ADR;WORK;POSTAL:P.O. Box 101;;;Any Town;CA;91921-1234;\n" \ +"ADR;HOME;POSTAL;INTL:P.O. Box 202;;;Any Town 2;MI;12344-4321;USA\n" \ +"END:VCARD\n" static gchar * read_file (gchar *name) diff --git a/addressbook/gui/contact-list-editor/Makefile.am b/addressbook/gui/contact-list-editor/Makefile.am index 491c1ba62b..608707395d 100644 --- a/addressbook/gui/contact-list-editor/Makefile.am +++ b/addressbook/gui/contact-list-editor/Makefile.am @@ -1,3 +1,7 @@ +if OS_WIN32 +WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-addressbook.la +endif + AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ |