diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-01-17 17:31:33 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-01-17 17:31:33 +0800 |
commit | c51ffb4a5f2979c83841330593524d0091c5b21b (patch) | |
tree | 2a32ff45558ce21e1569011dab1dcd1344e17022 /plugins | |
parent | e0f265af76c266149261582ede1ff9991576072a (diff) | |
download | gsoc2013-evolution-c51ffb4a5f2979c83841330593524d0091c5b21b.tar.gz gsoc2013-evolution-c51ffb4a5f2979c83841330593524d0091c5b21b.tar.zst gsoc2013-evolution-c51ffb4a5f2979c83841330593524d0091c5b21b.zip |
Makefile change to link to camel libs
svn path=/trunk/; revision=28419
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-account-setup/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/exchange-account-setup/Makefile.am | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/plugins/exchange-account-setup/ChangeLog b/plugins/exchange-account-setup/ChangeLog index d8257fb947..6437f2a67d 100644 --- a/plugins/exchange-account-setup/ChangeLog +++ b/plugins/exchange-account-setup/ChangeLog @@ -1,3 +1,8 @@ +2005-01-17 Sushma Rai <rsushma@novell.com> + + * Makefile.am: Linking to camel libs. Fixes plugin loading problem + due to undefined camel symbol, during evolution startup. + 2005-01-13 Sushma Rai <rsushma@novell.com> * org-gnome-exchange-account-setup.eplug.in: Combined diff --git a/plugins/exchange-account-setup/Makefile.am b/plugins/exchange-account-setup/Makefile.am index db8eb028db..16eb6a37ef 100644 --- a/plugins/exchange-account-setup/Makefile.am +++ b/plugins/exchange-account-setup/Makefile.am @@ -1,6 +1,7 @@ INCLUDES = -I . \ -I$(top_srcdir) \ $(EVOLUTION_MAIL_CFLAGS) \ + $(CAMEL_CFLAGS) \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" @EVO_PLUGIN_RULE@ @@ -14,7 +15,8 @@ liborg_gnome_exchange_account_settings_la_SOURCES = \ liborg_gnome_exchange_account_settings_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ - $(top_builddir)/widgets/misc/libemiscwidgets.la + $(top_builddir)/widgets/misc/libemiscwidgets.la \ + $(CAMEL_LIBS) liborg_gnome_exchange_account_settings_la_LDFLAGS = -module -avoid-version |