*Sigh.*
Fix the massive, extreme breakage introduced by shuffling around a few addressbook-related files without updating the Makefiles. I hope at least it builds now. *Sigh.* svn path=/trunk/; revision=5473
This commit is contained in:
@ -1,3 +1,25 @@
|
||||
2000-09-16 Ettore Perazzoli <ettore@helixcode.com>
|
||||
|
||||
* gui/widgets/Makefile.am (gladedir): Define.
|
||||
(glade_DATA): Install `alphabet.glade'.
|
||||
(EXTRA_DIST): Define.
|
||||
|
||||
* gui/component/Makefile.am (glade_DATA): Remove `alphabet.glade'.
|
||||
(EXTRA_DIST): Remove `alphabet.glade.h'.
|
||||
|
||||
* gui/widgets/Makefile.am (libeminicard_a_SOURCES): Add
|
||||
`e-addressbook-model.c' and `e-addressbook-model.h'. I hope this
|
||||
is what Chris meant to do.
|
||||
|
||||
* gui/component/Makefile.am (INCLUDES): Add
|
||||
`-I$(top_srcdir)/addressbook/gui/widgets'.
|
||||
(evolution_addressbook_SOURCES): Remove `e-addressbook-model.c'
|
||||
and `e-addressbook-model.h'.
|
||||
|
||||
* gui/component/select-names/e-select-names.c: #include
|
||||
"e-addressbook-model.h" from "addressbook/gui/widgets" instead of
|
||||
"addressbook/gui/component", as it has been moved there.
|
||||
|
||||
2000-09-15 Chris Toshok <toshok@helixcode.com>
|
||||
|
||||
* backend/pas/pas-backend-ldap.c: split all the ldap operations
|
||||
|
||||
@ -15,6 +15,7 @@ INCLUDES = \
|
||||
-I$(top_srcdir)/widgets/e-table \
|
||||
-I$(top_srcdir)/widgets/misc \
|
||||
-I$(top_srcdir)/addressbook/gui/minicard \
|
||||
-I$(top_srcdir)/addressbook/gui/widgets \
|
||||
-I$(top_srcdir)/addressbook/contact-editor \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
@ -34,8 +35,6 @@ evolution_addressbook_SOURCES = \
|
||||
addressbook-factory.c \
|
||||
addressbook.c \
|
||||
addressbook.h \
|
||||
e-addressbook-model.c \
|
||||
e-addressbook-model.h \
|
||||
e-cardlist-model.c \
|
||||
e-cardlist-model.h \
|
||||
e-ldap-server-dialog.c \
|
||||
@ -68,12 +67,11 @@ oafdir = $(datadir)/oaf
|
||||
oaf_DATA = addressbook.oafinfo
|
||||
|
||||
gladedir = $(datadir)/evolution/glade
|
||||
glade_DATA = ldap-server-dialog.glade ldap-server-dialog.glade.h alphabet.glade
|
||||
glade_DATA = ldap-server-dialog.glade ldap-server-dialog.glade.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(glade_DATA) \
|
||||
$(oaf_DATA) \
|
||||
alphabet.glade.h
|
||||
$(oaf_DATA)
|
||||
|
||||
if ENABLE_PURIFY
|
||||
PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
||||
|
||||
@ -31,6 +31,7 @@
|
||||
#include <e-addressbook-model.h>
|
||||
#include <select-names/e-select-names.h>
|
||||
#include <select-names/e-select-names-manager.h>
|
||||
|
||||
#include "e-contact-editor.h"
|
||||
#include "e-contact-save-as.h"
|
||||
#include "e-ldap-server-dialog.h"
|
||||
|
||||
@ -34,6 +34,7 @@ INCLUDES = \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
-I$(top_srcdir)/widgets/e-table \
|
||||
-I$(top_srcdir)/addressbook/gui/minicard \
|
||||
-I$(top_srcdir)/addressbook/gui/widgets \
|
||||
-I$(top_srcdir)/addressbook/contact-editor \
|
||||
-I$(top_srcdir)/addressbook/backend \
|
||||
-I$(top_builddir)/addressbook/backend \
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
#include "e-select-names.h"
|
||||
#include <e-table-simple.h>
|
||||
#include <e-cell-text.h>
|
||||
#include <addressbook/gui/component/e-addressbook-model.h>
|
||||
#include <addressbook/gui/widgets/e-addressbook-model.h>
|
||||
#include <addressbook/gui/component/e-cardlist-model.h>
|
||||
#include <addressbook/backend/ebook/e-book.h>
|
||||
#include "e-select-names-table-model.h"
|
||||
|
||||
@ -6,6 +6,7 @@ INCLUDES = \
|
||||
-I$(top_srcdir)/addressbook/contact-editor \
|
||||
-I$(top_srcdir)/widgets/e-text \
|
||||
-I$(top_srcdir)/widgets/e-reflow \
|
||||
-I$(top_srcdir)/widgets/e-table \
|
||||
-I$(top_srcdir)/widgets/misc \
|
||||
$(BONOBO_GNOME_CFLAGS)
|
||||
|
||||
@ -13,6 +14,8 @@ noinst_LIBRARIES = \
|
||||
libeminicard.a
|
||||
|
||||
libeminicard_a_SOURCES = \
|
||||
e-addressbook-model.c \
|
||||
e-addressbook-model.h \
|
||||
e-minicard-control.c \
|
||||
e-minicard-control.h \
|
||||
e-minicard-label.c \
|
||||
@ -120,3 +123,10 @@ minicard_widget_test_LDADD = \
|
||||
$(top_builddir)/widgets/e-reflow/libereflow.a \
|
||||
$(top_builddir)/e-util/libeutil.la \
|
||||
$(top_builddir)/widgets/e-text/libetext.a
|
||||
|
||||
gladedir = $(datadir)/evolution/glade
|
||||
glade_DATA = alphabet.glade
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(glade_DATA) \
|
||||
alphabet.glade.h
|
||||
|
||||
@ -1,3 +1,8 @@
|
||||
2000-09-16 Ettore Perazzoli <ettore@helixcode.com>
|
||||
|
||||
* POTFILES.in: `alphabet.glade.h' is now in
|
||||
`addressbook/gui/widgets'.
|
||||
|
||||
2000-09-14 Michael Meeks <michael@helixcode.com>
|
||||
|
||||
* POTFILES.in: s/minicard/widgets/
|
||||
|
||||
@ -11,13 +11,13 @@ addressbook/contact-editor/e-contact-editor-strings.h
|
||||
addressbook/contact-editor/fullname-strings.h
|
||||
addressbook/gui/component/addressbook-factory.c
|
||||
addressbook/gui/component/addressbook.c
|
||||
addressbook/gui/component/alphabet.glade.h
|
||||
addressbook/gui/component/e-ldap-storage.c
|
||||
addressbook/gui/component/ldap-server-dialog.glade.h
|
||||
addressbook/gui/component/select-names/select-names.glade.h
|
||||
addressbook/gui/widgets/e-minicard-control.c
|
||||
addressbook/gui/widgets/e-minicard-view.c
|
||||
addressbook/gui/widgets/e-minicard.c
|
||||
addressbook/gui/widgets/alphabet.glade.h
|
||||
addressbook/gui/search/e-addressbook-search-dialog.c
|
||||
addressbook/printing/e-contact-print.glade.h
|
||||
calendar/cal-util/timeutil.c
|
||||
|
||||
Reference in New Issue
Block a user