aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Sakai <sakai@tom.sfc.keio.ac.jp>2003-05-04 01:05:29 +0800
committerMasahiro Sakai <msakai@src.gnome.org>2003-05-04 01:05:29 +0800
commit5e5ab23a8ca89a90621ac06766a610eefb669d62 (patch)
tree63c865d63f414a1572fa137f5c59d8fa5739562c
parent19f2626e65d1700ff9c631a70ecb917f98dfcb38 (diff)
downloadgsoc2013-evolution-5e5ab23a8ca89a90621ac06766a610eefb669d62.tar
gsoc2013-evolution-5e5ab23a8ca89a90621ac06766a610eefb669d62.tar.gz
gsoc2013-evolution-5e5ab23a8ca89a90621ac06766a610eefb669d62.tar.bz2
gsoc2013-evolution-5e5ab23a8ca89a90621ac06766a610eefb669d62.tar.lz
gsoc2013-evolution-5e5ab23a8ca89a90621ac06766a610eefb669d62.tar.xz
gsoc2013-evolution-5e5ab23a8ca89a90621ac06766a610eefb669d62.tar.zst
gsoc2013-evolution-5e5ab23a8ca89a90621ac06766a610eefb669d62.zip
call AC_LIBTOOL_WIN32_DLL which is necessary for building shared library
2003-05-03 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp> * 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
-rw-r--r--a11y/e-table/gal-a11y-e-cell-text.c4
1 files changed, 4 insertions, 0 deletions
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,