Use "e-minicard" as the log domain.
2000-04-18 Federico Mena Quintero <federico@helixcode.com> * gui/minicard/Makefile.am (INCLUDES): Use "e-minicard" as the log domain. * gui/component/Makefile.am (INCLUDES): Use "evolution-addressbook" as the log domain. * backend/pas/Makefile.am: Build libpas.a, not a shared library. Do not install any header files. (INCLUDES): Remove spurious include paths. * backend/pas/*.[ch]: Fix includes. * backend/ebook/Makefile.am: Do not install the test programs. Fixed some include weirdness. * backend/ebook/*.[ch]: Fix includes. * contact-editor/Makefile.am (INCLUDES): Set the log domain to "contact-editor". (INCLUDES): Fix. * contact-editor/*.[ch]: Fix includes. * gui/minicard/*.[ch]: Fix includes. svn path=/trunk/; revision=2529
This commit is contained in:
committed by
Federico Mena Quintero
parent
e38b6187f5
commit
a2ee0e2ec9
@ -1,3 +1,28 @@
|
||||
2000-04-17 Federico Mena Quintero <federico@helixcode.com>
|
||||
2000-04-18 Federico Mena Quintero <federico@helixcode.com>
|
||||
|
||||
* gui/minicard/Makefile.am (INCLUDES): Use "e-minicard" as the log
|
||||
domain.
|
||||
|
||||
* gui/component/Makefile.am (INCLUDES): Use
|
||||
"evolution-addressbook" as the log domain.
|
||||
|
||||
* backend/pas/Makefile.am: Build libpas.a, not a shared library.
|
||||
Do not install any header files.
|
||||
(INCLUDES): Remove spurious include paths.
|
||||
|
||||
* backend/pas/*.[ch]: Fix includes.
|
||||
|
||||
* backend/ebook/Makefile.am: Do not install the test programs.
|
||||
Fixed some include weirdness.
|
||||
|
||||
* backend/ebook/*.[ch]: Fix includes.
|
||||
|
||||
* contact-editor/Makefile.am (INCLUDES): Set the log domain to
|
||||
"contact-editor".
|
||||
(INCLUDES): Fix.
|
||||
|
||||
* contact-editor/*.[ch]: Fix includes.
|
||||
|
||||
* gui/minicard/*.[ch]: Fix includes.
|
||||
|
||||
* ChangeLog: Started a ChangeLog here.
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
bin_PROGRAMS = test-card test-client test-client-list
|
||||
noinst_PROGRAMS = test-card test-client test-client-list
|
||||
|
||||
corbadir = $(sysconfdir)/CORBA/servers
|
||||
|
||||
@ -19,11 +19,9 @@ $(CORBA_SOURCE): $(idls)
|
||||
INCLUDES = \
|
||||
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
|
||||
-DG_LOG_DOMAIN=\"EBook\" \
|
||||
-I$(builddir) \
|
||||
-I$(srcdir) -I$(top_srcdir) \
|
||||
-I$(srcdir)/. \
|
||||
-I$(srcdir)/.. \
|
||||
-I$(includedir) \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
$(GNOME_INCLUDEDIR)
|
||||
|
||||
gnome_libs = \
|
||||
@ -50,7 +48,7 @@ libebook_la_SOURCES = \
|
||||
e-card-list.c \
|
||||
e-card.c
|
||||
|
||||
libebookincludedir = $(includedir)/backend
|
||||
libebookincludedir = $(includedir)/evolution/ebook
|
||||
|
||||
libebookinclude_HEADERS = \
|
||||
e-book-listener.h \
|
||||
|
||||
@ -9,8 +9,9 @@
|
||||
* Copyright 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gtk/gtksignal.h>
|
||||
#include <e-book-listener.h>
|
||||
#include "e-book-listener.h"
|
||||
|
||||
static EBookStatus e_book_listener_convert_status (Evolution_BookListener_CallStatus status);
|
||||
|
||||
|
||||
@ -14,8 +14,8 @@
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <bonobo/bonobo-object.h>
|
||||
#include <addressbook.h>
|
||||
#include <e-book-types.h>
|
||||
#include <ebook/addressbook.h>
|
||||
#include <ebook/e-book-types.h>
|
||||
|
||||
BEGIN_GNOME_DECLS
|
||||
|
||||
|
||||
@ -9,10 +9,11 @@
|
||||
* Copyright 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gtk/gtksignal.h>
|
||||
#include <e-book-view-listener.h>
|
||||
#include <e-book-view.h>
|
||||
#include <e-card.h>
|
||||
#include "e-book-view-listener.h"
|
||||
#include "e-book-view.h"
|
||||
#include "e-card.h"
|
||||
|
||||
enum {
|
||||
RESPONSES_QUEUED,
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <bonobo/bonobo-object.h>
|
||||
#include <addressbook.h>
|
||||
#include <ebook/addressbook.h>
|
||||
|
||||
BEGIN_GNOME_DECLS
|
||||
|
||||
|
||||
@ -8,13 +8,14 @@
|
||||
* Copyright 1999, 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <addressbook.h>
|
||||
#include <config.h>
|
||||
#include <libgnorba/gnorba.h>
|
||||
#include <gtk/gtksignal.h>
|
||||
#include <gtk/gtkmarshal.h>
|
||||
#include <e-card-cursor.h>
|
||||
#include <e-book-view-listener.h>
|
||||
#include <e-book-view.h>
|
||||
#include "addressbook.h"
|
||||
#include "e-card-cursor.h"
|
||||
#include "e-book-view-listener.h"
|
||||
#include "e-book-view.h"
|
||||
|
||||
GtkObjectClass *e_book_view_parent_class;
|
||||
|
||||
|
||||
@ -13,8 +13,8 @@
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
|
||||
#include <e-card.h>
|
||||
#include <e-book-view-listener.h>
|
||||
#include <ebook/e-card.h>
|
||||
#include <ebook/e-book-view-listener.h>
|
||||
|
||||
BEGIN_GNOME_DECLS
|
||||
|
||||
|
||||
@ -8,13 +8,14 @@
|
||||
* Copyright 1999, 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <addressbook.h>
|
||||
#include <config.h>
|
||||
#include <libgnorba/gnorba.h>
|
||||
#include <gtk/gtksignal.h>
|
||||
#include <gtk/gtkmarshal.h>
|
||||
#include <e-card-cursor.h>
|
||||
#include <e-book-listener.h>
|
||||
#include <e-book.h>
|
||||
#include "addressbook.h"
|
||||
#include "e-card-cursor.h"
|
||||
#include "e-book-listener.h"
|
||||
#include "e-book.h"
|
||||
|
||||
GtkObjectClass *e_book_parent_class;
|
||||
|
||||
|
||||
@ -13,10 +13,10 @@
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
|
||||
#include <e-card.h>
|
||||
#include <e-card-cursor.h>
|
||||
#include <e-book-view.h>
|
||||
#include <e-book-types.h>
|
||||
#include <ebook/e-card.h>
|
||||
#include <ebook/e-card-cursor.h>
|
||||
#include <ebook/e-book-view.h>
|
||||
#include <ebook/e-book-types.h>
|
||||
|
||||
BEGIN_GNOME_DECLS
|
||||
|
||||
|
||||
@ -12,8 +12,8 @@
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include "addressbook/backend/ebook/addressbook.h"
|
||||
#include "e-card.h"
|
||||
#include <ebook/addressbook.h>
|
||||
#include <ebook/e-card.h>
|
||||
|
||||
BEGIN_GNOME_DECLS
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
#include <config.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include <e-card-iterator.h>
|
||||
#include "e-card-iterator.h"
|
||||
|
||||
#define ECI_CLASS(object) (E_CARD_ITERATOR_CLASS(GTK_OBJECT((object))->klass))
|
||||
|
||||
|
||||
@ -10,8 +10,8 @@
|
||||
#include <config.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include <e-card-list-iterator.h>
|
||||
#include <e-card-list.h>
|
||||
#include "e-card-list-iterator.h"
|
||||
#include "e-card-list.h"
|
||||
|
||||
static void e_card_list_iterator_init (ECardListIterator *card);
|
||||
static void e_card_list_iterator_class_init (ECardListIteratorClass *klass);
|
||||
|
||||
@ -13,8 +13,8 @@
|
||||
#include <time.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <stdio.h>
|
||||
#include <e-card-iterator.h>
|
||||
#include <e-card-list.h>
|
||||
#include <ebook/e-card-iterator.h>
|
||||
#include <ebook/e-card-list.h>
|
||||
|
||||
#define E_TYPE_CARD_LIST_ITERATOR (e_card_list_iterator_get_type ())
|
||||
#define E_CARD_LIST_ITERATOR(obj) (GTK_CHECK_CAST ((obj), E_TYPE_CARD_LIST_ITERATOR, ECardListIterator))
|
||||
|
||||
@ -10,8 +10,8 @@
|
||||
#include <config.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include <e-card-list.h>
|
||||
#include <e-card-list-iterator.h>
|
||||
#include "e-card-list.h"
|
||||
#include "e-card-list-iterator.h"
|
||||
|
||||
#define ECL_CLASS(object) (E_CARD_LIST_CLASS(GTK_OBJECT((object))->klass))
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
#include <time.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <stdio.h>
|
||||
#include <e-card-iterator.h>
|
||||
#include <ebook/e-card-iterator.h>
|
||||
|
||||
#define E_TYPE_CARD_LIST (e_card_list_get_type ())
|
||||
#define E_CARD_LIST(obj) (GTK_CHECK_CAST ((obj), E_TYPE_CARD_LIST, ECardList))
|
||||
|
||||
@ -23,8 +23,8 @@
|
||||
#ifndef __E_CARD_PAIRS_H__
|
||||
#define __E_CARD_PAIRS_H__
|
||||
|
||||
#include "libversit/vcc.h"
|
||||
#include <e-card.h>
|
||||
#include <libversit/vcc.h>
|
||||
#include <ebook/e-card.h>
|
||||
|
||||
|
||||
#if 0
|
||||
|
||||
@ -14,9 +14,9 @@
|
||||
#include <string.h>
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libversit/vcc.h"
|
||||
#include <e-card.h>
|
||||
#include <e-card-pairs.h>
|
||||
#include <libversit/vcc.h>
|
||||
#include "e-card.h"
|
||||
#include "e-card-pairs.h"
|
||||
|
||||
#define is_a_prop_of(obj,prop) (isAPropertyOf ((obj),(prop)))
|
||||
#define str_val(obj) (the_str = (vObjectValueType (obj))? fakeCString (vObjectUStringZValue (obj)) : calloc (1, 1))
|
||||
|
||||
@ -15,8 +15,8 @@
|
||||
#include <time.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <stdio.h>
|
||||
#include <e-card-types.h>
|
||||
#include <e-card-list.h>
|
||||
#include <ebook/e-card-types.h>
|
||||
#include <ebook/e-card-list.h>
|
||||
|
||||
#define E_TYPE_CARD (e_card_get_type ())
|
||||
#define E_CARD(obj) (GTK_CHECK_CAST ((obj), E_TYPE_CARD, ECard))
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
#include <gnome.h>
|
||||
#include <e-card.h>
|
||||
#include "e-card.h"
|
||||
|
||||
#define TEST_VCARD \
|
||||
"BEGIN:VCARD
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
#include <gnome.h>
|
||||
#include <libgnorba/gnorba.h>
|
||||
|
||||
#include <e-book.h>
|
||||
#include "e-book.h"
|
||||
|
||||
CORBA_Environment ev;
|
||||
CORBA_ORB orb;
|
||||
|
||||
@ -1,7 +1,3 @@
|
||||
lib_LTLIBRARIES = libpas.la
|
||||
|
||||
corbadir = $(sysconfdir)/CORBA/servers
|
||||
|
||||
CORBA_SOURCE = \
|
||||
addressbook.h \
|
||||
addressbook-common.c \
|
||||
@ -18,45 +14,32 @@ $(CORBA_SOURCE): $(idls)
|
||||
|
||||
INCLUDES = \
|
||||
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
|
||||
-DG_LOG_DOMAIN=\"Wombat\" \
|
||||
-I$(builddir) \
|
||||
-I$(srcdir) -I$(top_srcdir) \
|
||||
-I$(srcdir)/. \
|
||||
-I$(srcdir)/.. \
|
||||
-I$(top_builddir) \
|
||||
-I$(includedir) \
|
||||
-I$(top_srcdir)/e-util \
|
||||
-I$(top_srcdir)/addressbook/backend/ebook \
|
||||
-DG_LOG_DOMAIN=\"wombat-pas\" \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
$(GNOME_INCLUDEDIR)
|
||||
|
||||
gnome_libs = \
|
||||
$(GNOME_LIBDIR) \
|
||||
$(GNOMEUI_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
$(INTLLIBS)
|
||||
|
||||
if ENABLE_LDAP
|
||||
LDAP_BACKEND = pas-backend-ldap.c
|
||||
endif
|
||||
|
||||
libpas_la_SOURCES = \
|
||||
noinst_LIBRARIES = libpas.a
|
||||
|
||||
libpas_a_SOURCES = \
|
||||
$(CORBA_SOURCE) \
|
||||
pas-book-factory.c \
|
||||
pas-book-factory.h \
|
||||
pas-book-view.c \
|
||||
pas-book-view.h \
|
||||
pas-book.c \
|
||||
pas-book.h \
|
||||
pas-backend-file.c \
|
||||
pas-backend-file.h \
|
||||
$(LDAP_BACKEND) \
|
||||
pas-backend.c \
|
||||
pas-card-cursor.c
|
||||
|
||||
libpasincludedir = $(includedir)/backend
|
||||
|
||||
libpasinclude_HEADERS = \
|
||||
pas-book-factory.h \
|
||||
pas-book-view.h \
|
||||
pas-book.h \
|
||||
pas-backend-file.h \
|
||||
pas-backend.h \
|
||||
pas-card-cursor.c \
|
||||
pas-card-cursor.h
|
||||
|
||||
BUILT_SOURCES = $(CORBA_SOURCE)
|
||||
|
||||
@ -16,11 +16,11 @@
|
||||
#include <db.h>
|
||||
#endif
|
||||
|
||||
#include <pas-backend-file.h>
|
||||
#include <pas-book.h>
|
||||
#include <pas-card-cursor.h>
|
||||
#include <e-card.h>
|
||||
#include <e-sexp.h>
|
||||
#include "pas-backend-file.h"
|
||||
#include "pas-book.h"
|
||||
#include "pas-card-cursor.h"
|
||||
#include <ebook/e-card.h>
|
||||
#include <e-util/e-sexp.h>
|
||||
|
||||
#define PAS_BACKEND_FILE_VERSION_NAME "PAS-DB-VERSION"
|
||||
#define PAS_BACKEND_FILE_VERSION "0.1"
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
#define __PAS_BACKEND_FILE_H__
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <pas-backend.h>
|
||||
#include "pas-backend.h"
|
||||
|
||||
typedef struct _PASBackendFilePrivate PASBackendFilePrivate;
|
||||
|
||||
|
||||
@ -17,8 +17,8 @@
|
||||
#include "pas-book.h"
|
||||
#include "pas-card-cursor.h"
|
||||
|
||||
#include <e-sexp.h>
|
||||
#include <e-card.h>
|
||||
#include <e-util/e-sexp.h>
|
||||
#include <ebook/e-card.h>
|
||||
|
||||
#define LDAP_MAX_SEARCH_RESPONSES 500
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
#define __PAS_BACKEND_LDAP_H__
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <pas-backend.h>
|
||||
#include "pas-backend.h"
|
||||
|
||||
typedef struct _PASBackendLDAPPrivate PASBackendLDAPPrivate;
|
||||
|
||||
|
||||
@ -5,8 +5,9 @@
|
||||
* Copyright 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gtk/gtkobject.h>
|
||||
#include <pas-backend.h>
|
||||
#include "pas-backend.h"
|
||||
|
||||
#define CLASS(o) PAS_BACKEND_CLASS (GTK_OBJECT (o)->klass)
|
||||
|
||||
|
||||
@ -23,12 +23,12 @@
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <gtk/gtkobject.h>
|
||||
#include <addressbook.h>
|
||||
#include <pas/addressbook.h>
|
||||
|
||||
typedef struct _PASBackend PASBackend;
|
||||
typedef struct _PASBackendPrivate PASBackendPrivate;
|
||||
|
||||
#include <pas-book.h>
|
||||
#include <pas/pas-book.h>
|
||||
|
||||
struct _PASBackend {
|
||||
GtkObject parent_object;
|
||||
|
||||
@ -6,10 +6,11 @@
|
||||
* Copyright 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <ctype.h>
|
||||
#include <libgnorba/gnorba.h>
|
||||
#include <addressbook.h>
|
||||
#include <pas-book-factory.h>
|
||||
#include "addressbook.h"
|
||||
#include "pas-book-factory.h"
|
||||
|
||||
#define PAS_BOOK_FACTORY_GOAD_ID "evolution:addressbook-server"
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
#include <bonobo/bonobo-object.h>
|
||||
#include <libgnome/gnome-defs.h>
|
||||
|
||||
#include <pas-backend.h>
|
||||
#include <pas/pas-backend.h>
|
||||
|
||||
#ifndef __PAS_BOOK_FACTORY_H__
|
||||
#define __PAS_BOOK_FACTORY_H__
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
* Copyright 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <glib.h>
|
||||
#include "pas-book-view.h"
|
||||
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
|
||||
#include <bonobo/bonobo-object.h>
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <addressbook.h>
|
||||
#include <pas/addressbook.h>
|
||||
|
||||
typedef struct _PASBookView PASBookView;
|
||||
typedef struct _PASBookViewClass PASBookViewClass;
|
||||
|
||||
@ -5,8 +5,9 @@
|
||||
* Copyright 2000, Helix Code, Inc.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gtk/gtksignal.h>
|
||||
#include <pas-book.h>
|
||||
#include "pas-book.h"
|
||||
|
||||
static BonoboObjectClass *pas_book_parent_class;
|
||||
POA_Evolution_Book__vepv pas_book_vepv;
|
||||
|
||||
@ -14,14 +14,14 @@
|
||||
|
||||
#include <bonobo/bonobo-object.h>
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <addressbook.h>
|
||||
#include <pas-book-view.h>
|
||||
#include <pas/addressbook.h>
|
||||
#include <pas/pas-book-view.h>
|
||||
|
||||
typedef struct _PASBook PASBook;
|
||||
typedef struct _PASBookPrivate PASBookPrivate;
|
||||
|
||||
#include <pas-backend.h>
|
||||
#include <pas-card-cursor.h>
|
||||
#include <pas/pas-backend.h>
|
||||
#include <pas/pas-card-cursor.h>
|
||||
|
||||
typedef enum {
|
||||
CreateCard,
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <bonobo/bonobo-object.h>
|
||||
#include "addressbook.h"
|
||||
#include <pas/addressbook.h>
|
||||
|
||||
BEGIN_GNOME_DECLS
|
||||
|
||||
|
||||
@ -1,18 +1,20 @@
|
||||
imagesdir = $(datadir)/images/evolution
|
||||
|
||||
images = email.png head.png phone.png snailmail.png web.png arrow.png briefcase.png netmeeting.png netfreebusy.png
|
||||
|
||||
EXTRA_DIST = $(images)
|
||||
pkgdata_DATA = $(images)
|
||||
|
||||
CPPFLAGS = \
|
||||
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
||||
CPPFLAGS = \
|
||||
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
||||
-DDATADIR=\""$(datadir)"\"
|
||||
|
||||
INCLUDES = \
|
||||
$(GNOME_INCLUDEDIR) \
|
||||
-I$(top_srcdir)/addressbook/backend/ebook \
|
||||
-DEVOLUTION_IMAGES=\""$(imagesdir)"\"
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/addressbook/ \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-DEVOLUTION_IMAGES=\""$(imagesdir)"\" \
|
||||
-DG_LOG_DOMAIN=\"contact-editor\"
|
||||
|
||||
noinst_LIBRARIES = \
|
||||
libecontacteditor.a
|
||||
@ -21,23 +23,22 @@ libecontacteditor_a_SOURCES = \
|
||||
e-contact-editor.c \
|
||||
e-contact-editor.h
|
||||
|
||||
noinst_PROGRAMS = \
|
||||
noinst_PROGRAMS = \
|
||||
contact-editor-test
|
||||
|
||||
contact_editor_test_SOURCES = \
|
||||
test-editor.c
|
||||
|
||||
contact_editor_test_LDADD = \
|
||||
contact_editor_test_LDADD = \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
libecontacteditor.a \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
libecontacteditor.a \
|
||||
$(EXTRA_GNOME_LIBS)
|
||||
|
||||
gladedir = $(datadir)/evolution/glade
|
||||
|
||||
glade_DATA = \
|
||||
contact-editor.glade
|
||||
|
||||
|
||||
@ -20,8 +20,10 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-contact-editor.h"
|
||||
|
||||
static void e_contact_editor_init (EContactEditor *card);
|
||||
static void e_contact_editor_class_init (EContactEditorClass *klass);
|
||||
static void e_contact_editor_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
#include <gnome.h>
|
||||
#include <glade/glade.h>
|
||||
#include "e-card.h"
|
||||
#include <ebook/e-card.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@ -1,12 +1,13 @@
|
||||
INCLUDES = \
|
||||
$(EXTRA_GNOME_CFLAGS) \
|
||||
$(GNOME_INCLUDEDIR) \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
-I$(top_srcdir)/e-util \
|
||||
-I$(top_srcdir) \
|
||||
INCLUDES = \
|
||||
-DG_LOG_DOMAIN=\"evolution-addressbook\" \
|
||||
$(EXTRA_GNOME_CFLAGS) \
|
||||
$(GNOME_INCLUDEDIR) \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
-I$(top_srcdir)/addressbook/gui/minicard \
|
||||
-I$(top_srcdir)/addressbook/contact-editor \
|
||||
-I$(top_srcdir)/addressbook/backend/ebook \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
$(BONOBO_HTML_GNOME_CFLAGS) \
|
||||
-DEVOLUTION_VERSION=\""$(VERSION)"\" \
|
||||
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
||||
@ -22,13 +23,13 @@ evolution_addressbook_SOURCES = \
|
||||
addressbook.c \
|
||||
addressbook.h
|
||||
|
||||
evolution_addressbook_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(BONOBO_HTML_GNOME_LIBS) \
|
||||
$(top_builddir)/addressbook/gui/minicard/libeminicard.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
evolution_addressbook_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(BONOBO_HTML_GNOME_LIBS) \
|
||||
$(top_builddir)/addressbook/gui/minicard/libeminicard.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/addressbook/contact-editor/libecontacteditor.a \
|
||||
$(top_builddir)/libversit/libversit.la
|
||||
|
||||
|
||||
@ -15,8 +15,8 @@
|
||||
|
||||
#include "addressbook.h"
|
||||
|
||||
#include "e-book.h"
|
||||
#include "e-canvas.h"
|
||||
#include <ebook/e-book.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include "e-minicard-view.h"
|
||||
#include "e-contact-editor.h"
|
||||
|
||||
|
||||
@ -1,18 +1,20 @@
|
||||
imagesdir = $(datadir)/images/evolution
|
||||
|
||||
images = email.png head.png phone.png snailmail.png web.png arrow.png briefcase.png netmeeting.png netfreebusy.png
|
||||
|
||||
EXTRA_DIST = $(images)
|
||||
pkgdata_DATA = $(images)
|
||||
|
||||
CPPFLAGS = \
|
||||
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
||||
CPPFLAGS = \
|
||||
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
||||
-DDATADIR=\""$(datadir)"\"
|
||||
|
||||
INCLUDES = \
|
||||
$(GNOME_INCLUDEDIR) \
|
||||
-I$(top_srcdir)/addressbook/backend/ebook \
|
||||
-DEVOLUTION_IMAGES=\""$(imagesdir)"\"
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/addressbook/ \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-DEVOLUTION_IMAGES=\""$(imagesdir)"\" \
|
||||
-DG_LOG_DOMAIN=\"contact-editor\"
|
||||
|
||||
noinst_LIBRARIES = \
|
||||
libecontacteditor.a
|
||||
@ -21,23 +23,22 @@ libecontacteditor_a_SOURCES = \
|
||||
e-contact-editor.c \
|
||||
e-contact-editor.h
|
||||
|
||||
noinst_PROGRAMS = \
|
||||
noinst_PROGRAMS = \
|
||||
contact-editor-test
|
||||
|
||||
contact_editor_test_SOURCES = \
|
||||
test-editor.c
|
||||
|
||||
contact_editor_test_LDADD = \
|
||||
contact_editor_test_LDADD = \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
libecontacteditor.a \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
libecontacteditor.a \
|
||||
$(EXTRA_GNOME_LIBS)
|
||||
|
||||
gladedir = $(datadir)/evolution/glade
|
||||
|
||||
glade_DATA = \
|
||||
contact-editor.glade
|
||||
|
||||
|
||||
@ -20,8 +20,10 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-contact-editor.h"
|
||||
|
||||
static void e_contact_editor_init (EContactEditor *card);
|
||||
static void e_contact_editor_class_init (EContactEditorClass *klass);
|
||||
static void e_contact_editor_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
#include <gnome.h>
|
||||
#include <glade/glade.h>
|
||||
#include "e-card.h"
|
||||
#include <ebook/e-card.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@ -1,15 +1,16 @@
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir)/addressbook/backend/ebook \
|
||||
INCLUDES = \
|
||||
-DG_LOG_DOMAIN=\"e-minicard\" \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
-I$(top_srcdir)/addressbook/contact-editor \
|
||||
-I$(top_builddir)/addressbook/backend/ebook \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
-I$(top_srcdir)/e-util \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
$(GNOME_INCLUDEDIR)
|
||||
|
||||
noinst_LIBRARIES = \
|
||||
libeminicard.a
|
||||
|
||||
libeminicard_a_SOURCES = \
|
||||
libeminicard_a_SOURCES = \
|
||||
e-minicard.c \
|
||||
e-minicard.h \
|
||||
e-minicard-label.c \
|
||||
@ -21,61 +22,61 @@ libeminicard_a_SOURCES = \
|
||||
e-reflow.c \
|
||||
e-reflow.h
|
||||
|
||||
noinst_PROGRAMS = \
|
||||
minicard-label-test \
|
||||
minicard-test \
|
||||
reflow-test \
|
||||
noinst_PROGRAMS = \
|
||||
minicard-label-test \
|
||||
minicard-test \
|
||||
reflow-test \
|
||||
minicard-view-test
|
||||
|
||||
minicard_label_test_SOURCES = \
|
||||
test-minicard-label.c
|
||||
|
||||
minicard_label_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
minicard_label_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
minicard_test_SOURCES = \
|
||||
test-minicard.c
|
||||
|
||||
minicard_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
minicard_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(top_builddir)/addressbook/contact-editor/libecontacteditor.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
reflow_test_SOURCES = \
|
||||
test-reflow.c
|
||||
|
||||
reflow_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
reflow_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(top_builddir)/addressbook/contact-editor/libecontacteditor.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
minicard_view_test_SOURCES = \
|
||||
test-minicard-view.c
|
||||
|
||||
minicard_view_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
minicard_view_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(top_builddir)/addressbook/contact-editor/libecontacteditor.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
@ -20,12 +20,14 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-minicard-label.h"
|
||||
#include "e-text.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
|
||||
static void e_minicard_label_init (EMinicardLabel *card);
|
||||
static void e_minicard_label_class_init (EMinicardLabelClass *klass);
|
||||
static void e_minicard_label_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include "e-minicard-view.h"
|
||||
#include "e-minicard.h"
|
||||
static void e_minicard_view_init (EMinicardView *reflow);
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-reflow-sorted.h"
|
||||
#include "e-book.h"
|
||||
#include <ebook/e-book.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@ -20,16 +20,18 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-minicard.h"
|
||||
#include "e-minicard-label.h"
|
||||
#include "e-text.h"
|
||||
#include "e-book.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include <ebook/e-book.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
#include "e-contact-editor.h"
|
||||
#include "e-minicard-view.h"
|
||||
|
||||
static void e_minicard_init (EMinicard *card);
|
||||
static void e_minicard_class_init (EMinicardClass *klass);
|
||||
static void e_minicard_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
#define __E_MINICARD_H__
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-card.h"
|
||||
#include <ebook/e-card.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@ -20,13 +20,14 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <gnome.h>
|
||||
#include <config.h>
|
||||
#include <math.h>
|
||||
#include <gnome.h>
|
||||
#include "e-reflow-sorted.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include <glib.h>
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
|
||||
static void e_reflow_sorted_init (EReflowSorted *card);
|
||||
static void e_reflow_sorted_class_init (EReflowSortedClass *klass);
|
||||
static void e_reflow_sorted_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -20,12 +20,14 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include <math.h>
|
||||
#include "e-reflow.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
|
||||
static void e_reflow_init (EReflow *reflow);
|
||||
static void e_reflow_class_init (EReflowClass *klass);
|
||||
static void e_reflow_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-minicard-label.h"
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
|
||||
/* This is a horrible thing to do, but it is just a test. */
|
||||
GnomeCanvasItem *label;
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
#include <gnome.h>
|
||||
#include <libgnorba/gnorba.h>
|
||||
#include <bonobo.h>
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include "e-minicard-view.h"
|
||||
|
||||
/* This is a horrible thing to do, but it is just a test. */
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
#include "config.h"
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include "e-reflow.h"
|
||||
#include "e-minicard.h"
|
||||
|
||||
|
||||
@ -1,15 +1,16 @@
|
||||
INCLUDES = \
|
||||
-I$(top_srcdir)/addressbook/backend/ebook \
|
||||
INCLUDES = \
|
||||
-DG_LOG_DOMAIN=\"e-minicard\" \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
-I$(top_srcdir)/addressbook/contact-editor \
|
||||
-I$(top_builddir)/addressbook/backend/ebook \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
-I$(top_srcdir)/e-util \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
$(GNOME_INCLUDEDIR)
|
||||
|
||||
noinst_LIBRARIES = \
|
||||
libeminicard.a
|
||||
|
||||
libeminicard_a_SOURCES = \
|
||||
libeminicard_a_SOURCES = \
|
||||
e-minicard.c \
|
||||
e-minicard.h \
|
||||
e-minicard-label.c \
|
||||
@ -21,61 +22,61 @@ libeminicard_a_SOURCES = \
|
||||
e-reflow.c \
|
||||
e-reflow.h
|
||||
|
||||
noinst_PROGRAMS = \
|
||||
minicard-label-test \
|
||||
minicard-test \
|
||||
reflow-test \
|
||||
noinst_PROGRAMS = \
|
||||
minicard-label-test \
|
||||
minicard-test \
|
||||
reflow-test \
|
||||
minicard-view-test
|
||||
|
||||
minicard_label_test_SOURCES = \
|
||||
test-minicard-label.c
|
||||
|
||||
minicard_label_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
minicard_label_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
minicard_test_SOURCES = \
|
||||
test-minicard.c
|
||||
|
||||
minicard_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
minicard_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(top_builddir)/addressbook/contact-editor/libecontacteditor.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
reflow_test_SOURCES = \
|
||||
test-reflow.c
|
||||
|
||||
reflow_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
reflow_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(top_builddir)/addressbook/contact-editor/libecontacteditor.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
minicard_view_test_SOURCES = \
|
||||
test-minicard-view.c
|
||||
|
||||
minicard_view_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
minicard_view_test_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(GNOMEGNORBA_LIBS) \
|
||||
libeminicard.a \
|
||||
-lbonobo \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/libversit/libversit.la \
|
||||
$(top_builddir)/addressbook/contact-editor/libecontacteditor.a \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
@ -20,12 +20,14 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-minicard-label.h"
|
||||
#include "e-text.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
|
||||
static void e_minicard_label_init (EMinicardLabel *card);
|
||||
static void e_minicard_label_class_init (EMinicardLabelClass *klass);
|
||||
static void e_minicard_label_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include "e-minicard-view.h"
|
||||
#include "e-minicard.h"
|
||||
static void e_minicard_view_init (EMinicardView *reflow);
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-reflow-sorted.h"
|
||||
#include "e-book.h"
|
||||
#include <ebook/e-book.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@ -20,16 +20,18 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include "e-minicard.h"
|
||||
#include "e-minicard-label.h"
|
||||
#include "e-text.h"
|
||||
#include "e-book.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include <ebook/e-book.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
#include "e-contact-editor.h"
|
||||
#include "e-minicard-view.h"
|
||||
|
||||
static void e_minicard_init (EMinicard *card);
|
||||
static void e_minicard_class_init (EMinicardClass *klass);
|
||||
static void e_minicard_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
#define __E_MINICARD_H__
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-card.h"
|
||||
#include <ebook/e-card.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-minicard-label.h"
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
|
||||
/* This is a horrible thing to do, but it is just a test. */
|
||||
GnomeCanvasItem *label;
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
#include <gnome.h>
|
||||
#include <libgnorba/gnorba.h>
|
||||
#include <bonobo.h>
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include "e-minicard-view.h"
|
||||
|
||||
/* This is a horrible thing to do, but it is just a test. */
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
#include "config.h"
|
||||
|
||||
#include <gnome.h>
|
||||
#include "e-canvas.h"
|
||||
#include <e-util/e-canvas.h>
|
||||
#include "e-reflow.h"
|
||||
#include "e-minicard.h"
|
||||
|
||||
|
||||
376
libical/src/test/Makefile.in
Normal file
376
libical/src/test/Makefile.in
Normal file
@ -0,0 +1,376 @@
|
||||
# Makefile.in generated automatically by automake 1.4 from Makefile.am
|
||||
|
||||
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
SHELL = @SHELL@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
|
||||
bindir = @bindir@
|
||||
sbindir = @sbindir@
|
||||
libexecdir = @libexecdir@
|
||||
datadir = @datadir@
|
||||
sysconfdir = @sysconfdir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
localstatedir = @localstatedir@
|
||||
libdir = @libdir@
|
||||
infodir = @infodir@
|
||||
mandir = @mandir@
|
||||
includedir = @includedir@
|
||||
oldincludedir = /usr/include
|
||||
|
||||
DESTDIR =
|
||||
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
|
||||
top_builddir = ../..
|
||||
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
|
||||
INSTALL = @INSTALL@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
transform = @program_transform_name@
|
||||
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_alias = @host_alias@
|
||||
host_triplet = @host@
|
||||
AR = @AR@
|
||||
AS = @AS@
|
||||
CC = @CC@
|
||||
DLLTOOL = @DLLTOOL@
|
||||
LEX = @LEX@
|
||||
LIBTOOL = @LIBTOOL@
|
||||
LN_S = @LN_S@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
OBJDUMP = @OBJDUMP@
|
||||
PACKAGE = @PACKAGE@
|
||||
RANLIB = @RANLIB@
|
||||
VERSION = @VERSION@
|
||||
YACC = @YACC@
|
||||
|
||||
noinst_PROGRAMS = usecases copycluster regression parser findobj storage
|
||||
|
||||
LDADD = ../libical/libical.la ../libicalss/libicalss.la
|
||||
INCLUDES = -I . -I../libical -I../libicalss
|
||||
|
||||
findobj_SOURCES = findobj.c
|
||||
usecases_SOURCES = usecases.c
|
||||
copycluster_SOURCES = copycluster.c
|
||||
regression_SOURCES = regression.c
|
||||
parser_SOURCES = icaltestparser.c
|
||||
storage_SOURCES = storage.c
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../../config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
PROGRAMS = $(noinst_PROGRAMS)
|
||||
|
||||
|
||||
DEFS = @DEFS@ -I. -I$(srcdir) -I../..
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBS = @LIBS@
|
||||
usecases_OBJECTS = usecases.o
|
||||
usecases_LDADD = $(LDADD)
|
||||
usecases_DEPENDENCIES = ../libical/libical.la ../libicalss/libicalss.la
|
||||
usecases_LDFLAGS =
|
||||
copycluster_OBJECTS = copycluster.o
|
||||
copycluster_LDADD = $(LDADD)
|
||||
copycluster_DEPENDENCIES = ../libical/libical.la \
|
||||
../libicalss/libicalss.la
|
||||
copycluster_LDFLAGS =
|
||||
regression_OBJECTS = regression.o
|
||||
regression_LDADD = $(LDADD)
|
||||
regression_DEPENDENCIES = ../libical/libical.la \
|
||||
../libicalss/libicalss.la
|
||||
regression_LDFLAGS =
|
||||
parser_OBJECTS = icaltestparser.o
|
||||
parser_LDADD = $(LDADD)
|
||||
parser_DEPENDENCIES = ../libical/libical.la ../libicalss/libicalss.la
|
||||
parser_LDFLAGS =
|
||||
findobj_OBJECTS = findobj.o
|
||||
findobj_LDADD = $(LDADD)
|
||||
findobj_DEPENDENCIES = ../libical/libical.la ../libicalss/libicalss.la
|
||||
findobj_LDFLAGS =
|
||||
storage_OBJECTS = storage.o
|
||||
storage_LDADD = $(LDADD)
|
||||
storage_DEPENDENCIES = ../libical/libical.la ../libicalss/libicalss.la
|
||||
storage_LDFLAGS =
|
||||
CFLAGS = @CFLAGS@
|
||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
||||
DIST_COMMON = Makefile.am Makefile.in
|
||||
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
TAR = gtar
|
||||
GZIP_ENV = --best
|
||||
DEP_FILES = .deps/copycluster.P .deps/findobj.P .deps/icaltestparser.P \
|
||||
.deps/regression.P .deps/storage.P .deps/usecases.P
|
||||
SOURCES = $(usecases_SOURCES) $(copycluster_SOURCES) $(regression_SOURCES) $(parser_SOURCES) $(findobj_SOURCES) $(storage_SOURCES)
|
||||
OBJECTS = $(usecases_OBJECTS) $(copycluster_OBJECTS) $(regression_OBJECTS) $(parser_OBJECTS) $(findobj_OBJECTS) $(storage_OBJECTS)
|
||||
|
||||
all: all-redirect
|
||||
.SUFFIXES:
|
||||
.SUFFIXES: .S .c .lo .o .s
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu src/test/Makefile
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||
cd $(top_builddir) \
|
||||
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||
|
||||
|
||||
mostlyclean-noinstPROGRAMS:
|
||||
|
||||
clean-noinstPROGRAMS:
|
||||
-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
|
||||
|
||||
distclean-noinstPROGRAMS:
|
||||
|
||||
maintainer-clean-noinstPROGRAMS:
|
||||
|
||||
.s.o:
|
||||
$(COMPILE) -c $<
|
||||
|
||||
.S.o:
|
||||
$(COMPILE) -c $<
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.o core *.core
|
||||
|
||||
clean-compile:
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
|
||||
maintainer-clean-compile:
|
||||
|
||||
.s.lo:
|
||||
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
|
||||
|
||||
.S.lo:
|
||||
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
|
||||
maintainer-clean-libtool:
|
||||
|
||||
usecases: $(usecases_OBJECTS) $(usecases_DEPENDENCIES)
|
||||
@rm -f usecases
|
||||
$(LINK) $(usecases_LDFLAGS) $(usecases_OBJECTS) $(usecases_LDADD) $(LIBS)
|
||||
|
||||
copycluster: $(copycluster_OBJECTS) $(copycluster_DEPENDENCIES)
|
||||
@rm -f copycluster
|
||||
$(LINK) $(copycluster_LDFLAGS) $(copycluster_OBJECTS) $(copycluster_LDADD) $(LIBS)
|
||||
|
||||
regression: $(regression_OBJECTS) $(regression_DEPENDENCIES)
|
||||
@rm -f regression
|
||||
$(LINK) $(regression_LDFLAGS) $(regression_OBJECTS) $(regression_LDADD) $(LIBS)
|
||||
|
||||
parser: $(parser_OBJECTS) $(parser_DEPENDENCIES)
|
||||
@rm -f parser
|
||||
$(LINK) $(parser_LDFLAGS) $(parser_OBJECTS) $(parser_LDADD) $(LIBS)
|
||||
|
||||
findobj: $(findobj_OBJECTS) $(findobj_DEPENDENCIES)
|
||||
@rm -f findobj
|
||||
$(LINK) $(findobj_LDFLAGS) $(findobj_OBJECTS) $(findobj_LDADD) $(LIBS)
|
||||
|
||||
storage: $(storage_OBJECTS) $(storage_DEPENDENCIES)
|
||||
@rm -f storage
|
||||
$(LINK) $(storage_LDFLAGS) $(storage_OBJECTS) $(storage_LDADD) $(LIBS)
|
||||
|
||||
tags: TAGS
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP)
|
||||
list='$(SOURCES) $(HEADERS)'; \
|
||||
unique=`for i in $$list; do echo $$i; done | \
|
||||
awk ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
here=`pwd` && cd $(srcdir) \
|
||||
&& mkid -f$$here/ID $$unique $(LISP)
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS)'; \
|
||||
unique=`for i in $$list; do echo $$i; done | \
|
||||
awk ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
|
||||
|| (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
|
||||
|
||||
mostlyclean-tags:
|
||||
|
||||
clean-tags:
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID
|
||||
|
||||
maintainer-clean-tags:
|
||||
|
||||
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
||||
|
||||
subdir = src/test
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
here=`cd $(top_builddir) && pwd`; \
|
||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||
distdir=`cd $(distdir) && pwd`; \
|
||||
cd $(top_srcdir) \
|
||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu src/test/Makefile
|
||||
@for file in $(DISTFILES); do \
|
||||
d=$(srcdir); \
|
||||
if test -d $$d/$$file; then \
|
||||
cp -pr $$d/$$file $(distdir)/$$file; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file || :; \
|
||||
fi; \
|
||||
done
|
||||
|
||||
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||
|
||||
-include $(DEP_FILES)
|
||||
|
||||
mostlyclean-depend:
|
||||
|
||||
clean-depend:
|
||||
|
||||
distclean-depend:
|
||||
-rm -rf .deps
|
||||
|
||||
maintainer-clean-depend:
|
||||
|
||||
%.o: %.c
|
||||
@echo '$(COMPILE) -c $<'; \
|
||||
$(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
|
||||
@-cp .deps/$(*F).pp .deps/$(*F).P; \
|
||||
tr ' ' '\012' < .deps/$(*F).pp \
|
||||
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
||||
>> .deps/$(*F).P; \
|
||||
rm .deps/$(*F).pp
|
||||
|
||||
%.lo: %.c
|
||||
@echo '$(LTCOMPILE) -c $<'; \
|
||||
$(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
|
||||
@-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
|
||||
< .deps/$(*F).pp > .deps/$(*F).P; \
|
||||
tr ' ' '\012' < .deps/$(*F).pp \
|
||||
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
|
||||
>> .deps/$(*F).P; \
|
||||
rm -f .deps/$(*F).pp
|
||||
info-am:
|
||||
info: info-am
|
||||
dvi-am:
|
||||
dvi: dvi-am
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
installcheck-am:
|
||||
installcheck: installcheck-am
|
||||
install-exec-am:
|
||||
install-exec: install-exec-am
|
||||
|
||||
install-data-am:
|
||||
install-data: install-data-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
install: install-am
|
||||
uninstall-am:
|
||||
uninstall: uninstall-am
|
||||
all-am: Makefile $(PROGRAMS)
|
||||
all-redirect: all-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
|
||||
installdirs:
|
||||
|
||||
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f Makefile $(CONFIG_CLEAN_FILES)
|
||||
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
|
||||
|
||||
maintainer-clean-generic:
|
||||
mostlyclean-am: mostlyclean-noinstPROGRAMS mostlyclean-compile \
|
||||
mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
|
||||
mostlyclean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
clean-am: clean-noinstPROGRAMS clean-compile clean-libtool clean-tags \
|
||||
clean-depend clean-generic mostlyclean-am
|
||||
|
||||
clean: clean-am
|
||||
|
||||
distclean-am: distclean-noinstPROGRAMS distclean-compile \
|
||||
distclean-libtool distclean-tags distclean-depend \
|
||||
distclean-generic clean-am
|
||||
-rm -f libtool
|
||||
|
||||
distclean: distclean-am
|
||||
|
||||
maintainer-clean-am: maintainer-clean-noinstPROGRAMS \
|
||||
maintainer-clean-compile maintainer-clean-libtool \
|
||||
maintainer-clean-tags maintainer-clean-depend \
|
||||
maintainer-clean-generic distclean-am
|
||||
@echo "This command is intended for maintainers to use;"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
|
||||
.PHONY: mostlyclean-noinstPROGRAMS distclean-noinstPROGRAMS \
|
||||
clean-noinstPROGRAMS maintainer-clean-noinstPROGRAMS \
|
||||
mostlyclean-compile distclean-compile clean-compile \
|
||||
maintainer-clean-compile mostlyclean-libtool distclean-libtool \
|
||||
clean-libtool maintainer-clean-libtool tags mostlyclean-tags \
|
||||
distclean-tags clean-tags maintainer-clean-tags distdir \
|
||||
mostlyclean-depend distclean-depend clean-depend \
|
||||
maintainer-clean-depend info-am info dvi-am dvi check check-am \
|
||||
installcheck-am installcheck install-exec-am install-exec \
|
||||
install-data-am install-data install-am install uninstall-am uninstall \
|
||||
all-redirect all-am all installdirs mostlyclean-generic \
|
||||
distclean-generic clean-generic maintainer-clean-generic clean \
|
||||
mostlyclean distclean maintainer-clean
|
||||
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
@ -20,13 +20,14 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <gnome.h>
|
||||
#include <config.h>
|
||||
#include <math.h>
|
||||
#include <gnome.h>
|
||||
#include "e-reflow-sorted.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include <glib.h>
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
|
||||
static void e_reflow_sorted_init (EReflowSorted *card);
|
||||
static void e_reflow_sorted_class_init (EReflowSortedClass *klass);
|
||||
static void e_reflow_sorted_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -20,12 +20,14 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include <math.h>
|
||||
#include "e-reflow.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
|
||||
static void e_reflow_init (EReflow *reflow);
|
||||
static void e_reflow_class_init (EReflowClass *klass);
|
||||
static void e_reflow_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -20,12 +20,14 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <gnome.h>
|
||||
#include <math.h>
|
||||
#include "e-reflow.h"
|
||||
#include "e-canvas-utils.h"
|
||||
#include "e-canvas.h"
|
||||
#include "e-util.h"
|
||||
#include <e-util/e-canvas-utils.h>
|
||||
#include <e-util/e-canvas.h>
|
||||
#include <e-util/e-util.h>
|
||||
|
||||
static void e_reflow_init (EReflow *reflow);
|
||||
static void e_reflow_class_init (EReflowClass *klass);
|
||||
static void e_reflow_set_arg (GtkObject *o, GtkArg *arg, guint arg_id);
|
||||
|
||||
@ -4,8 +4,8 @@ INCLUDES = \
|
||||
-DG_LOG_DOMAIN=\"wombat\" \
|
||||
-I$(top_srcdir)/e-util \
|
||||
-I$(top_srcdir) \
|
||||
-I$(top_srcdir)/addressbook/backend/pas \
|
||||
-I$(top_builddir)/addressbook/backend/pas \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
-I$(top_srcdir)/calendar \
|
||||
-DEVOLUTION_VERSION=\""$(VERSION)"\" \
|
||||
-DEVOLUTION_LOCALEDIR=\""$(datadir)/locale"\"
|
||||
@ -19,7 +19,7 @@ wombat_SOURCES = \
|
||||
wombat_LDADD = \
|
||||
$(EXTRA_GNOME_LIBS) \
|
||||
$(BONOBO_VFS_GNOME_LIBS) \
|
||||
$(top_builddir)/addressbook/backend/pas/libpas.la \
|
||||
$(top_builddir)/addressbook/backend/pas/libpas.a \
|
||||
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
||||
$(top_builddir)/calendar/pcs/libpcs.a \
|
||||
$(top_builddir)/libical/src/libical/libical.la \
|
||||
|
||||
@ -7,10 +7,10 @@
|
||||
|
||||
#include <config.h>
|
||||
#include <bonobo.h>
|
||||
#include <pas-book-factory.h>
|
||||
#include <pas-backend-file.h>
|
||||
#include <pas/pas-book-factory.h>
|
||||
#include <pas/pas-backend-file.h>
|
||||
#ifdef HAVE_LDAP
|
||||
#include <pas-backend-ldap.h>
|
||||
#include <pas/pas-backend-ldap.h>
|
||||
#endif
|
||||
#include <libgnomevfs/gnome-vfs-init.h>
|
||||
#include <libgnorba/gnorba.h>
|
||||
|
||||
Reference in New Issue
Block a user