diff options
author | Alexander Larsson <alexl@redhat.com> | 2012-03-16 10:32:06 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2012-03-16 10:34:11 +0100 |
commit | aae60af8a3376d57bd9faf68239a22e9c960fa04 (patch) | |
tree | b261dfbc630549975670e97469975dab287fc6fa /modules/input/Makefile.am | |
parent | 3c95981478f83113259b5e5e841654bf9a8e9ab6 (diff) | |
download | gtk+-aae60af8a3376d57bd9faf68239a22e9c960fa04.tar.gz |
Unbreak win32 build
Commit de62a1096 broke win32 as it removed the HAVE_X11R6 checks for
building xim, but did not replace them with USE_X11. This made
it try to build xim on non-X targets.
Diffstat (limited to 'modules/input/Makefile.am')
-rw-r--r-- | modules/input/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/input/Makefile.am b/modules/input/Makefile.am index da989eb4ba..46e00fb43e 100644 --- a/modules/input/Makefile.am +++ b/modules/input/Makefile.am @@ -30,11 +30,13 @@ im_xim_la_SOURCES = \ imxim.c libstatic_im_xim_la_SOURCES = $(im_xim_la_SOURCES) im_xim_la_LIBADD = $(LDADDS) +if USE_X11 if INCLUDE_IM_XIM STATIC_XIM_MODULE = libstatic-im-xim.la else XIM_MODULE=im-xim.la endif +endif im_am_et_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module $(no_undefined) im_am_et_la_SOURCES = imam-et.c |