forked from phuang/ibus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
305 lines (269 loc) · 7.99 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# vim:set et ts=4:
#
# ibus - The Input Bus
#
# Copyright (c) 2007-2010 Peng Huang <[email protected]>
# Copyright (c) 2007-2010 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA 02111-1307 USA
# if not 1, append datestamp to the version number.
m4_define([ibus_released], [1])
m4_define([ibus_major_version], [1])
m4_define([ibus_minor_version], [3])
m4_define([ibus_micro_version], [3])
m4_define(ibus_maybe_datestamp,
m4_esyscmd([if test x]ibus_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))
m4_define([ibus_version],
ibus_major_version.ibus_minor_version.ibus_micro_version[]ibus_maybe_datestamp)
AC_INIT([ibus], [ibus_version], [http://code.google.com/p/ibus/issues/entry],[ibus])
AM_INIT_AUTOMAKE([1.10])
AC_GNU_SOURCE
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
# define PACKAGE_VERSION_* variables
AS_VERSION
AS_NANO
AM_MAINTAINER_MODE
AM_DISABLE_STATIC
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_CXX
AC_ISC_POSIX
AC_HEADER_STDC
AM_PROG_LIBTOOL
IT_PROG_INTLTOOL([0.35.0])
# For dislpay Date
m4_define(ibus_datedisplay,
m4_esyscmd(date '+%a %b %d %Y' | tr -d '\n\r'))
DATE_DISPLAY="ibus_datedisplay"
AC_SUBST(DATE_DISPLAY)
# If only source code changed, lt_revision + 1
# If any interface added, lt_age + 1
# If any interfaces changed or removed, lt_current + 1, lt_revision = 0, lt_age = 0
m4_define([lt_current], [2])
m4_define([lt_revision], [0])
m4_define([lt_age], [0])
LT_VERSION_INFO="lt_current:lt_revision:lt_age"
AC_SUBST(LT_VERSION_INFO)
# check inotify
AC_CHECK_HEADERS([sys/inotify.h])
# check funcs
AC_CHECK_FUNCS(daemon)
# check glib2
AM_PATH_GLIB_2_0
PKG_CHECK_MODULES(GLIB2, [
glib-2.0 >= 2.18
])
PKG_CHECK_MODULES(GOBJECT2, [
gobject-2.0 >= 2.18
])
PKG_CHECK_MODULES(GIO2, [
gio-2.0 >= 2.18
])
PKG_CHECK_MODULES(GTHREAD2, [
gthread-2.0 >= 2.18
])
AC_ARG_ENABLE(client,
AS_HELP_STRING([--disable-client],
[Do not build gtk im module and ibux-x11]),
[enable_client=$enableval],
[enable_client=yes]
)
AM_CONDITIONAL([ENABLE_CLIENT], [test x"$enable_client" = x"yes"])
if test x"$enable_client" != x"no"; then
# check for gtk, gdk
PKG_CHECK_MODULES(GTK2, [
gtk+-2.0
])
gtk_binary_version=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
GTK_IM_MODULEDIR="$libdir"/gtk-2.0/$gtk_binary_version/immodules
PKG_CHECK_MODULES(GDK2, [
gdk-2.0
])
# Check for x11
PKG_CHECK_MODULES(X11, [
x11
])
AC_CHECK_HEADERS([X11/XKBlib.h])
fi
# check for gtk-doc
GTK_DOC_CHECK(1.9)
# check for dbus-glib
PKG_CHECK_MODULES(DBUS, [
dbus-1
])
AC_ARG_ENABLE(gconf,
AS_HELP_STRING([--disable-gconf],
[Do not use GConf code]),
[enable_gconf=$enableval],
[enable_gconf=yes]
)
AM_CONDITIONAL([ENABLE_GCONF], [test "x$enable_gconf" = "xyes"])
if test x"$enable_gconf" != x"no"; then
# check gconf
PKG_CHECK_MODULES(GCONF,
[gconf-2.0 >= 2.12],
)
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
if test x"$GCONFTOOL" = xno; then
AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
fi
AM_GCONF_SOURCE_2
# GCONF_SCHEMAS_INSTALL should be set in macro AM_GCONF_SOURCE_2
else
AM_CONDITIONAL([GCONF_SCHEMAS_INSTALL], [false])
fi
# check env
AC_PATH_PROG(ENV, env)
AC_SUBST(ENV)
AC_ARG_ENABLE(python,
AS_HELP_STRING([--disable-python],
[Do not use Python code]),
[enable_python=$enableval],
[enable_python=yes]
)
AM_CONDITIONAL([ENABLE_PYTHON], [test "x$enable_python" = "xyes"])
if test x"$enable_python" != x"no"; then
# check python
AM_PATH_PYTHON([2.5])
AC_PATH_PROG(PYTHON_CONFIG, python$PYTHON_VERSION-config)
if test x"$PYTHON_CONFIG" = x""; then
AC_PATH_PROG(PYTHON_CONFIG, python-config)
fi
if test x"$PYTHON_CONFIG" != x""; then
PYTHON_CFLAGS=`$PYTHON_CONFIG --includes`
PYTHON_LIBS=`$PYTHON_CONFIG --libs`
else
PYTHON_CFLAGS=`$PYTHON $srcdir/python-config.py --includes`
PYTHON_LIBS=`$PYTHON $srcdir/python-config.py --libs`
fi
PYTHON_INCLUDES="$PYTHON_CFLAGS"
AC_SUBST(PYTHON_CFLAGS)
AC_SUBST(PYTHON_INCLUDES)
AC_SUBST(PYTHON_LIBS)
fi
#
# REBUILD = \#
# AC_SUBST(REBUILD)
# define GETTEXT_* variables
GETTEXT_PACKAGE=ibus
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package])
AM_GLIB_GNU_GETTEXT
# define configure arguments
AC_ARG_WITH(gtk-im-module-dir,
AS_HELP_STRING([--with-gtk-im-module-dir[=DIR]],
[Select gtk immodule dir]),
GTK_IM_MODULEDIR=$with_gtk_im_module_dir
)
AC_SUBST(GTK_IM_MODULEDIR)
if test x"$enable_python" != x"no"; then
# check for dbus-python
AC_ARG_ENABLE(dbus-python-check,
AS_HELP_STRING([--disable-dbus-python-check],
[Do not check dbus-python]),
[enable_dbus_python_check=$enableval],
[enable_dbus_python_check=yes]
)
PKG_CHECK_MODULES(DBUS_PYTHON,
[dbus-python >= 0.83.0],
[IBUS_HAS_DBUS_PYTHON=yes],
[IBUS_HAS_DBUS_PYTHON=no]
)
if test x"$IBUS_HAS_DBUS_PYTHON" != x"yes"; then
if test x"$enable_dbus_python_check" != x"no"; then
AC_MSG_ERROR([can not find dbus-python >= 0.83.0. Please install or update dbus-python.])
else
AC_MSG_WARN([can not find dbus-python >= 0.83.0. It is required.])
fi
fi
fi
# option for disable snooper applications
AC_ARG_ENABLE(key-snooper,
AS_HELP_STRING([--disable-key-snooper],
[Disable key snooper in gtk im module]),
[enable_key_snooper=$enableval],
[enable_key_snooper=yes]
)
if test x"$enable_key_snooper" != x"no"; then
AC_DEFINE(ENABLE_SNOOPER, TRUE, [Enable key snooper])
else
AC_DEFINE(ENABLE_SNOOPER, FALSE, [Enable key snooper])
fi
# option for no snooper applications
AC_ARG_WITH(no-snooper-apps,
AS_HELP_STRING([--with-no-snooper-apps[=app1,app2]],
[Does not enable keyboard snooper in those applications]),
NO_SNOOPER_APPS=$with_no_snooper_apps
)
AC_DEFINE_UNQUOTED(NO_SNOOPER_APPS, "$NO_SNOOPER_APPS",
[Does not enbale key snooper in those applications])
# check iso-codes
PKG_CHECK_MODULES(ISOCODES, [
iso-codes
])
ISOCODES_PREFIX=`pkg-config iso-codes --variable=prefix`
AC_SUBST(ISOCODES_PREFIX)
# OUTPUT files
AC_CONFIG_FILES([ po/Makefile.in
Makefile
ibus-1.0.pc
ibus.spec
xinput-ibus
client/Makefile
client/gtk2/Makefile
client/x11/Makefile
src/Makefile
src/ibusversion.h
bus/Makefile
util/Makefile
util/IMdkit/Makefile
data/Makefile
data/icons/Makefile
data/keymaps/Makefile
docs/Makefile
docs/reference/Makefile
docs/reference/ibus/ibus-docs.sgml
docs/reference/ibus/Makefile
m4/Makefile
ibus/_config.py
ibus/Makefile
ibus/interface/Makefile
ui/Makefile
ui/gtk/Makefile
ui/gtk/ibus-ui-gtk
ui/gtk/gtkpanel.xml.in
setup/Makefile
setup/ibus-setup
gconf/Makefile
gconf/gconf.xml.in
])
AC_OUTPUT
AC_MSG_RESULT([
Build options:
Version $VERSION
Install prefix $prefix
Build shared libs $enable_shared
Build static libs $enable_static
Gtk immodule dir $GTK_IM_MODULEDIR
Build gtk, x11 clients $enable_client
Build python modules $enable_python
Build gconf modules $enable_gconf
Build document $enable_gtk_doc
Enable key snooper $enable_key_snooper
No snooper apps "$NO_SNOOPER_APPS"
])