diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-11-12 03:40:47 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-11-12 03:40:47 +0000 |
commit | b9d32873133cb60502b95868b8ee308d7ad20acd (patch) | |
tree | 2b7e414fd708a8323c0ce96916e1bc7dd4f4fb55 /modules/input/Makefile.am | |
parent | 65ba8a26e4bc2cf9f3bc0a634d77d76a1596d865 (diff) | |
download | gdk-pixbuf-b9d32873133cb60502b95868b8ee308d7ad20acd.tar.gz |
Rip out support for multiple locales; that simple doesn't work reliably
Tue Sep 19 10:54:22 2000 Owen Taylor <otaylor@redhat.com>
* modules/input/{gtkimcontextxim.[ch],imxim.c}: Rip
out support for multiple locales; that simple doesn't
work reliably with current Xlib
* gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c:
Add support for positioning the cursor within the preedit string.
Mon Sep 18 23:56:32 2000 Owen Taylor <otaylor@redhat.com>
* modules/input/{imxim.c,gtkimcontextxim.[ch]}: Start
at XIM input method module.
Sun Sep 17 10:08:16 2000 Owen Taylor <otaylor@redhat.com>
* modules/input/Makefile.am (moduledir): remove
leftover bin program target.
Sat Sep 16 13:05:48 2000 Owen Taylor <otaylor@redhat.com>
* modules/input/imcyrillic-translit.c: A sample input
method (based on GtkIMContextSimple with an extra table),
which demonstrates preedit strings and the module
system for input modules
Diffstat (limited to 'modules/input/Makefile.am')
-rw-r--r-- | modules/input/Makefile.am | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/modules/input/Makefile.am b/modules/input/Makefile.am new file mode 100644 index 000000000..d3809cdbf --- /dev/null +++ b/modules/input/Makefile.am @@ -0,0 +1,42 @@ +## Makefile.am for gtk+/demos + +INCLUDES = @STRIP_BEGIN@ \ + -I$(top_srcdir) \ + -I$(top_builddir)/gdk \ + -DGTK_DISABLE_COMPAT_H \ + -DGTK_LOCALEDIR=\"$(gtklocaledir)\" \ + @GTK_DEBUG_FLAGS@ \ + @GTK_XIM_FLAGS@ \ + @GTK_LOCALE_FLAGS@ \ + @PANGO_CFLAGS@ \ + @GLIB_CFLAGS@ \ + @more_cflags@ \ +@STRIP_END@ + +DEPS = \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-1.3.la \ + $(top_builddir)/gdk/@gdktargetlib@ \ + $(top_builddir)/gtk/@gtktargetlib@ + +LDADDS = @STRIP_BEGIN@ \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-1.3.la \ + $(top_builddir)/gdk/@gdktargetlib@ \ + $(top_builddir)/gtk/@gtktargetlib@ \ + @more_ldflags@ \ + @more_libs@ \ + @GDK_WLIBS@ \ + @PANGO_LIBS@ \ + @GLIB_LIBS@ \ + @GTK_LIBS_EXTRA@ \ + -lm \ +@STRIP_END@ + +moduledir = $(libdir)/gtk+/gtk-2.0/$(GTK_VERSION)/immodules +module_LTLIBRARIES = im-cyrillic-translit.la im-xim.la + +im_cyrillic_translit_la_LDFLAGS = -rpath $(libdir) -export-dynamic -avoid-version -module +im_cyrillic_translit_la_SOURCES = imcyrillic-translit.c + +im_xim_la_LDFLAGS = -rpath $(libdir) -export-dynamic -avoid-version -module +im_xim_la_SOURCES = gtkimcontextxim.c imxim.c + |