diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-22 03:05:27 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-22 03:05:27 +0800 |
commit | d201fdec5ad656ee0d066dbf93af5f4ee8d4e86b (patch) | |
tree | 5e67474e7a6ee1ec0b9bae071d7b825c5d22ecf2 /composer | |
parent | 5ad7fa6010d0942b55fddf5eb99f0a9fce707f44 (diff) | |
download | gsoc2013-evolution-d201fdec5ad656ee0d066dbf93af5f4ee8d4e86b.tar.gz gsoc2013-evolution-d201fdec5ad656ee0d066dbf93af5f4ee8d4e86b.tar.zst gsoc2013-evolution-d201fdec5ad656ee0d066dbf93af5f4ee8d4e86b.zip |
build libcomposer as a shared library so it can be linked into
* Makefile.am: build libcomposer as a shared library so it can be
linked into libevolution-mail.so without portability problems
svn path=/trunk/; revision=19992
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/Makefile.am | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 86bd56162f..5e085b3ccf 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2003-02-21 Dan Winship <danw@ximian.com> + + * Makefile.am: build libcomposer as a shared library so it can be + linked into libevolution-mail.so without portability problems + 2003-02-20 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (composer_get_default_charset_setting): Same as diff --git a/composer/Makefile.am b/composer/Makefile.am index 27f138471e..832a8de539 100644 --- a/composer/Makefile.am +++ b/composer/Makefile.am @@ -47,7 +47,7 @@ idl_DATA = $(IDLS) glade_DATA = \ e-msg-composer-attachment.glade -noinst_LIBRARIES = libcomposer.a +noinst_LTLIBRARIES = libcomposer.la INCLUDES = \ -I$(top_srcdir) \ @@ -70,7 +70,7 @@ INCLUDES = \ -DGTK_DISABLE_DEPRECATED \ $(EVOLUTION_MAIL_CFLAGS) -libcomposer_a_SOURCES = \ +libcomposer_la_SOURCES = \ $(IDL_GENERATED) \ $(HTML_EDITOR_GENERATED) \ composer-marshal.c \ |