From 5e5ab23a8ca89a90621ac06766a610eefb669d62 Mon Sep 17 00:00:00 2001 From: Masahiro Sakai Date: Sat, 3 May 2003 17:05:29 +0000 Subject: call AC_LIBTOOL_WIN32_DLL which is necessary for building shared library 2003-05-03 Masahiro Sakai * configure.in: call AC_LIBTOOL_WIN32_DLL which is necessary for building shared library on win32 platform. * gal/Makefile.am (libgal_2_0_la_LDFLAGS): * gal/a11y/Makefile.am (libgal_a11y_2_0_la_LDFLAGS): add -no-undefined which is necessary for building shared library on some platforms (e.g. Win32, BeOS). * gal/a11y/e-table/gal-a11y-e-cell-text.c: don't call undefined functions e_cell_text_get_selection() and e_cell_text_set_selection(). * gal/a11y/Makefile.am (libgal_a11y_2_0_la_LIBADD): add $(top_builddir)/gal/libgal-2.0.la and $(EXTRA_GNOME_LIBS). * gal/Makefile.am: (libgal_2_0_la_LIBADD): add $(EXTRA_GNOME_LIBS). (ui_subdirs): add "." ahead of "a11y". because above change make a11y/libgal-a11y-2.0.la to depend on libgal-2.0.la. * gal/widgets/Makefile.am (test_color_LDADD, test_e_font_LDADD, test_font_loading_LDADD): fix ordering. $(EXTRA_GNOME_LIBS) should be behind other libraries that depend on it. svn path=/trunk/; revision=21097 --- a11y/e-table/gal-a11y-e-cell-text.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'a11y/e-table/gal-a11y-e-cell-text.c') diff --git a/a11y/e-table/gal-a11y-e-cell-text.c b/a11y/e-table/gal-a11y-e-cell-text.c index 43dcc9f7a0..c5a94144a8 100644 --- a/a11y/e-table/gal-a11y-e-cell-text.c +++ b/a11y/e-table/gal-a11y-e-cell-text.c @@ -18,6 +18,10 @@ static AtkObjectClass *parent_class; #define PARENT_TYPE (gal_a11y_e_cell_get_type ()) +/* XXX: these functions are undefined */ +#define e_cell_text_get_selection(a,b,c,d,e) NULL +#define e_cell_text_set_selection(a,b,c,d,e) FALSE + /* Static functions */ static gchar * ect_get_text (AtkText *text, -- cgit v1.2.3