Commit Graph

828 Commits

Author SHA1 Message Date
8f183d269e Included information about db3.
2001-05-31  Christopher James Lahey  <clahey@ximian.com>

	* README: Included information about db3.

	* acconfig.h: Added HAVE_DB_H and HAVE_DB3_DB_H.

	* configure.in: Added various checks for db3 libraries and
	includes.  Of note are the new configure options
	--with-db3-includes=PREFIX and --with-db3-libs=PREFIX to specify
	the location for your db3 library.

From addressbook/ChangeLog:

2001-05-31  Christopher James Lahey  <clahey@ximian.com>

	* backend/pas/Makefile.am (INCLUDES): Added db3 cflags.

	* backend/pas/pas-backend-file.c: Updated this to use db3.

From e-util/ChangeLog:

2001-05-31  Christopher James Lahey  <clahey@ximian.com>

	* Makefile.am (INCLUDES): Added db3 cflags.

	* e-dbhash.c: Made this use db3.

	* e-db3-utils.c, e-db3-utils.h: New files with some helper
	functions.

From wombat/ChangeLog:

2001-05-31  Christopher James Lahey  <clahey@ximian.com>

	* Makefile.am (wombat_LDADD): Added db3 libs.

svn path=/trunk/; revision=10077
2001-06-01 01:02:12 +00:00
e5ecf5d84e Use --moddatadir to derive this.
2001-05-31  Christopher James Lahey  <clahey@ximian.com>

	* configure.in (GTKHTML_DATADIR): Use --moddatadir to derive this.

From composer/ChangeLog:

2001-05-31  Christopher James Lahey  <clahey@ximian.com>

	* Makefile.am (HTML_EDITOR_GENERATED): Use GTKHTML_DATADIR here.

svn path=/trunk/; revision=10070
2001-05-31 21:11:41 +00:00
f40024c726 Bump gal dependency to 0.8.99.1
* configure.in: Bump gal dependency to 0.8.99.1

svn path=/trunk/; revision=10056
2001-05-30 21:39:59 +00:00
0f0dd1ed36 update version requirements
2001-05-29  JP Rosevear  <jpr@ximian.com>

	* README: update version requirements

svn path=/trunk/; revision=10038
2001-05-29 16:09:33 +00:00
cd75a45fc9 Remove reference to verify-evolution-install.sh since it doesn't work any
* README: Remove reference to verify-evolution-install.sh since it
	doesn't work any more.

	* configure.in (EVO_CHECK_LIB): allow this to take a max version
	too, mostly so we can bound the allowable gal versions for
	releases, but also to require libxml < 2.0.
	(OpenSSL): Fixicate to work on NetBSD (OpenSSL in /usr, no libdl).

svn path=/trunk/; revision=9951
2001-05-23 19:21:12 +00:00
3350982c76 s/evolution-vcard-import/evolution-vcard-importer
2001-05-23  Kjartan Maraas  <kmaraas@gnome.org>

	* tools/killev: s/evolution-vcard-import/evolution-vcard-importer

svn path=/trunk/; revision=9948
2001-05-23 13:51:45 +00:00
4c2d071302 Create MAILER_CFLAGS and MAILER_LIBS so that we don't have the same libs
2001-05-22  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in: Create MAILER_CFLAGS and MAILER_LIBS so that we
	don't have the same libs multiple times in the libtool
	command-line.

svn path=/trunk/; revision=9926
2001-05-22 18:43:48 +00:00
98d30b53fa Add in evolution-vcard-importer as part of the list of processes to
kill in killev.
----------------------------------------------------------------------
tools/killev CVS:
----------------------------------------------------------------------

