-
Notifications
You must be signed in to change notification settings - Fork 120
/
configure.in
583 lines (478 loc) · 17.6 KB
/
configure.in
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
AC_INIT(FileZilla, 3.5.3, tim.kosse@filezilla-project.org)
AC_CONFIG_HEADERS([src/include/config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE([dist-bzip2])
AC_CANONICAL_HOST
AC_PROG_CXX
AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PROG_LIBTOOL
AC_CACHE_SAVE
AC_ARG_ENABLE(locales, AC_HELP_STRING([--enable-locales], [Build message catalogs]), \
[locales="$enableval"], [locales="yes"])
# Todo: Investigate using sub-configure scripts
AC_ARG_ENABLE(localesonly, AC_HELP_STRING([--enable-localesonly], [Just build locales]), \
[localesonly="$enableval"], [localesonly="no"])
AC_ARG_ENABLE(shellextonly, AC_HELP_STRING([--enable-shellextonly], [Just build Explorer shell extension (MSW specific flag)]), \
[shellextonly="$enableval"], [shellextonly="no"])
if test "$locales" != "yes" -a "$localesonly" = "yes"; then
AC_MSG_ERROR([invalid flags: --disable-locales cannot be used together with --enable-localesonly])
fi
if test "$localesonly" = "yes" -a "$shellextonly" = "yes"; then
AC_MSG_ERROR([inalid flags: --enable-localesonly cannot be used together with --enable-shellextonly])
fi
if test "$localesonly" = "yes" -o "$shellextonly" = "yes"; then
buildmain="no"
else
buildmain="yes"
fi
if test "$shellextonly" = "yes"; then
locales="no"
fi
if ! test "$localesonly" = "yes"; then
if test "X$GCC" = Xyes; then
CFLAGS="$CFLAGS -Wall -g -fexceptions"
CXXFLAGS="$CXXFLAGS -Wall -g -fexceptions"
fi
CHECK_CXX0X
# Add build information to config.h
# ---------------------------------
# Add host to config.h
AC_DEFINE_UNQUOTED(USED_HOST, ["$host"], [Host system under which the program will run.])
AC_DEFINE_UNQUOTED(USED_BUILD, ["$build"], [Build system under which the program was compiled on.])
# Add used CXXFLAGS to config.h
AC_DEFINE_UNQUOTED(USED_CXXFLAGS, ["$CXXFLAGS"], [Define to the used CXXFLAGS to compile this package.])
# Get compiler (version)
AH_TEMPLATE(USED_COMPILER, [Define to name and version of used compiler])
if COMPILER=`$CC --version | head -n 1`; then
AC_DEFINE_UNQUOTED(USED_COMPILER, ["$COMPILER"])
fi
# Get buildtype.
AC_ARG_ENABLE(buildtype, AC_HELP_STRING([--enable-buildtype=TYPE], [DO NOT USE. Reserved for use by official maintainer. TYPE can either be 'official' or 'nightly'.]),
[buildtype=$enableval], [buildtype=])
buildtype_valid=false
if test -z "$buildtype"; then
buildtype_valid=true
elif test "$buildtype" = "official"; then
buildtype_valid=true
elif test "$buildtype" = "nightly"; then
buildtype_valid=true
fi
if test "$buildtype_valid" != "true"; then
AC_MSG_ERROR([invalid buildtype passed])
fi
if ! test -z "$buildtype"; then
AC_DEFINE_UNQUOTED(BUILDTYPE, ["$buildtype"], [Buildtype, indicates official builds and nightly builds])
fi
fi
if test "$buildmain" = "yes"; then
# Detect wxWidgets
# ----------------
AM_OPTIONS_WXCONFIG
MIN_WX_VERSION="2.8.12"
AM_PATH_WXCONFIG($MIN_WX_VERSION, wxWin=1, , [aui,xrc,adv,core,xml,net,base], [--unicode=yes --universal=no])
if test "$wxWin" != 1; then
AC_MSG_ERROR([
wxWidgets must be installed on your system
but either the wx-config script couldn't be found or
no compatible wxWidgets configuration has been installed.
Compatible wxWidgets configurations are the unicode builds
of wxGTK, wxMac and wxMSW.
Please check that wx-config is in path, the directory
where wxWidgets libraries are installed (returned by
'wx-config --libs' command) is in LD_LIBRARY_PATH or
equivalent variable and wxWidgets version is $MIN_WX_VERSION or above.
])
fi
if test "$wx_config_major_version" -gt "2" || test "$wx_config_minor_version" -gt "8"; then
AC_MSG_ERROR([You need to use wxWidgets 2.8.x to compile this program.])
fi
# --universal=no doesn't work correctly, it still accepts universal builds. Reject it manually here.
if echo "$WX_CPPFLAGS" | grep __WXUNIVERSAL__ > /dev/null; then
AC_MSG_ERROR([wxUniversal is not acceptable as flavour of wxWidgets. Please recompile wxWidgets with --disable-universal])
fi
AC_LANG_PUSH(C++)
CPPFLAGS_OLD="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS"
AC_MSG_CHECKING([positional printf argument support in wxWidgets])
AC_PREPROC_IFELSE(
[AC_LANG_PROGRAM([[
#include <wx/wx.h>
#if !wxUSE_PRINTF_POS_PARAMS
#error wx compiled without wxUSE_PRINTF_POS_PARAMS
#endif
]])],
AC_MSG_RESULT([yes]),
[
AC_MSG_RESULT([no])
AC_MSG_FAILURE([Positional printf argument support in wxWidgets is required by FileZilla. Please rebuild wxWidgets and pass --enable-printfposparam to its configure script.])
]
)
CPPFLAGS="$CPPFLAGS_OLD"
AC_LANG_POP
AC_SUBST(WX_CONFIG_WITH_ARGS)
AC_CACHE_SAVE
# Get OS type for PUTTY frontend
# ------------------------------
AC_MSG_CHECKING([system type for sftp stub])
sftpbuild="unix"
if echo $host_os | grep "mingw" > /dev/null 2>&1; then sftpbuild="mingw"; fi
AC_MSG_RESULT([$sftpbuild])
# Checks for PuTTY
# ----------------
AC_CHECK_HEADERS([utmpx.h sys/select.h],,,[
#include <sys/types.h>
#include <utmp.h>])
AC_SEARCH_LIBS([socket], [xnet])
AC_SEARCH_LIBS([getaddrinfo], [xnet])
AC_SEARCH_LIBS([in6addr_loopback], [socket])
AC_CHECK_FUNCS([getaddrinfo ptsname setresuid strsignal updwtmpx])
AC_CHECK_FUNCS([gettimeofday ftime])
AC_CHECK_FUNCS([in6addr_loopback in6addr_any])
fi
if test "$buildmain" = "yes" -o "$shellextonly" = "yes"; then
# Check for windres on MinGW builds
# ---------------------------------
# Small function to filter the flags for windres,
# so that only includes and defines are passed to windres.
parseflags() {
WINDRESFLAGS=""
for opt in "$@"
do
case "$opt" in
-I*)
WINDRESFLAGS="$WINDRESFLAGS --include-dir=${opt#-I}"
;;
-D*)
WINDRESFLAGS="$WINDRESFLAGS $opt"
;;
esac
done
}
WINDRESFLAGS=
use_resourcefile=
AC_MSG_CHECKING([whether to use windres])
if echo $host_os | grep "cygwin\|mingw" > /dev/null 2>&1; then
if echo $WX_CPPFLAGS | grep __WXMSW__ > /dev/null 2>&1; then
if test -z "$host_alias"; then
hostaliaswindres=
else
hostaliaswindres="$host_alias-windres"
fi
AC_MSG_RESULT([yes])
AC_PATH_PROGS([WINDRES], [windres $hostaliaswindres $host_os-windres])
if test "x$WINDRES" = "x"; then
AC_MSG_ERROR([windres could not be found, please make sure this program is within your path.])
fi
use_resourcefile=true
parseflags $WX_CPPFLAGS
else
AC_MSG_RESULT([no])
fi
else
AC_MSG_RESULT([no])
fi
AC_SUBST(WINDRES)
AC_SUBST(WINDRESFLAGS)
# version.rc.in needs a major, minor and micro version number
vnumber=${PACKAGE_VERSION%-*}
PACKAGE_VERSION_MAJOR=${vnumber%%.*}
vnumber=${vnumber#$PACKAGE_VERSION_MAJOR}
vnumber=${vnumber#.}
PACKAGE_VERSION_MINOR=${vnumber%%.*}
vnumber=${vnumber#$PACKAGE_VERSION_MINOR}
vnumber=${vnumber#.}
PACKAGE_VERSION_MICRO=${vnumber%%.*}
vnumber=${vnumber#$PACKAGE_VERSION_MICRO}
vnumber=${vnumber#.}
PACKAGE_VERSION_NANO=${vnumber%%.*}
if test -z "$PACKAGE_VERSION_MAJOR"; then
PACKAGE_VERSION_MAJOR=0
fi
if test -z "$PACKAGE_VERSION_MINOR"; then
PACKAGE_VERSION_MINOR=0
fi
if test -z "$PACKAGE_VERSION_MICRO"; then
PACKAGE_VERSION_MICRO=0
fi
if test -z "$PACKAGE_VERSION_NANO"; then
PACKAGE_VERSION_NANO=0
fi
AC_SUBST(PACKAGE_VERSION_MAJOR)
AC_SUBST(PACKAGE_VERSION_MINOR)
AC_SUBST(PACKAGE_VERSION_MICRO)
AC_SUBST(PACKAGE_VERSION_NANO)
fi
if test "$buildmain" = "yes"; then
# Mac OS X specific checks
# ------------------------
# Create application bundle on OS X
if echo $WX_CPPFLAGS | grep __WXMAC__; then
macappbundle="yes"
else
macappbundle="no"
fi
# Installer creation under Windows
# --------------------------------
# Create installer under Windows
if echo $host_os | grep "mingw" > /dev/null 2>&1; then
makensisscript="yes"
else
makensisscript="no"
fi
if echo $host_os | grep "mingw" > /dev/null 2>&1; then
AC_CONFIG_FILES(data/install.nsi)
AC_CONFIG_FILES(data/makezip.sh)
fi
# Libidn checks
# -------------
AC_CHECK_HEADER(idna.h,,
[
AC_MSG_ERROR([idna.h not found which is part of GNU libidn.])
])
AC_ARG_WITH(idn-lib,
AC_HELP_STRING([--with-idn-lib=FILE], [Use the given path to the idn library.]),
[
if test "$withval" != "yes" -a "$withval" != ""; then
IDN_LIB=$withval
fi
])
if test "x$IDN_LIB" = "x"; then
AC_CHECK_LIB(idn, stringprep_check_version, IDN_LIB="-lidn",
AC_MSG_ERROR([GNU libidn not found. Try using --with-idn-lib=FILE to specify the library path.])
)
fi
AC_SUBST(IDN_LIB)
# Binreloc
# --------
# Check if we should use BinReloc
AH_TEMPLATE(ENABLE_BINRELOC, [Define ENABLE_BINRELOC on systems where the executable
location can be obtained using /proc/self/maps])
AC_MSG_CHECKING([whether to use BinReloc])
if echo $host_os | grep -i "cygwin\|mingw\|mac\|apple" > /dev/null 2>&1 ; then
use_binreloc=no
else
use_binreloc=yes
AC_DEFINE(ENABLE_BINRELOC)
fi
AC_MSG_RESULT([$use_binreloc])
# Precompiled headers support
# ---------------------------
AC_MSG_CHECKING([whether to use precompiled headers])
use_precomp=""
AC_ARG_ENABLE(precomp, AC_HELP_STRING([--enable-precomp], [Use precompiled headers]), \
use_precomp="$enableval")
if test "x$enable_dependency_tracking" = "xno"; then
use_precomp="no"
fi
if test -z "$use_precomp"; then
if test "X$GCC" = Xyes; then
if gcc_version=`$CC -dumpversion` > /dev/null 2>&1; then
major=`echo $gcc_version | cut -d. -f1`
minor=`echo $gcc_version | sed "s/@<:@-,a-z,A-Z@:>@.*//" | cut -d. -f2`
if test -z "$major" || test -z "$minor"; then
use_precomp=no
elif test "$major" -ge 4; then
use_precomp=yes
else
use_precomp=no
fi
else
use_precomp=no
fi
else
use_precomp=no
fi
fi
if test "x$use_precomp" = "xyes"; then
CPPFLAGS="$CPPFLAGS -fpch-preprocess"
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
# CppUnit tests
# -------------
AM_PATH_CPPUNIT([1.10.2], [has_cppunit="yes"])
# Updatecheck related flags
# -------------------------
AC_ARG_ENABLE(manualupdatecheck, AC_HELP_STRING([--disable-manualupdatecheck], [Disallow the user to manually check for new versions. Implies --disable-autoupdatecheck]),
[manualupdatecheck=$enableval], [manualupdatecheck="yes"])
if test "$manualupdatecheck" = "no"; then
manualupdatecheck="0"
else
manualupdatecheck="1"
fi
AC_DEFINE_UNQUOTED(FZ_MANUALUPDATECHECK, $manualupdatecheck, [Set to 1 to enable user initiated update checks])
AC_ARG_ENABLE(autoupdatecheck, AC_HELP_STRING([--disable-autoupdatecheck], [Disables the ability of FileZilla to check for new versions automatically.]),
[autoupdatecheck=$enableval], [autoupdatecheck="yes"])
if test "$manualupdatecheck" = "1" -a "$autoupdatecheck" != "no"; then
autoupdatecheck="1"
else
autoupdatecheck="0"
fi
AC_DEFINE_UNQUOTED(FZ_AUTOUPDATECHECK, $autoupdatecheck, [Set to 1 to add support for automated update checks])
# GnuTLS
# ------
PKG_CHECK_MODULES(LIBGNUTLS, gnutls >= 2.8.3,, [
AM_PATH_LIBGNUTLS(2.8.3,, AC_MSG_ERROR([[
***
*** libgnutls 2.8.3 or greater was not found. You may want to get it from
*** ftp://ftp.gnutls.org/pub/gnutls/]]))
])
AC_SUBST(LIBGNUTLS_LIBS)
AC_SUBST(LIBGNUTLS_CFLAGS)
# TinyXML
# ------
FZ_CHECK_TINYXML()
# Libdbus
# -------
AC_ARG_WITH(dbus, AC_HELP_STRING([--with-dbus], [Enable D-Bus support through libdbus. Used for GNOME Session manager D-Bus API. Default: auto]),
[
],
[
with_dbus="auto"
])
if test "$with_dbus" = "auto"; then
if echo $WX_CPPFLAGS | grep __WXMAC__ > /dev/null 2>&1; then
with_dbus="no"
elif echo $WX_CPPFLAGS | grep __WXMSW__ > /dev/null 2>&1; then
with_dbus="no"
else
with_dbus="yes"
fi
elif test "$with_dbus" = "yes"; then
if echo "$WX_CPPFLAGS" | grep __WXMAC__; then
AC_MSG_ERROR([D-Bus support is not needed or available on your platform])
elif echo "$WX_CPPFLAGS" | grep __WXMSW__; then
AC_MSG_ERROR([D-Bus support is not needed or available on your platform])
fi
else
with_dbus="no"
fi
if test "$with_dbus" != "no"; then
PKG_CHECK_MODULES(LIBDBUS, dbus-1 >= 1.2, [with_dbus_v="2"],
[
PKG_CHECK_MODULES(LIBDBUS, dbus-1, [with_dbus_v="1"],
[
AC_MSG_ERROR([libdbus not found. Install libdbus or configure with --without-dbus])
])
])
AC_DEFINE_UNQUOTED(WITH_LIBDBUS, [$with_dbus_v], [Set to 2 to if libdbus >= 1.2 is available, set to 1 if an older version is available.])
fi
AC_MSG_CHECKING([D-Bus support])
AC_MSG_RESULT([$with_dbus])
# We want xdg-open on *nix
if echo "$WX_CPPFLAGS" | grep __WXGTK__ > /dev/null 2>&1; then
AC_PATH_PROG(xdgopen, xdg-open)
if test -z "$xdgopen"; then
AC_MSG_ERROR([xdg-open not found. This program is the preferred way to launch the default browser. Please install the xdg-utils.])
fi
PKG_CHECK_MODULES(LIBGTK, gtk+-2.0,, [
AC_MSG_ERROR([gtk+-2.0 was not found, even though the used version of wxWidgets depends on it. Are you missing the gtk+2.0 development files?])
])
AC_SUBST(LIBGTK_LIBS)
AC_SUBST(LIBGTK_CFLAGS)
fi
# Some more obscure platforms (e.g. HP-UX) don't have setenv which is required by POSIX
AC_CHECK_FUNC(setenv, [AC_DEFINE([HAVE_SETENV], [1], [Define to 1 if setenv function is available.])], [])
AC_CHECK_FUNC(putenv, [AC_DEFINE([HAVE_PUTENV], [1], [Define to 1 if putenv function is available.])], [])
# SQLite3
# -------
PKG_CHECK_MODULES(LIBSQLITE3, sqlite3 >= 3.7,, [
AC_CHECK_HEADER(sqlite3.h,,
[
AC_MSG_ERROR([sqlite3.h not found which is part of SQLite3.])
])
AC_CHECK_LIB(sqlite3, sqlite3_version, LIBSQLITE3_LIBS="-lsqlite3",
[
AC_MSG_ERROR([SQLite3 not found.])
])
])
AC_SUBST(LIBSQLITE3_LIBS)
AC_SUBST(LIBSQLITE3_CFLAGS)
fi
# Everything translation related
# ------------------------------
FILEZILLA_LINGUAS=
FILEZILLA_LINGUAS_PO=
FILEZILLA_LINGUAS_MO=
FILEZILLA_LINGUAS_PO_NEW=
if test "$locales" = "yes"; then
AC_PATH_PROG(xgettext, xgettext)
if test -z "$xgettext"; then
AC_MSG_ERROR([xgettext not found, please install the GNU gettext package and make sure xgettext is in the path.])
fi
AC_PATH_PROG(msgfmt, msgfmt)
if test -z "$msgfmt"; then
AC_MSG_ERROR([ msgfmt not found, please install the GNU gettext package and make sure msgfmt is in the path.])
fi
FZ_PATH_PROG_VER(msgmerge, msgmerge, 0.11.0)
if test -z "$msgmerge"; then
AC_MSG_ERROR([msgmerge not found or too old, please install a current version of the GNU gettext package and make sure msgmerge is in the path.])
fi
AC_MSG_CHECKING([available FZ3 message catalogs])
FILEZILLA_LINGUAS_PO=
FILEZILLA_LINGUAS=
if /bin/ls > /dev/null; then
LSPROG='/bin/ls'
else
LSPROG='ls'
fi
if test x$srcdir = x; then
path="locales"
else
path="$srcdir/locales"
fi
for i in `$LSPROG $path/*.po`; do
i=${i%.*}
i=${i##*/}
FILEZILLA_LINGUAS_PO=$FILEZILLA_LINGUAS_PO${FILEZILLA_LINGUAS_PO:+ }\$\(srcdir\)/$i.po
FILEZILLA_LINGUAS_PO_NEW=$FILEZILLA_LINGUAS_PO_NEW${FILEZILLA_LINGUAS_PO_NEW:+ }$i.po.new
FILEZILLA_LINGUAS=$FILEZILLA_LINGUAS${FILEZILLA_LINGUAS:+ }$i
FILEZILLA_LINGUAS_MO=$FILEZILLA_LINGUAS_MO${FILEZILLA_LINGUAS_MO:+ }$i.mo
done
AC_MSG_RESULT([$FILEZILLA_LINGUAS])
AC_PATH_PROG([WXRC], [wxrc --version])
if test "x$WXRC" = "x"; then
AC_MSG_ERROR([
wxrc could not be found. This program gets build together with wxWidgets.
Please make sure wxrc is within your path.
])
fi
fi
AC_SUBST(FILEZILLA_LINGUAS)
AC_SUBST(FILEZILLA_LINGUAS_PO)
AC_SUBST(FILEZILLA_LINGUAS_PO_NEW)
AC_SUBST(FILEZILLA_LINGUAS_MO)
# Output automake conditionals
# ----------------------------
AM_CONDITIONAL([MINGW], [echo $host_os | grep "mingw" > /dev/null])
AM_CONDITIONAL([LOCALES_ONLY], [test "$localesonly" = "yes"])
AM_CONDITIONAL([LOCALES], [test "$locales" = "yes"])
AM_CONDITIONAL(SFTP_MINGW, [test "$sftpbuild" = "mingw"])
AM_CONDITIONAL(SFTP_UNIX, [test "$sftpbuild" = "unix"])
AM_CONDITIONAL(USE_RESOURCEFILE, test "$use_resourcefile" = "true")
AM_CONDITIONAL(MACAPPBUNDLE, [test "$macappbundle" = "yes"])
AM_CONDITIONAL(MAKENSISSCRIPT, [test "$makensisscript" = "yes"])
AM_CONDITIONAL(USE_BINRELOC, test "$use_binreloc" = "yes")
AM_CONDITIONAL(ENABLE_PRECOMP, test "x$use_precomp" = "xyes")
AM_CONDITIONAL(HAS_CPPUNIT, [test "$has_cppunit" = "yes"])
AM_CONDITIONAL(HAVE_LIBTINYXML, [test "x$with_tinyxml" = "xsystem"])
AM_CONDITIONAL(HAVE_DBUS, [test "x$with_dbus" = "xyes"])
AC_CONFIG_FILES(Makefile src/Makefile src/engine/Makefile src/tinyxml/Makefile
src/dbus/Makefile
src/interface/Makefile src/interface/resources/Makefile src/include/Makefile
locales/Makefile src/interface/resources/16x16/Makefile
src/interface/resources/32x32/Makefile data/Makefile
src/interface/resources/cyril/Makefile
src/interface/resources/cyril/16x16/Makefile
src/interface/resources/blukis/Makefile
src/interface/resources/lone/Makefile
src/interface/resources/minimal/Makefile
src/interface/resources/opencrystal/Makefile
src/putty/Makefile src/putty/unix/Makefile src/putty/windows/Makefile
tests/Makefile src/interface/resources/version.rc
src/interface/resources/MacInfo.plist
src/fzshellext/Makefile src/fzshellext/version.rc)
AC_OUTPUT