forked from vslavik/poedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
277 lines (228 loc) · 7.54 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
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([poedit], [1.5beta1], [[email protected]])
PACKAGE_SHORT_VERSION=1.5
AC_SUBST(PACKAGE_SHORT_VERSION)
AC_CONFIG_AUX_DIR([admin])
AC_CONFIG_SRCDIR([README])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(1.9)
AM_MAINTAINER_MODE
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
AM_OPTIONS_WXCONFIG
AC_ARG_ENABLE(transmem,
AS_HELP_STRING([--enable-transmem],
[Enable translation memory (default: yes)]),
USE_TRANSMEM="$enableval", USE_TRANSMEM="yes")
AC_ARG_ENABLE(spellchecking,
AS_HELP_STRING([--enable-spellchecking],
[Enable spell checking (default: yes)]),
USE_SPELLCHECKING="$enableval", USE_SPELLCHECKING="yes")
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug],
[Enable debugging information]),
USE_DEBUG="$enableval", USE_DEBUG="no")
AC_ARG_WITH([sparkle],
[AS_HELP_STRING([--with-sparkle],
[Directory with Sparkle framework to use (OS X only)])],
[
with_sparkle="$withval"
],
[
with_sparkle="no"
])
AC_MSG_CHECKING(for install location)
case "$prefix" in
NONE) AC_CACHE_VAL(m_cv_prefix,m_cv_prefix=$ac_default_prefix);;
*) m_cv_prefix=$prefix ;;
esac
AC_MSG_RESULT($m_cv_prefix)
case "$m_cv_prefix" in /*) ;; *)
AC_MSG_WARN([--prefix=$prefix must be an absolute path name, using $ac_default_prefix])
m_cv_prefix=$ac_default_prefix
esac
prefix=$m_cv_prefix
dnl Checks for programs.
AC_PROG_AWK
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_RANLIB
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CXXCPP
AC_PROG_OBJC
AC_LANG_CPLUSPLUS
case "$USE_DEBUG" in
yes) DEBUG_FLAGS="-g -Wall -O0"
;;
esac
AM_PATH_WXCONFIG([2.8.7],
[WXFOUND=1], [WXFOUND=0],
[xrc,stc,html,xml,adv,core], [--unicode])
if test "$WXFOUND" != 1; then
AC_MSG_ERROR([
Please check that wx-config is in path, the directory
where wxWidgets libraries are installed (returned by
'wx-config --unicode --libs' command) is in LD_LIBRARY_PATH or
equivalent variable and wxWidgets is version 2.8.0 or above,
with Unicode build available.
])
fi
dnl Check if wxWidgets includes XRC library and if it does, don't build it
dnl ourselves:
AC_MSG_CHECKING([if wxWidgets includes XRC])
saved_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS"
AC_TRY_COMPILE([#include <wx/defs.h>],
[
#if !defined(wxUSE_XRC) || !wxUSE_XRC
#error "XRC not compiled in"
#endif
],
[
AC_MSG_RESULT([yes])
],
[
AC_MSG_RESULT([no])
AC_MSG_ERROR([XRC is required to build poedit!])
])
CXXFLAGS="$saved_CXXFLAGS"
CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS"
AC_ARG_VAR(WXRC, Path to wxrc resource compiler)
AC_MSG_CHECKING([for wxrc])
if test "x$WXRC" = x ; then
WXRC=`$WX_CONFIG_WITH_ARGS --utility=wxrc`
if test "x$WXRC" = x ; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([wxrc is needed to compile Poedit.])
fi
fi
AC_MSG_RESULT([$WXRC])
AC_CHECK_HEADER([boost/function.hpp],
[],
[AC_MSG_ERROR([Boost is required to compile Poedit.])])
AC_CHECK_FUNCS([mkdtemp])
use_osx=no
case "${host}" in
*-*-darwin* )
use_osx=yes
LIBS="$LIBS -framework Foundation -framework AppKit"
SPARKLE_FRAMEWORK=no
if test "x$with_sparkle" != "xno" ; then
LIBS="$LIBS -F$with_sparkle -framework Sparkle"
CFLAGS="$CFLAGS -F$with_sparkle"
CXXFLAGS="$CXXFLAGS -F$with_sparkle"
AC_MSG_CHECKING([for Sparkle framework with Carbon support])
AC_LINK_IFELSE(
AC_LANG_PROGRAM(
[
#include <Sparkle/SUCarbonAPI.h>
],
[
SUSparkleInitializeForCarbon();
])
,
[
SPARKLE_FRAMEWORK="$with_sparkle/Sparkle.framework"
AC_DEFINE(USE_SPARKLE)
AC_SUBST(SPARKLE_FRAMEWORK)
AC_MSG_RESULT([$SPARKLE_FRAMEWORK])
],
[
AC_MSG_FAILURE([Can't find Sparkle framework with Carbon support, get it from http://sparkle.downtowncode.com/SparkleForCarbon.html])
])
fi
;;
esac
AM_CONDITIONAL(USE_OSX, test $use_osx = yes)
if test "$USE_SPELLCHECKING" != "no" ; then
if test "$use_osx" = yes ; then
dnl spellchecker is always available on OS X
AC_DEFINE(USE_SPELLCHECKING)
else
dnl we need GtkSpell and GTK+ 2.x for this, check if we're compatible
PKG_CHECK_MODULES([GTKSPELL], [gtkspell-2.0],
[
AC_MSG_CHECKING([if wxWidgets toolkit uses GTK+ 2])
AC_TRY_COMPILE([#include <wx/defs.h>],
[
#ifndef __WXGTK20__
#error "not GTK+ 2"
#endif
],
[
AC_MSG_RESULT([yes])
CXXFLAGS="$CXXFLAGS $GTKSPELL_CFLAGS"
LIBS="$LIBS $GTKSPELL_LIBS"
AC_DEFINE(USE_SPELLCHECKING)
],
[
AC_MSG_RESULT([no])
USE_SPELLCHECKING="no"
AC_MSG_WARN([disabling spellchecking because GTK+ 2 is required by it])
])
],
[
USE_SPELLCHECKING="no"
AC_MSG_WARN([disabling spellchecking because GtkSpell is missing])
])
fi
fi
if $WX_CONFIG_WITH_ARGS --cxxflags | grep -q WXMSW; then
use_windows=yes
changequote(<<,>>)
RC_WX_INCLUDES=`echo " $WX_CPPFLAGS" | sed -e 's/ -[^I][^ ]*//g' | sed -e 's/ -I\([^ ]*\)/ --include-dir \1/g'`
changequote([,])
AC_CHECK_TOOL(WINDRES, windres)
else
use_windows=no
fi
AM_CONDITIONAL(USE_WINDOWS, test $use_windows = yes)
if test x$USE_TRANSMEM != xno ; then
AX_BERKELEY_DB_CXX(4.1,
[
AC_DEFINE(USE_TRANSMEM)
AC_DEFINE_UNQUOTED(DB_HEADER, ["$DB_HEADER"])
LIBS="$LIBS $DB_LIBS"
],
[
USE_TRANSMEM=no
AC_MSG_WARN([cannot find Berkeley DB >= 4.1, Poedit will build w/o translation memory feature])
])
fi
APPCAST_SUFFIX=""
if echo "$VERSION" | grep -q '\(beta\|rc\)' ; then
APPCAST_SUFFIX="/beta"
fi
AC_SUBST(APPCAST_SUFFIX)
if test "x$GXX" == "xyes"; then
AX_CXX_CHECK_FLAG([-Wall],[],[], [CXXFLAGS="$CXXFLAGS -Wall"])
AX_CXX_CHECK_FLAG([-Wextra],[],[], [CXXFLAGS="$CXXFLAGS -Wextra"])
fi
CXXFLAGS="$CXXFLAGS $DEBUG_FLAGS \"-DPOEDIT_PREFIX=\\\"$prefix\\\"\""
AC_SUBST(LDFLAGS)
AC_SUBST(CFLAGS)
AC_SUBST(CXXFLAGS)
AC_SUBST(WINDRES)
AC_SUBST(WX_CONFIG_WITH_ARGS)
AC_SUBST(WX_LIBS)
AC_SUBST(RC_WX_INCLUDES)
AC_CONFIG_FILES([
Makefile
src/Makefile
icons/Makefile
locales/Makefile
docs/Makefile
macosx/Info.plist
])
AC_OUTPUT
echo "
Configured $PACKAGE-$VERSION for $host
Debugging information: $USE_DEBUG
Translation memory: $USE_TRANSMEM
Spellchecking: $USE_SPELLCHECKING"
if test "$use_osx" = "yes" ; then
echo " Sparkle support: $SPARKLE_FRAMEWORK"
fi
echo ""