svn path=/trunk/; revision=9901
2001-05-20 19:14:51 +00:00
3ca3f79dbe Return the serialized EDestinations (rather than just a string w/ e-mail
2001-05-18  Jon Trowbridge  <trow@ximian.com>

        * gui/component/select-names/e-select-names-bonobo.c
        (entry_get_property_fn): Return the serialized EDestinations
        (rather than just a string w/ e-mail addresses) through the bonobo
        component's property bag.

        * gui/component/select-names/e-select-names-model.c
        (e_select_names_model_export_destinationv): Added.  A convenience routine
        for serializing the model's EDestinations into a string.

        * gui/component/select-names/e-select-names-popup.c
        (add_html_mail): Added.  Puts in a check menu item for whether or
        not the recipient wants HTML mail.
        (popup_menu_card): Add menu item for HTML mail.  Enable edit
        contact info item.
        (popup_menu_nocard): Add menu item for HTML mail.  Enable edit
        contact info item.

        * backend/ebook/e-book-util.c (e_book_use_local_address_book):
        Added.  Fetches the local addressbook and caches it on the first
        call.  This is meant to be an easy and efficient way to get at the
        local addressbook with the minimum of code.
        (e_book_query_address_locally): Added.  Convenience code that
        does an e-mail only e_book_name_and_email_query against the
        local address book.

        * backend/ebook/e-destination.c
        (e_destination_set_html_mail_pref): Added.  Allows the intended
        recipient's HTML mail preference to be manipulated.
        (e_destination_get_email_verbose): Added.  Cleaned up to use
        e_destination_get_name.
        (e_destination_get_html_mail_pref): Added.  Read the recipient's HTML mail
        preference.  If the destination is linked to a card, the
        preference is taken from the card (unless it has been explicitly
        overridden by a called to e_destination_set_html_mail_pref).
        (e_destination_get_address_textv): Added.  Form a unified address string
        from a NULL-terminated vector of EDestinations.
        (e_destination_export): Added.  Serialize an EDestination to a string.
        (e_destination_import): Added.  Unserialize a string to build an
        EDestination.
        (e_destination_exportv): Added.  Serialize a NULL-terminated vector of
        EDestinations to a string.
        (e_destination_importv): Added.  Unserialize a string to build a
        NULL-terminated vector of EDestinations.

        * gui/component/select-names/e-select-names-completion.c:
        Implemented local versions of g_strcasecmp and g_strncasecmp
        (which should really be in glib, I think...) for utf8, and used
        them to make this code utf8-safe.

2001-05-18  Jon Trowbridge  <trow@ximian.com>

        * Makefile.am (evolution_mail_LDADD): Added libebook.la (which is
        now required by the composer.)

2001-05-18  Jon Trowbridge  <trow@ximian.com>

        * e-msg-composer-hdrs.c (set_recipients): Properly unserialize the
        string returned by the "text" property of the bonobo control,
        convert it into EDestinations, and use them to get the e-mail
        addresses of our recipients.

22001-05-18  Jon Trowbridge  <trow@ximian.com>

        * Makefile.am (SUBDIRS): Changed build order.  Now addressbook
        gets built before mail.

svn path=/trunk/; revision=9878
2001-05-18 07:10:04 +00:00
65e03ad7ca Create CAMEL_CFLAGS and CAMEL_LIBS so that we don't have to link in all
2001-05-15  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in: Create CAMEL_CFLAGS and CAMEL_LIBS so that we
	don't have to link in all sorts of unnecessary garbage from GNOME
	that we don't need.

svn path=/trunk/; revision=9824
2001-05-15 19:27:46 +00:00
b276b274ed add the importers.
2001-05-15  Chris Toshok  <toshok@ximian.com>

	* tools/killev: add the importers.

svn path=/trunk/; revision=9812
2001-05-15 13:07:49 +00:00
05169b7497 added file for Scrollkeeper
2001-05-14  Kevin Breit  <battery841@mediaone.net>

	* doc/C/evolution-C.omf: added file for Scrollkeeper

svn path=/trunk/; revision=9809
2001-05-14 23:17:29 +00:00
c414a3739a add the nspr includes to the list of includes used to test for NSS
2001-05-09  Chris Toshok  <toshok@ximian.com>

	* configure.in: add the nspr includes to the list of includes used
	to test for NSS headers, and don't assume -lpthread in the
	nss/nspr libs - use PTHREAD_LIB.

svn path=/trunk/; revision=9743
2001-05-10 06:17:23 +00:00
a5aed7b0a7 Kill the RDF Summary as well.
Fix from R. Burton.
Closes bug #1620

svn path=/trunk/; revision=9728
2001-05-09 19:50:47 +00:00
76b3a1c207 OpenSSL LDFLAGS also needs to include -lcrypt
2001-05-09  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in: OpenSSL LDFLAGS also needs to include -lcrypt

svn path=/trunk/; revision=9727
2001-05-09 17:35:54 +00:00
c64eccfe00 Importer changes
svn path=/trunk/; revision=9722
2001-05-08 22:53:41 +00:00
acf9e759d9 Bumped check for gal to 0.7.99.3.
2001-05-08  Christopher James Lahey  <clahey@ximian.com>

	* configure.in: Bumped check for gal to 0.7.99.3.

svn path=/trunk/; revision=9712
2001-05-08 05:02:50 +00:00
d0c769d285 undef HAVE_SSL and HAVE_OPENSSL
2001-05-04  Jeffrey Stedfast  <fejj@ximian.com>

	* acconfig.h: undef HAVE_SSL and HAVE_OPENSSL

	* configure.in: Check for OpenSSL.

svn path=/trunk/; revision=9698
2001-05-07 20:35:07 +00:00
1a2b496879 upped required gtkhtml version to 0.9.3, even that is not enough for idl
2001-05-05  Gediminas Paulauskas <menesis@delfi.lt>

	* configure.in: upped required gtkhtml version to 0.9.3, even that is
	not enough for idl changes.
	* README: you need LIB_XML_1_BRANCH. updated all version requirements
	from configure.in

svn path=/trunk/; revision=9683
2001-05-05 16:28:29 +00:00
ca6c493597 Merge fix from the 0.10 branch:
Don't autogen `executive-summary/widgets/Makefile' as that
  subdirectory doesn't get distributed anymore.

svn path=/trunk/; revision=9600
2001-04-26 21:46:11 +00:00
ac59d9fb45 Check for gethostbyname_r so e_gethostbyname_r will DTRT.
* configure.in: Check for gethostbyname_r so e_gethostbyname_r
	will DTRT.

svn path=/trunk/; revision=9591
2001-04-26 20:02:39 +00:00
d522b604df We no longer depend on libunicode.
* README: We no longer depend on libunicode.

	* configure.in: Remove check for libunicode. Remove unicode cflags
	and libs from all CFLAGS and LIBS variables. Add GAL_LIBS for
	things that need to depend on just gal (for gunicode).

svn path=/trunk/; revision=9586
2001-04-26 18:21:54 +00:00
2ab420a858 Bump up the gal requirement
* configure.in: Bump up the gal requirement

svn path=/trunk/; revision=9546
2001-04-24 16:21:59 +00:00
c8ace927b9 Documentation building fixes merged from the evolution-0-10-branch:
Get the docs to build and install properly.  Temporarily disable the
  importer devel docs as they seem to be pretty broken.

svn path=/trunk/; revision=9507
2001-04-23 16:06:53 +00:00
29b0f2cffc We need to link in more than just libnspr4, we also need libpthread.
2001-04-21  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in (have_nspr_libs): We need to link in more than just
	libnspr4, we also need libpthread.
	(have_nss_libs): Don't forget to add nsprlibs to the LDFLAGS.

svn path=/trunk/; revision=9497
2001-04-23 00:24:34 +00:00
dcf514515c Added in "compose-messages.png" in the Makefile of evolution/art
svn path=/trunk/; revision=9487
2001-04-21 20:18:31 +00:00
862bee6f12 Merge fix from the 0.10 branch:
`AC_OUTPUT()' `mail/Makefile' before `mail/importers/Makefile'.

svn path=/trunk/; revision=9386
2001-04-16 17:25:28 +00:00
d0df7bb293 Pull up fix from the branch:
Check for Editor.idl in the GNOME_PATH as well.  Add `doc' to the
  SUBDIRS in the top-level Makefile.

svn path=/trunk/; revision=9376
2001-04-16 15:52:49 +00:00
2814f8d765 Updated the required version of gal to 0.6.99.0.
2001-04-12  Christopher James Lahey  <clahey@ximian.com>

	* configure.in: Updated the required version of gal to 0.6.99.0.

svn path=/trunk/; revision=9292
2001-04-13 00:51:02 +00:00
f132c28d7f Check if gethostbyname_r take five params
2001-04-11  JP Rosevear  <jpr@ximian.com>

	* configure.in: Check if gethostbyname_r take five params

	* acconfig.h: add GETHOSTBYNAME_R_FIVE_ARGS

2001-04-11  JP Rosevear  <jpr@ximian.com>

	* providers/imap/Makefile.am: user GNOME_INCLUDEDIR since gnome
	files are included in the top level camel headers and the gtk
	include dir is now versioned and such

	* providers/local/Makefile.am: ditto

	* providers/pop3/Makefile.am: ditto

	* providers/smtp/Makefile.am: ditto

	* providers/sendmail/Makefile.am: ditto

	* camel-service.c: use five arg version of gethostbyname_r if
	appropriate
	(camel_get_host_byname): check if msg->herr is non-zero instead of
	checking if msg->hp is null since we may not always have msg->hp

svn path=/trunk/; revision=9239
2001-04-11 16:10:30 +00:00
1991d205da i18n fixes, added missing includes.
2001-04-10  Gediminas Paulauskas <menesis@delfi.lt>

	* AUTHORS: /me is a translator.
	* configure.in (EVO_CHECK_LIB): fail with AC_MSG_ERROR, not echo &&
	exit 1.

2001-04-10  Gediminas Paulauskas <menesis@delfi.lt>

	* backend/ebook/evolution-gnomecard-importer.c: added missing #include.
	* contact-editor/e-contact-editor.c (_arrow_pressed): popup menu items were
	not translated after selecting one of them.
	* gui/widgets/e-addressbook-view.c: mark popup menu items with N_().
	Updated list[] for translators.
	* gui/widgets/e-minicard.c: same.
	* gui/widgets/e-minicard-view-widget.c (e_minicard_view_widget_set_arg): fix warning
	for "editable" arg.
	* gui/widgets/e-minicard-view.c: convert "empty_message" to utf8.

2001-04-10  Gediminas Paulauskas <menesis@delfi.lt>

	* widgets/e-summary-subwindow.c: added some missing includes.
	* widgets/e-summary-title-button.h: same.

2001-04-10  Gediminas Paulauskas <menesis@delfi.lt>

	* menus/gal-view-menus.c: convert label to utf8.

svn path=/trunk/; revision=9215
2001-04-10 21:28:40 +00:00
bcc5969a21 create the makefile in camel/tests/smime
2001-04-10  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in (EVOLUTION_DIR): create the makefile in
	camel/tests/smime

svn path=/trunk/; revision=9212
2001-04-10 15:41:52 +00:00
c3c9ca3526 add some more 16 character versions for freebsd.
2001-04-08  Chris Toshok  <toshok@ximian.com>

	* tools/killev (sysname): add some more 16 character versions for
	freebsd.

svn path=/trunk/; revision=9208
2001-04-09 00:25:55 +00:00
bb551848f5 Brag.
2001-04-04  Kjartan Maraas  <kmaraas@gnome.org>

	* AUTHORS: Brag.

svn path=/trunk/; revision=9188
2001-04-04 20:55:58 +00:00
c7179850dc Executive summary and Trash now have nice icons both in tree/folder title and
shortcut bar.

Converted and replaced icons for trash and summary:
exec-16-summary.xpm => evolution-today-mini.png
delete_mesage.xpm => evolution-trash-mini.png,
Copied evolution-trash.png icons from mc (needs tweaking to match other
evolution icons though)

svn path=/trunk/; revision=9154
2001-04-03 23:24:50 +00:00
c7232066ec Remind users that they will currently have to copy their cert database
2001-04-02  Jeffrey Stedfast  <fejj@ximian.com>

	* README (SSL): Remind users that they will currently have to copy
	their cert database from their mozilla directory into ~/evolution.

svn path=/trunk/; revision=9118
2001-04-03 03:22:39 +00:00
042704ddd3 Blessed by Ettore.
Guided by Jacub Stener's mail, where he explaned which icons were renamed or
added, I added a bunch of new icons to menus, fixed renamed ones. Changed Trash
and Executive summary folder type icons. Fixed art/Makefile.am for these
changes.

Also, pulled icon cache from mailer and moved it to e-util/e-gui-utils.h, made
all components and dialogs use cache and not load pixmaps every time.

Accidentally got a couple of includes fix in, but they won't break anything.

svn path=/trunk/; revision=9092
2001-04-02 03:59:11 +00:00
4ff1d39039 Bump this to 10. (We forgot to do this before branching *again*...)
* configure.in (EVOLUTION_MICRO_VERSION): Bump this to 10. (We
	forgot to do this before branching *again*...)

svn path=/trunk/; revision=9053
2001-03-30 21:44:12 +00:00
e3ac0bad97 add a bit mentioning that if configure claims you don't have something
* README: add a bit mentioning that if configure claims you don't
	have something installed when you think you do, that it's probably
	because you installed it in the wrong prefix, or because you need
	a -devel package.

	* configure.in: Add a new macro EVO_CHECK_LIB that checks for a
	gnome-config-based library of a given version or later, correctly,
	and if doesn't find it, suggests that you consult the README. Fix
	the various library checks to use this. Meanwhile, remove a bunch
	of old cruft and reorganize a little.

	* acconfig.h: Remove cruft

svn path=/trunk/; revision=8997
2001-03-28 22:15:35 +00:00
17e6b9ce17 In a burst of egomania, added myself.
2001-03-28  Jon Trowbridge  <trow@ximian.com>

        * AUTHORS: In a burst of egomania, added myself.

svn path=/trunk/; revision=8988
2001-03-28 06:59:57 +00:00
25d35e4efd create camel/misc/Makefile
2001-03-26  Radek Doulik  <rodo@ximian.com>

	* configure.in: create camel/misc/Makefile

svn path=/trunk/; revision=8940
2001-03-26 13:43:19 +00:00
81742b6677 Update xml-i18n-tools version
* README: Update xml-i18n-tools version

svn path=/trunk/; revision=8898
2001-03-22 18:00:51 +00:00
2282cef752 new menu icons
svn path=/trunk/; revision=8893
2001-03-22 12:28:40 +00:00
2252976cf4 fixing checkerboard
svn path=/trunk/; revision=8892
2001-03-22 11:22:30 +00:00
46c32e77f9 Bumped gal requirement to 0.5.99.11.
2001-03-22  Christopher James Lahey  <clahey@ximian.com>

	* configure.in: Bumped gal requirement to 0.5.99.11.

svn path=/trunk/; revision=8885
2001-03-22 09:39:10 +00:00
a52b65816a renaming icons to make Miguel's speedups possible
svn path=/trunk/; revision=8884
2001-03-22 09:15:30 +00:00
cacbb83e0d Require bison, not yacc (for vcc.y)
* configure.in: Require bison, not yacc (for vcc.y)

svn path=/trunk/; revision=8877
2001-03-21 22:46:22 +00:00
cea7205f5e Added all the new icons to the distribution.
2001-03-20  Miguel de Icaza  <miguel@ximian.com>

	* art/Makefile.am (images_DATA): Added all the new icons to the
	distribution.

svn path=/trunk/; revision=8869
2001-03-21 18:04:31 +00:00
ad0bbfd8a0 More fixes for NSPR and NSS checks - use fixed it to use AC_CHECK_HEADERS
2001-03-20  Jeffrey Stedfast  <fejj@ximian.com>

	* configure.in: More fixes for NSPR and NSS checks - use fixed it
	to use AC_CHECK_HEADERS instead of AC_CHECK_FILES. Also made it
	not default the nspr lib path to /usr/lib/mozilla which may not be
	in the user's library path when checking for nspr libs.

svn path=/trunk/; revision=8856
2001-03-20 22:19:01 +00:00
ef59955e2d color coded app icons and some new icons. also a new splash (probably to be replaced in seconds by tigert's ;)
svn path=/trunk/; revision=8855
2001-03-20 20:45:11 +00:00