2005-01-24 Vivek Jain <jvivek@novell.com> *properties.glade : changed the layout of the widgets *share-folder.[ch]: removed the checkbuttons for display of rights : removed new_list, update_list and remove_list added users_list *share-folder.c : removed function (update_list_update) (share_folder_construct) : added gtk_cell_renderer_toggle for displaying rights added one structure SharedUsers to have a single list instead of three different lists. Made corresponding changes in all functions. *share-folder-common.c : (new_folder_response): use gtk_widget_reparent to pack the widget added two files *org-gnome-shared-folder-errors.xml *org-gnome-shared-folder-errors.xml.h : to display error message *Makefile.am : included error data svn path=/trunk/; revision=28529
33 lines
902 B
Makefile
33 lines
902 B
Makefile
INCLUDES = \
|
|
-I$(top_srcdir)\
|
|
-I$(top_srcdir)/camel \
|
|
$(EVOLUTION_MAIL_CFLAGS)\
|
|
$(CAMEL_GROUPWISE_CFLAGS)\
|
|
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\"
|
|
|
|
@EVO_PLUGIN_RULE@
|
|
|
|
plugin_DATA = org-gnome-shared-folder.eplug
|
|
plugin_LTLIBRARIES = liborg-gnome-shared-folder.la
|
|
|
|
liborg_gnome_shared_folder_la_SOURCES = share-folder-common.c share-folder.c install-shared.c share-folder.h
|
|
liborg_gnome_shared_folder_la_LIBADD= $(CAMEL_GROUPWISE_LIBS)
|
|
|
|
|
|
liborg_gnome_shared_folder_la_LDFLAGS = -module -avoid-version
|
|
|
|
glade_DATA =properties.glade
|
|
|
|
error_DATA = org-gnome-shared-folder-errors.xml
|
|
error_i18n = $(error_DATA:.xml=.xml.h)
|
|
errordir = $(privdatadir)/errors
|
|
%.xml.h: %.xml
|
|
$(top_builddir)/e-util/e-error-tool $^
|
|
|
|
BUILT_SOURCES = $(error_i18n)
|
|
EXTRA_DIST = \
|
|
$(error_DATA) \
|
|
$(error_i18n) \
|
|
$(glade_DATA) \
|
|
org-gnome-shared-folder.eplug.in
|