Fix 'minimized' behavior
[amule.git] / configure.ac
blobda22af93753f6f142df80573778f7755075813bc
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 # This file is part of the aMule Project.
6 # Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
8 # Any parts of this program derived from the xMule, lMule or eMule project,
9 # or contributed by third-party developers are copyrighted by their
10 # respective authors.
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
27 AC_INIT([aMule],[SVN],[admin@amule.org])
28 AM_INIT_AUTOMAKE
29 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
31 AC_PREREQ(2.59)
33 AC_CONFIG_SRCDIR([src/amule.cpp])
34 AC_CONFIG_HEADERS([config.h])
35 AC_CONFIG_MACRO_DIR([m4])
36 AM_MAINTAINER_MODE
38 dnl Check host system.
39 MULE_CHECK_SYSTEM
41 dnl Checks for programs.
42 dnl Workaround for these checks may alter CFLAGS and CXXFLAGS, especially if they were empty
43 MULE_BACKUP([CFLAGS])
44 MULE_BACKUP([CXXFLAGS])
45 MULE_BACKUP([BUILD_CFLAGS])
46 AC_PROG_CXX
47 AC_PROG_CXXCPP
48 AC_PROG_CC
49 AC_PROG_CPP
50 AS_IF([test "$cross_compiling" = yes], [AC_PROG_BUILD_CC], [BUILD_CC="$CC" ; BUILD_EXEEXT=$EXEEXT])
51 MULE_RESTORE([CFLAGS])
52 MULE_RESTORE([CXXFLAGS])
53 MULE_RESTORE([BUILD_CFLAGS])
54 AC_PROG_AWK
55 AC_PROG_EGREP
56 AC_PROG_MAKE_SET
57 AC_PROG_INSTALL
58 AC_PROG_RANLIB
59 AC_PROG_SED
61 dnl Find the right ranlib, even when cross-compiling
62 dnl And for some other tools for cross compilation
63 AC_CHECK_TOOL(RANLIB, ranlib)
64 AC_CHECK_TOOL(STRIP, strip)
65 AC_CHECK_TOOL(AR, ar)
66 AC_CHECK_TOOL(LD, ld)
68 dnl Selectable components
69 MULE_ARG_ENABLE([monolithic],   [yes],  [disable building of the monolithic aMule app], [MONOLITHIC])
70 MULE_ARG_ENABLE([amule-daemon], [no],   [compile aMule daemon version], [AMULE_DAEMON])
71 MULE_ARG_ENABLE([amulecmd],     [no],   [compile aMule command line client], [COMPILE_CMD])
72 MULE_ARG_ENABLE([webserver],    [no],   [compile aMule WebServer], [WEB])
73 MULE_ARG_ENABLE([amule-gui],    [no],   [compile aMule remote GUI], [AMULE_GUI])
74 MULE_ARG_ENABLE([cas],          [no],   [compile C aMule Statistics], [CAS])
75 MULE_ARG_ENABLE([wxcas],        [no],   [compile aMule GUI Statistics], [WXCAS])
76 MULE_ARG_ENABLE([ed2k],         [yes],  [don't compile aMule ed2k links handler], [ED2K])
77 MULE_ARG_ENABLE([alc],          [no],   [compile aMuleLinkCreator GUI version], [ALC])
78 MULE_ARG_ENABLE([alcc],         [no],   [compile aMuleLinkCreator for console], [ALCC])
79 MULE_ARG_ENABLE([xas],          [no],   [install xas XChat2 plugin], [XAS])
80 MULE_ARG_ENABLE([fileview],     [no],   [compile aMule file viewer for console], [FILEVIEW])
81 MULE_ARG_ENABLE([plasmamule],   [no],   [compile aMule plasma applet and engine])
83 # Run all the tests with static linkage if we want a statically linked binary
84 MULE_ARG_ENABLE([static], [no], [produce a statically linked executable])
85 MULE_IF_ENABLED([static], [MULE_APPEND([LDFLAGS], [-static])])
87 KDE_CONFIG_OPTIONS
88 QT_CONFIG_OPTIONS
90 # Default is yes, because they're most likely compatible.
91 # However, this is only used when cross-compiling.
92 AC_ARG_WITH(
93         [gnu-malloc],
94         [AS_HELP_STRING([--without-gnu-malloc],
95                 [Don't assume that we use GNU libc compatible malloc/realloc when cross-compiling])],
96         [gnumalloc=$withval], [gnumalloc=yes])
99 # Checking for libs before all other stuff to break
100 # configure as soon as possible in case of a missing one
101 # to avoid losing too much time
103 # Check for gd
104 MULE_IF_ENABLED([cas], [
105         MULE_CHECK_GDLIB([2.0.0], [
106                 CAS_DEFS="-D__GD__"
107                 GDLIB_LIBS="-lgd"
108         ], [CAS_DEFS=])
109         AS_IF([test -z "$CAS_DEFS"],
110                 [MULE_WARNING(
111                         [gd-lib >= 2.0.0, or a functional gd.h (from gd-devel) not found.
112                         Please check that gdlib-config is in your default path, check out LD_LIBRARY_PATH or equivalent variable.
113                         Or this might also be that your gdlib-config has other name.
114                         Please try again with --with-gdlib-config=/usr/bin/gdlib-config (replace /usr/bin/gdlib-config with a valid path to your gdlib-config).
115                         If you use compiled packages check if you have devel pack installed.
116                         To download the latest version check http://www.boutell.com/gd for sources.])])
118 AC_SUBST([CAS_DEFS])dnl
120 dnl Tests explicitly requiring C. They test features of the C compiler.
121 AC_HEADER_STDBOOL
122 AC_C_CONST
123 AC_C_INLINE
124 AC_C_VOLATILE
126 dnl Use C++ for all other tests, since we use C++ to actually compile the
127 dnl sources.  There might be differences between the compilers, thus if
128 dnl something works in C it doesn't automatically mean it also works in C++.
130 dnl The only exception is cas which is written in pure C.
131 AC_LANG_PUSH([C++])
134 # Check for zlib
135 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amulecmd, webserver, amule-gui],
136         [MULE_CHECK_ZLIB([1.1.4],, [AC_MSG_ERROR([zlib >= 1.1.4 is required for aMule])])])
139 # Check for libpng
140 MULE_IF_ENABLED([webserver],
141         [MULE_CHECK_LIBPNG([1.2.0], [AMULEWEB_DEFS="-DWITH_LIBPNG"], [
142                 MULE_WARNING(
143                         [libpng >= 1.2.0 not found.
144                         amuleweb will be compiled but file download progress bar images will NOT be generated.])
145                 ])
146         ])
147 AC_SUBST([AMULEWEB_DEFS])dnl
150 # Check for GeoIP (required for IP2Country capability)
151 MULE_IF_ENABLED_ANY([monolithic, amule-gui], [MULE_CHECK_GEOIP])
154 # Check for wx
155 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amule-gui, amulecmd, webserver, alc, alcc, wxcas, fileview],
156         [WX_CONFIG_OPTIONS
157         WX_STANDARD_OPTIONS([toolkit,wxshared,wxdebug,wxversion])
158         # Force using a static wxWidgets library if the executable is to be linked statically.
159         MULE_IF_ENABLED([static], [WX_SHARED=0])
160         # Force using a unicode build of the library
161         MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amule-gui, amulecmd, webserver, fileview], [WX_UNICODE=1])
162         DEBUG=$WX_DEBUG
163         WX_CONVERT_STANDARD_OPTIONS_TO_WXCONFIG_FLAGS
164         WX_CONFIG_CHECK([2.8.12], [wxWin=1],,, [$WXCONFIG_FLAGS])
165         AS_IF([test "$wxWin" != 1],
166                 [AC_MSG_ERROR([
167                 wxWidgets must be installed on your system but wx-config
168                 script couldn't be found. Please check that wx-config is
169                 in path or specified by --with-wx-config=path flag, the
170                 directory where wxWidgets libraries are installed (returned
171                 by 'wx-config --libs' command) is in LD_LIBRARY_PATH or
172                 equivalent variable and wxWidgets version is 2.8.12 or above.
173                 ])]
174         )
175         AS_IF([test "${WX_VERSION_FULL}" = "2.9.0"], [AC_MSG_ERROR([
176                 This version of wxWidgets is known to not work with aMule.
177                 Please upgrade to a newer version.]
178                 )]
179         )
180         WX_DETECT_STANDARD_OPTION_VALUES
182         # We also need wxBase
183         WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs adv,core,net`
184         WXBASE_LIBS=`$WX_CONFIG_WITH_ARGS --libs net`
185         WXBASE_CPPFLAGS="$WX_CPPFLAGS -DwxUSE_GUI=0"
187         MULERCFLAGS=`$WX_CONFIG_WITH_ARGS --cflags | $AWK ['{ for (i = 1; i <= NF; i++) if (index($i, "-I") != 1 && index($i, "-D") != 1) $i = ""; print }']`
189 AC_SUBST([WXBASE_LIBS])dnl
190 AC_SUBST([WXBASE_CPPFLAGS])dnl
192 MULE_IF_ENABLED_ANY([monolithic, amule-gui, wxcas, alc],
193 [AS_IF([test "${WX_PORT}" = base],
194         [AC_MSG_ERROR([
195                 The selected components need a wxWidgets library with GUI,
196                 but your installation is base-only.  Please install a GUI
197                 enabled version of wxWidgets and then retry.
198         ])]
202 dnl Resource compiler for W32
203 AC_ARG_VAR([RC], [Resource Compiler])dnl
204 AC_ARG_VAR([RCFLAGS], [Resource Compiler Flags])dnl
205 AS_IF([test ${SYS:-unknown} = win32], [AC_CHECK_TOOL([RC], [windres], [:])])
208 # Check for libupnp
209 MULE_ARG_ENABLE([upnp], [yes], [do not compile UPnP code])
210 MULE_IF_ENABLED_ANY([monolithic, amule-daemon],, [MULE_ENABLEVAR([upnp])=no])
211 MULE_IF_ENABLED([upnp], [
212         LIBUPNP_CHECK(
213                 [1.6.6],
214                 [MULE_APPEND([LIBUPNP_CPPFLAGS], [-DENABLE_UPNP=1])],
215                 [MULE_ENABLEVAR([upnp])=disabled
216                 MULE_WARNING([UPnP code has been disabled because ${libupnp_error}.])]
217         )
218 ])dnl
221 # Check for Crypto++ (requires C++)
222 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amule-gui, fileview],
223 [MULE_CHECK_CRYPTOPP([5.1], [
224         # Check for CryptoPP >= 5.5
225         AS_IF([test $CRYPTOPP_VERSION_NUMBER -ge "5005000"], [MULE_APPEND([CRYPTOPP_CPPFLAGS], [-D__WEAK_CRYPTO__])])
226 ], [
227         AC_MSG_ERROR([
228         Could not find crypto++ installation or sources.
229         Please try again with --with-crypto-prefix=/my_crypto_prefix
230         (replace /my_crypto_prefix with a valid path to your crypto++
231         installation or source directory).])
232 ])])
235 MULE_COMPILATION_FLAGS
238 dnl Checks explicitly requiring C++
239 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amule-gui, amulecmd, webserver, ed2k, alc, alcc, wxcas, fileview],
241 dnl MULE_CHECK_GLIBCXX
242 MULE_CHECK_STRICT_ALIASING
243 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, alc, alcc], [MULE_CHECK_WX_SUPPORTS_LARGEFILE])
245 # Check if the compiler is broken, wrt. exceptions.
246 MULE_CHECK_EXCEPTIONS
248 MULE_CHECK_CXXABI
250 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amule-gui, amulecmd, webserver], [MULE_CHECK_BOOST([1.47])])
253 # Ok, we have all needed libs, now checking for other stuff
256 # Checks for header files.
257 AC_FUNC_ALLOCA
258 AC_HEADER_DIRENT
259 AC_HEADER_STDC
260 AC_CHECK_HEADERS([argz.h arpa/inet.h errno.h fcntl.h inttypes.h langinfo.h libintl.h limits.h locale.h malloc.h mntent.h netdb.h netinet/in.h stddef.h nl_types.h signal.h stdint.h stdio_ext.h stdlib.h string.h strings.h sys/ioctl.h sys/mntent.h sys/mnttab.h sys/mount.h sys/param.h sys/resource.h sys/select.h sys/socket.h sys/statvfs.h sys/time.h sys/timeb.h sys/types.h unistd.h])
261 AC_HEADER_SYS_WAIT
264 # Checks for typedefs, structures, and compiler characteristics.
265 AC_TYPE_MODE_T
266 AC_TYPE_OFF_T
267 AC_TYPE_SIZE_T
268 AC_HEADER_TIME
269 AC_STRUCT_TM
270 AC_TYPE_UID_T
271 AC_CHECK_TYPES([ptrdiff_t])
274 # Checks for library functions.
275 AC_FUNC_CLOSEDIR_VOID
276 AC_PROG_GCC_TRADITIONAL
277 AC_FUNC_FORK
278 AS_IF([test x$SYS != xwin32], [
279         AC_FUNC_GETMNTENT
280         AC_FUNC_LSTAT
281         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
283 AC_FUNC_MEMCMP
284 AC_FUNC_SELECT_ARGTYPES
285 AC_FUNC_SETVBUF_REVERSED
286 AC_TYPE_SIGNAL
287 AC_FUNC_STAT
288 AC_FUNC_STRFTIME
289 AC_FUNC_STRTOD
290 AC_FUNC_VPRINTF
291 dnl Some other functions that worth checking deeper:
292 dnl AC_FUNC_CLOSEDIR_VOID
293 dnl AC_FUNC_MEMCMP
294 dnl AC_FUNC_MMAP
295 dnl AC_FUNC_STAT
296 dnl AC_FUNC_STRTOD
297 dnl AC_FUNC_SETVBUF_REVERSED
298 dnl Anyways, do we actually USE them?
299 AS_IF([test $cross_compiling = yes -a $gnumalloc = yes], [
300         MULE_WARNING([configure cannot check whether malloc() and realloc() are GNU libc compatible. You have to be ABSOLUTELY sure that they are, otherwise run configure with the --without-gnu-malloc switch.])
301         ac_cv_func_malloc_0_nonnull=yes
302         ac_cv_func_realloc_0_nonnull=yes
304 AC_FUNC_MALLOC
305 AC_FUNC_REALLOC
306 AC_CHECK_FUNCS([__argz_count __argz_next __argz_stringify endpwent floor ftruncate getcwd gethostbyaddr gethostbyname gethostname getopt_long getpass getrlimit gettimeofday inet_ntoa localeconv memmove mempcpy memset mkdir nl_langinfo pow select setlocale setrlimit sigaction socket sqrt stpcpy strcasecmp strchr strcspn strdup strerror strncasecmp strstr strtoul])
309 dnl This must be *before* MULE_CHECK_NLS
310 MULE_IF_ENABLED_ANY([monolithic, amule-daemon], [MULE_CHECK_MMAP])
313 # Look for a way to preallocate disk space for files.
314 MULE_IF_ENABLED_ANY([monolithic, amule-daemon], [MULE_CHECK_FALLOCATE])
317 dnl Use the C compiler for the gettext library checks
318 AC_LANG_POP([C++])
319 # Checking Native Language Support
320 dnl Sets gettext version.
321 dnl AM_GNU_GETTEXT_VERSION *must not* be moved away from configure.ac!
322 AM_GNU_GETTEXT_VERSION(0.11.5)
323 MULE_CHECK_NLS
324 AS_IF([test x$USE_INCLUDED_LIBINTL = xyes], [AC_CONFIG_COMMANDS([intl], [[
325         test -d intl || mkdir intl
326         test -f intl/plural.c || cp "$srcdir"/intl/plural.c intl/
327         touch intl/plural.c
328 ]])])
329 AC_LANG_PUSH([C++])
332 # Check for bfd.h (to have proper backtraces without using wxExecute)
333 dnl This must be *after* MULE_CHECK_NLS
334 MULE_CHECK_BFD
335 MULE_CHECK_EXECINFO
338 # aMule plasma widget
339 MULE_IF_ENABLED([plasmamule], [PLASMAMULE_CHECKS])
342 # Check for readline library
343 MULE_IF_ENABLED_ANY([amulecmd, webserver], [VL_LIB_READLINE])
346 dnl Tests that should be run in C mode. These tests either test features of the
347 dnl C compiler or their results will be used in C sources only.
348 AC_LANG_POP([C++])
350 # Check for strerror_r
351 MULE_BACKUP([CPPFLAGS])
352 MULE_APPEND([CPPFLAGS], [-D_XOPEN_SOURCE=600])
353 AC_FUNC_STRERROR_R
354 MULE_RESTORE([CPPFLAGS])
357 # Other tests
359 # autoconf >= 2.60 already defines ${docdir}, but we always need it.
360 AC_MSG_CHECKING([for docdir])
361 AS_IF([test -z "$docdir"], [docdir="${datadir}/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}"])
362 AC_SUBST([docdir])dnl
363 AC_MSG_RESULT([$docdir])
366 # Try to set the SVN checkout-date
367 AC_MSG_CHECKING([for SVNDATE])
368 modified=
369 MULE_IF(
370 dnl SVNDATE for tarballs
371 [test -f "$srcdir/.svn-revision"],
372         [svndate="rev. `cat $srcdir/.svn-revision`"],
374 dnl SVNDATE for Subversion checkouts
375 [test -d "$srcdir"/.svn],
376         [svndate="rev. `svnversion "$srcdir" | ${SED} -e 'h;s/[[0-9]][[0-9]]*:\(.*\)/\1/;s/\([[0-9]][[0-9]]*\).*/\1/;x;/.*M.*/{x;s/$/+/;b;};x'`"],
378 dnl SVNDATE for git/git-svn clones
379 [test -d "$srcdir"/.git],
381         git_revision=`git --git-dir="$srcdir"/.git log --max-count=1 --pretty='tformat:%h'`
382         if test -n "`git --git-dir="$srcdir"/.git --work-tree="$srcdir" status --porcelain --untracked-files=no`" ; then
383                 modified="+"
384         fi
385         if test -f $srcdir/.git/svn/.metadata ; then
386                 git_sha=`git --git-dir="$srcdir"/.git log --max-count=1 --pretty='tformat:%H'`
387                 svndate=`git --git-dir="$srcdir"/.git rev-list ${git_sha} | while read sha; do
388                         svn_revision=\`git --git-dir="$srcdir"/.git svn find-rev \${sha}\`
389                         if test -n "\${svn_revision}" ; then
390                                 if test \${sha} = ${git_sha} ; then
391                                         echo "rev. \${svn_revision}${modified}"
392                                 else
393                                         echo "rev. \${svn_revision}+g${git_revision}${modified}"
394                                 fi
395                                 break
396                         fi
397                 done`
398         else
399                 svndate="rev. g${git_revision}${modified}"
400         fi
403 dnl SVNDATE for mercurial/hgsubversion clones
404 [test -d "$srcdir"/.hg],
406         hg_revision=`hg --cwd "$srcdir" identify --id`
407         hg_revid=${hg_revision%+}
408         if test ${hg_revision} != ${hg_revid} ; then
409                 modified="+"
410         fi
411         if test -f "$srcdir"/.hg/svn/uuid ; then
412                 svndate=`hg --cwd "$srcdir" log --follow --template='r{svnrev} {node|short}\n' | while read svn_revision hg_sha; do
413                         if test \${svn_revision} != r ; then
414                                 if test \${hg_sha} = ${hg_revid} ; then
415                                         echo "rev. \${svn_revision#r}${modified}"
416                                 else
417                                         echo "rev. \${svn_revision#r}+h${hg_revision}"
418                                 fi
419                                 break
420                         fi
421                 done`
422         else
423                 svndate="rev. h${hg_revision}"
424         fi
427 AC_MSG_RESULT(${svndate:-None required})
428 AS_IF([test -n "$svndate"], [
429             AC_DEFINE_UNQUOTED([SVNDATE], ["$svndate"], [The checkout date or svn revision number.])
430             MULE_ADDFLAG([RC], [-D__PRERELEASE__])
432 AC_SUBST([SVNDATE], [$svndate])dnl
435 dnl Set up the denoiser
436 MULE_DENOISER
439 # DO NOT MOVE UP... THERE'S A REASON TO BE HERE!!
440 MULE_CHECK_CCACHE
443 dnl ---------------------------------------------------------------------------
444 dnl End of checks, now write the results and report
445 dnl ---------------------------------------------------------------------------
447 AM_CONDITIONAL(SYS_WIN32, test x$SYS = xwin32)
448 AM_CONDITIONAL(NEED_RC, test x$SYS = xwin32 -a "$RC" != ":" -a x$WX_PORT = xmsw)
449 AM_CONDITIONAL(NEED_CORESERVICES, test x$SYS = xdarwin)
450 AM_CONDITIONAL(COMPILE_NLS, test x$USE_NLS = xyes)
451 AM_CONDITIONAL(INSTALL_SKINS, test MULE_IS_ENABLED_ANY([monolithic, amule-gui]))
452 AM_CONDITIONAL(PLASMAMULE, test MULE_IS_ENABLED([plasmamule]))
454 AM_CONDITIONAL([COMPILE_LIB_COMMON],    [test MULE_IS_ENABLED_ANY([monolithic, amule-daemon, amulecmd, webserver, amule-gui, fileview])])
455 AM_CONDITIONAL([COMPILE_LIB_EC],        [test MULE_IS_ENABLED_ANY([monolithic, amule-daemon, amulecmd, webserver, amule-gui])])
457 dnl Generate the Makefiles
458 AC_CONFIG_FILES([Makefile
459                  docs/Makefile
460                  docs/man/Makefile
461                  intl/Makefile
462                  po/Makefile.in
463                  src/Makefile
464                  src/pixmaps/Makefile
465                  src/pixmaps/flags_xpm/Makefile
466                  src/libs/Makefile
467                  src/libs/ec/Makefile
468                  src/libs/ec/cpp/Makefile
469                  src/libs/common/Makefile
470                  src/utils/Makefile
471                  src/utils/aLinkCreator/Makefile
472                  src/utils/aLinkCreator/docs/Makefile
473                  src/utils/aLinkCreator/src/Makefile
474                  src/utils/cas/Makefile
475                  src/utils/cas/docs/Makefile
476                  src/utils/fileview/Makefile
477                  src/utils/plasmamule/Makefile
478                  src/utils/wxCas/Makefile
479                  src/utils/wxCas/docs/Makefile
480                  src/utils/wxCas/src/Makefile
481                  src/utils/xas/Makefile
482                  src/utils/xas/autostart-xas
483                  src/utils/xas/docs/Makefile
484                  src/skins/Makefile
485                  src/webserver/Makefile
486                  src/webserver/src/Makefile
487                  src/webserver/default/Makefile
488                  unittests/Makefile
489                  unittests/muleunit/Makefile
490                  unittests/tests/Makefile])
492 AS_IF([test x$SYS = xwin32], [AC_CONFIG_FILES([version.rc])])
493 AC_OUTPUT
495 AS_IF([test -n "$svndate"], [SVN_REVISION=" ($svndate)"], [SVN_REVISION=])
497 echo
498 echo
499 echo "  Configure script has finished system check."
500 echo
501 echo "  Configured aMule ${PACKAGE_VERSION}${SVN_REVISION} for '${host}'."
502 echo
503 echo "  aMule enabled options:"
504 echo
505 echo "  **** aMule Core ****"
506 echo "  Prefix where aMule should be installed?                    ${prefix:-none}"
507 echo "  Should aMule be compiled with i18n support?                ${USE_NLS:-no}"
508 echo "  Should aMule be compiled in debug mode?                    MULE_STATUSOF([debug])"
509 echo "  Should aMule be compiled with profiling?                   MULE_STATUSOF([profile])"
510 echo "  Should aMule be compiled with optimizations?               MULE_STATUSOF([optimize])"
511 echo "  Should aMule be compiled with UPnP support?                MULE_STATUSOF([upnp])"
512 echo "  Should aMule be compiled with IP2country support?          MULE_STATUSOF([geoip])"
513 echo "  Should aMule monolithic application be built?              MULE_STATUSOF([monolithic])"
514 echo "  Should aMule daemon version be built?                      MULE_STATUSOF([amule-daemon])"
515 echo "  Should aMule remote gui be built?                          MULE_STATUSOF([amule-gui])"
517 echo
518 echo "  **** aMule TextClient ****"
519 echo "  Should aMule Command Line Client be built?                 MULE_STATUSOF([amulecmd])"
520 echo
521 echo "  **** aMule WebServer ****"
522 echo "  Should aMule WebServer be built?                           MULE_STATUSOF([webserver])"
523 echo
524 echo "  **** aMule ED2K Links Handler ****"
525 echo "  Should aMule ED2K Links Handler be built?                  MULE_STATUSOF([ed2k])"
526 echo
527 echo "  **** aMuleLinkCreator ****"
528 echo "  Should aMuleLinkCreator GUI version (alc) be built?        MULE_STATUSOF([alc])"
529 echo "  Should aMuleLinkCreator for console (alcc) be built?       MULE_STATUSOF([alcc])"
530 echo
531 echo "  **** aMule Statistics ****"
532 echo "  Should C aMule Statistics (CAS) be built?                  MULE_STATUSOF([cas])"
533 echo "  Should aMule GUI Statistics (wxCas) be built?              MULE_STATUSOF([wxcas])"
534 echo "  Should xas XChat2 plugin be installed?                     MULE_STATUSOF([xas])"
535 echo "  Should plasmaMule plasma-applet be built?                  MULE_STATUSOF([plasmamule])"
537 echo
538 echo "  **** General Libraries and Tools ****"
539 echo "  Should ccache support be enabled?                          MULE_STATUSOF([ccache])"
540 echo "  Should aMule file viewer for console be built?             MULE_STATUSOF([fileview])"
541 echo "  Libraries aMule will use to build:"
542 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amule-gui, amulecmd, webserver, alc, alcc, wxcas, fileview], [
543         wxinfo="$WX_PORT"
544         AS_IF([test $WX_DEBUG -eq 1], [wxinfo="$wxinfo,debug"])
545         AS_IF([test $WX_SHARED -eq 1], [wxinfo="$wxinfo,shared"], [wxinfo="$wxinfo,static"])
546         echo "                             wxWidgets             ${WX_VERSION} ($wxinfo)"
548 AS_IF([test ${with_boost:-no} != no],
549 [MULE_IF(
550         [test ${with_boost:-no} = disabled],
551                 [echo "                             boost                 Not detected"],
552         [test ${boost_cv_inc_path:-yes} != yes],
553                 [echo "                             boost                 `echo ${boost_cv_lib_version} | sed -e 's/_/./g'` (in ${boost_cv_inc_path})"],
554                 [echo "                             boost                 `echo ${boost_cv_lib_version} | sed -e 's/_/./g'`"],
556 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amule-gui, fileview],
557         [echo "                             crypto++              ${CRYPTOPP_VERSION_STRING} (in ${CRYPTOPP_PREFIX})"])
558 MULE_IF_ENABLED([upnp], [
559         AS_IF([test -n "$with_libupnp_prefix"], [libupnp_place=" (in $with_libupnp_prefix)"])
560         echo "                             libupnp               ${LIBUPNP_VERSION:-Not detected}${libupnp_place:-}"
562 if test ${enable_nls:-yes} = yes; then
563 AS_IF([test x$USE_NLS = xno],
564         [libintl_found="Not detected"],
565         [AS_IF([test x$USE_INCLUDED_LIBINTL = xyes],
566                 [libintl_found="included"],
567                 [libintl_found="system"])])
568 echo "                             libintl               $libintl_found"
570 MULE_IF_ENABLED([geoip],
571         [AS_IF([test -z "${with_geoip_headers:-}${with_geoip_lib:-}"], [geoip_style=system], [geoip_style=user])
572         MULE_IF_ENABLED_ANY([monolithic, amule-gui],
573                 [echo "                             libGeoIP              ${geoip_style}"])])
574 MULE_IF_ENABLED([webserver],
575         [echo "                             libpng                ${LIBPNG_VERSION:-Not detected}"])
576 MULE_IF_ENABLED([cas],
577         [echo "                             libgd                 ${GDLIB_VERSION:-Not detected}"])
578 MULE_IF_ENABLED_ANY([monolithic, amule-daemon, amulecmd, webserver, amule-gui],
579         [echo "                             zlib                  ${ZLIB_VERSION:-Not detected}"])
580 MULE_IF_ENABLED([plasmamule],
581 [echo "                             qt-moc                ${QT_MOC} ${QT_MOC_VERSION}"
582 echo "                             qt-core-libs          ${QT_CORE_LIBS}"
583 echo "                             qt-gui-libs           ${QT_GUI_LIBS}"
584 echo "                             kde4-config           ${KDE4_CONFIG} (${KDE_CONF_VER})"
585 echo "                             kde-headers           ${KDE_HEADER_DIR}"
586 echo "                             kde-services-path     ${KDE_SERVICE_PATH}"
587 echo "                             kde-module-path       ${KDE_MODULE_PATH}"
588 echo "                             kde-icon-path         ${KDE_ICON_PATH}"
589 echo "                             kde-mime-path         ${KDE_MIME_PATH}"
590 echo "                             kde-applinks-path     ${KDE_APPLNK_PATH}"