diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-05-28 09:24:41 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-05-28 09:24:41 +0800 |
commit | a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db (patch) | |
tree | 78f9d128af96e0ed1cbc26992c1536dfd1be9cc0 /mail/Makefile.am | |
parent | bb076508f07b6fa4ee2a1534d727659dd7b06cc7 (diff) | |
download | gsoc2013-evolution-a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db.tar gsoc2013-evolution-a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db.tar.gz gsoc2013-evolution-a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db.tar.bz2 gsoc2013-evolution-a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db.tar.lz gsoc2013-evolution-a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db.tar.xz gsoc2013-evolution-a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db.tar.zst gsoc2013-evolution-a40da8d5704e3c3eed1cc9fd9d5bf9eab554a7db.zip |
Removed the etable spec string. (message_list_construct): Load the etable
2001-05-27 Jeffrey Stedfast <fejj@ximian.com>
* message-list.c: Removed the etable spec string.
(message_list_construct): Load the etable spec from a file.
* folder-browser-factory.c: Load the etable spec from the file,
not a string.
* Makefile.am: Add message-list.etspec to be installed.
* message-list.etspec: New file containing the ETable file
specification.
* mail-config.h: Prototype evolution_mail_config_get_type.
svn path=/trunk/; revision=10025
Diffstat (limited to 'mail/Makefile.am')
-rw-r--r-- | mail/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/Makefile.am b/mail/Makefile.am index efb646be08..4b6f24eea8 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -24,6 +24,7 @@ INCLUDES = \ $(MAILER_CFLAGS) \ -DEVOLUTION_DATADIR=\""$(datadir)"\" \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ + -DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \ -DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \ -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \ -DCAMEL_PROVIDERDIR=\""$(providerdir)"\" \ @@ -160,13 +161,16 @@ oaf_DATA = $(oaf_in_files:.oaf.in=.oaf) gladedir = $(datadir)/evolution/glade glade_DATA = mail-config.glade local-config.glade +etspecdir = $(datadir)/evolution/etspec/ +etspec_DATA = message-list.etspec + iconsdir = $(datadir)/images/evolution $(EVOLUTION_MAIL_CORBA_GENERATED): Mail.idl $(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl -I `$(GNOME_CONFIG) --cflags idl` \ -I `$(GNOME_CONFIG) --datadir`/idl $(srcdir)/Mail.idl -EXTRA_DIST = Mail.idl $(glade_DATA) $(oaf_in_files) $(oaf_DATA) +EXTRA_DIST = Mail.idl $(glade_DATA) $(oaf_in_files) $(oaf_DATA) $(etspec_DATA) if ENABLE_PURIFY PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ |