2004-05-28 Not Zed <NotZed@Ximian.com> ** See bugs #52061 & #52669. * gui/smime-ui.glade: added cert-trust-dialog and tweaked the ca-trust-dialog. * gui/ca-trust-dialog.c (ca_trust_dialog_show): Fix the %s in the label. Slack. (ca_trust_dialog_show): slight rearrangement. * gui/certificate-manager.c (add_contact_cert): fill out fields. * lib/e-cert.c (e_cert_get_usage): helper to get the usage of a cert. * gui/certificate-manager.c (edit_ca): use the right certdb, not the e-one. (add_user_cert): fill out missing columns. * lib/e-cert.c (e_cert_get_ca_cert): new method to find the ca cert of a cert. * gui/cert-trust-dialog.[ch]: peer cert trust editor. * gui/certificate-manager.c (edit_contact): implement. svn path=/trunk/; revision=26119
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"evolution-smime\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)/smime/lib \
|
|
-I$(top_builddir)/smime/lib \
|
|
-I$(top_srcdir)/shell \
|
|
-I$(top_builddir)/shell \
|
|
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
|
|
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
|
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \
|
|
-DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \
|
|
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
|
|
-DEVOLUTION_UIDIR=\""$(evolutionuidir)"\" \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
$(EVOLUTION_ADDRESSBOOK_CFLAGS) \
|
|
$(CERT_UI_CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libevolution-smime.la
|
|
|
|
libevolution_smime_la_SOURCES = \
|
|
ca-trust-dialog.c \
|
|
ca-trust-dialog.h \
|
|
cert-trust-dialog.c \
|
|
cert-trust-dialog.h \
|
|
certificate-manager.c \
|
|
certificate-manager.h \
|
|
certificate-viewer.c \
|
|
certificate-viewer.h \
|
|
e-cert-selector.c \
|
|
e-cert-selector.h \
|
|
component.c \
|
|
component.h
|
|
|
|
|
|
libevolution_smime_la_LIBADD = \
|
|
$(top_builddir)/smime/lib/libessmime.la \
|
|
$(CERT_UI_LIBS)
|
|
|
|
|
|
glade_DATA = smime-ui.glade
|
|
|
|
EXTRA_DIST = \
|
|
$(glade_DATA)
|