bump version 1.4.92
[platform/upstream/ibus-libpinyin.git] / configure.ac
1 # vim:set et ts=4:
2 #
3 # ibus-libpinyin - Intelligent Pinyin engine based on libpinyin for IBus
4 #
5 # Copyright (c) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 # if not 1, append datestamp to the version number.
22 m4_define([ibus_released], [1])
23 m4_define([ibus_major_version], [1])
24 m4_define([ibus_minor_version], [4])
25 m4_define([ibus_micro_version], [92])
26 m4_define(ibus_maybe_datestamp,
27     m4_esyscmd([if test x]ibus_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))
28
29 m4_define([ibus_version],
30     ibus_major_version.ibus_minor_version.ibus_micro_version[]ibus_maybe_datestamp)
31
32 AC_INIT([ibus-libpinyin], [ibus_version], [https://github.com/libpinyin/ibus-libpinyin/issues/new],[ibus-libpinyin])
33 AM_INIT_AUTOMAKE([1.10])
34 AC_GNU_SOURCE
35
36 AC_CONFIG_HEADERS([config.h])
37 AC_CONFIG_MACRO_DIR([m4])
38 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
39
40 # define PACKAGE_VERSION_* variables
41 AS_VERSION
42 AS_NANO
43 AM_SANITY_CHECK
44 AM_MAINTAINER_MODE
45 AM_DISABLE_STATIC
46 AC_PROG_CC
47 AC_PROG_CXX
48 AM_PROG_CC_C_O
49 AC_ISC_POSIX
50 AC_HEADER_STDC
51 IT_PROG_INTLTOOL([0.35.0])
52 AM_PROG_LIBTOOL
53
54 # check ibus
55 PKG_CHECK_MODULES(IBUS, [
56     ibus-1.0 >= 1.3.99
57 ])
58
59 # check sqlite
60 PKG_CHECK_MODULES(SQLITE, [
61     sqlite3
62 ])
63 AC_PATH_PROG(SQLITE3, sqlite3)
64
65 PKG_CHECK_MODULES(LIBPINYIN, [
66     libpinyin >= 0.7.0
67 ], [enable_libpinyin=yes])
68
69 AM_CONDITIONAL(IBUS_BUILD_LIBPINYIN, [test x"$enable_libpinyin" = x"yes"])
70
71 # check uuid
72 AC_CHECK_FUNCS([uuid_create], [], [
73     PKG_CHECK_MODULES(LIBUUID, uuid, [
74         # uuid.pc exist
75         AC_DEFINE(HAVE_LIBUUID, 1, [Define if found libuuid])
76         HAVE_LIBUUID=yes
77     ], [
78         # uuid.pc does not exist
79         uuid_old_LIBS=$LIBS
80         AC_CHECK_HEADERS(uuid/uuid.h, [
81             AC_SEARCH_LIBS(uuid_generate, uuid, [
82                 test x"$ac_cv_search_uuid_generate" != x"none required" && LIBUUID_LIBS=$ac_cv_search_uuid_generate
83                 AC_DEFINE(HAVE_LIBUUID, 1, [Define if found libuuid])
84                 HAVE_LIBUUID=yes
85             ], [
86                 AC_MSG_ERROR([Can not find uuid_create and uuid_generate in libc or libuuid])
87             ])
88         ], [
89             AC_MSG_ERROR([Can not find uuid_create and uuid_generate in libc or libuuid])
90         ])
91         LIBS=$uuid_old_LIBS
92     ])
93 ])
94
95 AM_CONDITIONAL(HAVE_LIBUUID, test x"$HAVE_LIBUUID" = x"yes")
96
97 # check if ibus_config_get_values, which is available in ibus-1.3.99+ (git master)
98 save_CFLAGS="$CFLAGS"
99 save_LIBS="$LIBS"
100 CFLAGS="$CFLAGS $IBUS_CFLAGS"
101 LIBS="$LIBS $IBUS_LIBS"
102 AC_CHECK_FUNCS([ibus_config_get_values])
103 CFLAGS="$save_CFLAGS"
104 LIBS="$save_LIBS"
105
106
107 # check env
108 AC_PATH_PROG(ENV, env)
109 AC_SUBST(ENV)
110
111 # check python
112 AM_PATH_PYTHON([2.5])
113
114 # --enable-boost
115 AC_ARG_ENABLE(boost,
116     AC_HELP_STRING([--enable-boost],
117         [Use boost to replace stdc++0x.]),
118         [enable_boost=$enableval],
119         [enable_boost=no]
120 )
121 if test x"$enable_boost" = x"yes"; then
122     # check boost
123     BOOST_REQUIRE([1.39])
124     BOOST_FIND_HEADER([boost/bind.hpp])
125     BOOST_FIND_HEADER([boost/signals2.hpp])
126 fi
127 AM_CONDITIONAL(HAVE_BOOST, test x"$enable_boost" = x"yes")
128
129 # --enable-opencc
130 AC_ARG_ENABLE(opencc,
131     AC_HELP_STRING([--enable-opencc],
132         [Use opencc for simplified and traditional Chinese conversion]),
133         [enable_opencc=$enableval],
134         [enable_opencc=no]
135 )
136 if test x"$enable_opencc" = x"yes"; then
137     # check opencc
138     PKG_CHECK_MODULES(OPENCC, [opencc], [
139         AC_DEFINE(HAVE_OPENCC, 1, [Define if found opencc])
140     ])
141 fi
142
143 # define GETTEXT_* variables
144 GETTEXT_PACKAGE=ibus-libpinyin
145 AC_SUBST(GETTEXT_PACKAGE)
146 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package])
147
148 AM_GLIB_GNU_GETTEXT
149
150 # --disable-lua-extension
151 AC_ARG_ENABLE(lua-extension,
152     AS_HELP_STRING([--disable-lua-extension],
153          [do not build lua extension]),
154     [enable_lua_extension=$enableval],
155     [enable_lua_extension=yes]
156 )
157
158 # check lua
159 PKG_CHECK_MODULES(LUA, [
160     lua >= 5.1
161 ], [],
162 [has_lua_extension=no]
163 )
164
165 if test x"$has_lua_extension" = x"no";
166 then
167     PKG_CHECK_MODULES(LUA, [
168         lua5.1
169     ], [],
170     [enable_lua_extension=no]
171     );
172 fi
173
174 AM_CONDITIONAL(IBUS_BUILD_LUA_EXTENSION, [test x"$enable_lua_extension" = x"yes"])
175
176 # --disable-english-input-mode
177 AC_ARG_ENABLE(english-input-mode,
178     AS_HELP_STRING([--disable-english-input-mode],
179     [do not build english input mode]),
180     [enable_english_input_mode=$enableval],
181     [enable_english_input_mode=yes]
182 )
183
184 AM_CONDITIONAL(IBUS_BUILD_ENGLISH_INPUT_MODE, [test x"$enable_english_input_mode" = x"yes"])
185
186 # --disable-stroke-input-mode
187 AC_ARG_ENABLE(stroke-input-mode,
188         AS_HELP_STRING([--disable-stroke-input-mode],
189         [do not build stroke input mode]),
190         [enable_stroke_input_mode=$enableval],
191         [enable_stroke_input_mode=yes]
192 )
193
194 AM_CONDITIONAL(IBUS_BUILD_STROKE_INPUT_MODE, [test x"$enable_stroke_input_mode" = x"yes"])
195
196 # OUTPUT files
197 AC_CONFIG_FILES([ po/Makefile.in
198 Makefile
199 ibus-libpinyin.spec
200 lua/Makefile
201 src/Makefile
202 src/libpinyin.xml.in
203 setup/Makefile
204 setup/ibus-setup-libpinyin
205 setup/version.py
206 data/Makefile
207 data/icons/Makefile
208 m4/Makefile
209 ])
210
211 AC_OUTPUT
212
213 AC_MSG_RESULT([
214 Build options:
215     Version                     $VERSION
216     Install prefix              $prefix
217     Use boost                   $enable_boost
218     Use opencc                  $enable_opencc
219     Use libpinyin               $enable_libpinyin
220     Build lua extension         $enable_lua_extension
221     Build stroke input mode     $enable_stroke_input_mode
222     Build english input mode    $enable_english_input_mode
223 ])
224