Backed out changeset 91e1d8abb51e (bug 793465) for bustage.
[gecko.git] / configure.in
blob35dd35be2c9b38d5c4602ff5636de34f68774fc7
2 dnl -*- Mode: Autoconf; tab-width: 4; indent-tabs-mode: nil; -*-
3 dnl vi: set tabstop=4 shiftwidth=4 expandtab syntax=m4:
4 dnl This Source Code Form is subject to the terms of the Mozilla Public
5 dnl License, v. 2.0. If a copy of the MPL was not distributed with this
6 dnl file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 dnl Process this file with autoconf to produce a configure script.
9 dnl ========================================================
11 AC_PREREQ(2.13)
12 AC_INIT(config/config.mk)
13 AC_CONFIG_AUX_DIR(${srcdir}/build/autoconf)
14 AC_CANONICAL_SYSTEM
15 TARGET_CPU="${target_cpu}"
16 TARGET_VENDOR="${target_vendor}"
17 TARGET_OS="${target_os}"
19 dnl ========================================================
20 dnl =
21 dnl = Don't change the following two lines.  Doing so breaks:
22 dnl =
23 dnl = CFLAGS="-foo" ./configure
24 dnl =
25 dnl ========================================================
26 CFLAGS="${CFLAGS=}"
27 CPPFLAGS="${CPPFLAGS=}"
28 CXXFLAGS="${CXXFLAGS=}"
29 LDFLAGS="${LDFLAGS=}"
30 HOST_CFLAGS="${HOST_CFLAGS=}"
31 HOST_CXXFLAGS="${HOST_CXXFLAGS=}"
32 HOST_LDFLAGS="${HOST_LDFLAGS=}"
34 dnl ========================================================
35 dnl = Preserve certain environment flags passed to configure
36 dnl = We want sub projects to receive the same flags
37 dnl = untainted by this configure script
38 dnl ========================================================
39 _SUBDIR_CC="$CC"
40 _SUBDIR_CXX="$CXX"
41 _SUBDIR_CFLAGS="$CFLAGS"
42 _SUBDIR_CPPFLAGS="$CPPFLAGS"
43 _SUBDIR_CXXFLAGS="$CXXFLAGS"
44 _SUBDIR_LDFLAGS="$LDFLAGS"
45 _SUBDIR_HOST_CC="$HOST_CC"
46 _SUBDIR_HOST_CFLAGS="$HOST_CFLAGS"
47 _SUBDIR_HOST_CXXFLAGS="$HOST_CXXFLAGS"
48 _SUBDIR_HOST_LDFLAGS="$HOST_LDFLAGS"
49 _SUBDIR_CONFIG_ARGS="$ac_configure_args"
51 dnl Set the version number of the libs included with mozilla
52 dnl ========================================================
53 MOZJPEG=62
54 MOZPNG=10606
55 NSPR_VERSION=4
56 NSS_VERSION=3
58 dnl Set the minimum version of toolkit libs used by mozilla
59 dnl ========================================================
60 GLIB_VERSION=1.2.0
61 PERL_VERSION=5.006
62 CAIRO_VERSION=1.10
63 PANGO_VERSION=1.14.0
64 GTK2_VERSION=2.10.0
65 GTK3_VERSION=3.0.0
66 WINDRES_VERSION=2.14.90
67 W32API_VERSION=3.14
68 GNOMEVFS_VERSION=2.0
69 GNOMEUI_VERSION=2.2.0
70 GCONF_VERSION=1.2.1
71 GIO_VERSION=2.20
72 STARTUP_NOTIFICATION_VERSION=0.8
73 DBUS_VERSION=0.60
74 SQLITE_VERSION=3.8.1
76 MSMANIFEST_TOOL=
78 dnl Set various checks
79 dnl ========================================================
80 MISSING_X=
81 AC_PROG_AWK
83 dnl Initialize the Pthread test variables early so they can be
84 dnl  overridden by each platform.
85 dnl ========================================================
86 MOZ_USE_PTHREADS=
87 _PTHREAD_LDFLAGS=""
89 dnl Do not allow objdir == srcdir builds.
90 dnl ==============================================================
91 _topsrcdir=`cd \`dirname $0\`; pwd`
92 _objdir=`pwd`
96 dnl TODO Don't exempt L10N builds once bug 842760 is resolved.
97 if test "$_topsrcdir" = "$_objdir" -a "${with_l10n_base+set}" != set; then
98   echo "  ***"
99   echo "  * Building directly in the main source directory is not allowed."
100   echo "  *"
101   echo "  * To build, you must run configure from a separate directory"
102   echo "  * (referred to as an object directory)."
103   echo "  *"
104   echo "  * If you are building with a mozconfig, you will need to change your"
105   echo "  * mozconfig to point to a different object directory."
106   echo "  ***"
107   exit 1
110 # Check for a couple representative files in the source tree
111 _conflict_files=
112 for file in $_topsrcdir/Makefile $_topsrcdir/config/autoconf.mk; do
113   if test -f $file; then
114     _conflict_files="$_conflict_files $file"
115   fi
116 done
117 if test "$_conflict_files"; then
118   echo "***"
119   echo "*   Your source tree contains these files:"
120   for file in $_conflict_files; do
121     echo "*         $file"
122   done
123   cat 1>&2 <<-EOF
124         *   This indicates that you previously built in the source tree.
125         *   A source tree build can confuse the separate objdir build.
126         *
127         *   To clean up the source tree:
128         *     1. cd $_topsrcdir
129         *     2. gmake distclean
130         ***
131         EOF
132   exit 1
133   break
135 MOZ_BUILD_ROOT=`pwd`
137 MOZ_PYTHON
139 MOZ_DEFAULT_COMPILER
141 COMPILE_ENVIRONMENT=1
142 MOZ_ARG_DISABLE_BOOL(compile-environment,
143 [  --disable-compile-environment
144                           Disable compiler/library checks.],
145     COMPILE_ENVIRONMENT= )
146 AC_SUBST(COMPILE_ENVIRONMENT)
148 MOZ_ARG_WITH_STRING(l10n-base,
149 [  --with-l10n-base=DIR    path to l10n repositories],
150     L10NBASEDIR=$withval)
151 if test -n "$L10NBASEDIR"; then
152     if test "$L10NBASEDIR" = "yes" -o "$L10NBASEDIR" = "no"; then
153         AC_MSG_ERROR([--with-l10n-base must specify a path])
154     elif test -d "$L10NBASEDIR"; then
155         L10NBASEDIR=`cd "$L10NBASEDIR" && pwd`
156     else
157         AC_MSG_ERROR([Invalid value --with-l10n-base, $L10NBASEDIR doesn't exist])
158     fi
160 AC_SUBST(L10NBASEDIR)
162 dnl Check for Perl first -- needed for win32 SDK checks
163 MOZ_PATH_PROGS(PERL, $PERL perl5 perl )
164 if test -z "$PERL" -o "$PERL" = ":"; then
165     AC_MSG_ERROR([perl not found in \$PATH])
168 AC_SUBST(GAIADIR)
169 if test -n "$GAIADIR" ; then
170     AC_DEFINE(PACKAGE_GAIA)
173 MOZ_ARG_WITH_STRING(gonk,
174 [  --with-gonk=DIR
175                location of gonk dir],
176     gonkdir=$withval)
178 MOZ_ARG_WITH_STRING(gonk-toolchain-prefix,
179 [  --with-gonk-toolchain-prefix=DIR
180                           prefix to gonk toolchain commands],
181     gonk_toolchain_prefix=$withval)
183 if test -n "$gonkdir" ; then
184     kernel_name=`uname -s | tr "[[:upper:]]" "[[:lower:]]"`
185     android_source="$gonkdir"
186     ANDROID_SOURCE="$android_source"
187     ANDROID_NDK="${ANDROID_SOURCE}/ndk"
188     dnl Default to ICS
189     ANDROID_VERSION=15
190     if test -n "${PLATFORM_SDK_VERSION}"; then
191         ANDROID_VERSION="${PLATFORM_SDK_VERSION}"
192     fi
194     dnl set up compilers
195     TOOLCHAIN_PREFIX="$gonk_toolchain_prefix"
196     AS="$gonk_toolchain_prefix"as
197     CC="$gonk_toolchain_prefix"gcc
198     CXX="$gonk_toolchain_prefix"g++
199     CPP="$gonk_toolchain_prefix"cpp
200     LD="$gonk_toolchain_prefix"ld
201     AR="$gonk_toolchain_prefix"ar
202     RANLIB="$gonk_toolchain_prefix"ranlib
203     STRIP="$gonk_toolchain_prefix"strip
204     OBJCOPY="$gonk_toolchain_prefix"objcopy
206     if ! test -e "$gonkdir/ndk/sources/cxx-stl/stlport/src/iostream.cpp"; then
207         AC_MSG_ERROR([Couldn't find path to stlport sources in the gonk tree])
208     fi
209     STLPORT_CPPFLAGS="-I$_topsrcdir/build/stlport/stlport -I$gonkdir/ndk/sources/cxx-stl/system/include"
210     STLPORT_LIBS="$_objdir/build/stlport/libstlport_static.a"
212     case "$target_cpu" in
213     arm)
214         ARCH_DIR=arch-arm
215         ;;
216     i?86)
217         ARCH_DIR=arch-x86
218         ;;
219     esac
221     case "$ANDROID_VERSION" in
222     15)
223         GONK_INCLUDES="-I$gonkdir/frameworks/base/opengl/include -I$gonkdir/frameworks/base/native/include -I$gonkdir/frameworks/base/include -I$gonkdir/frameworks/base/services/camera -I$gonkdir/frameworks/base/include/media/stagefright -I$gonkdir/frameworks/base/include/media/stagefright/openmax -I$gonkdir/frameworks/base/media/libstagefright/rtsp -I$gonkdir/frameworks/base/media/libstagefright/include -I$gonkdir/external/dbus -I$gonkdir/external/bluetooth/bluez/lib -I$gonkdir/dalvik/libnativehelper/include/nativehelper"
224         MOZ_B2G_BT=1
225         MOZ_B2G_BT_BLUEZ=1
226         MOZ_NFC=1
227         MOZ_B2G_CAMERA=1
228         MOZ_OMX_DECODER=1
229         AC_SUBST(MOZ_OMX_DECODER)
230         MOZ_RTSP=1
231         ;;
232     17|18)
233         GONK_INCLUDES="-I$gonkdir/frameworks/native/include -I$gonkdir/frameworks/av/include -I$gonkdir/frameworks/av/include/media -I$gonkdir/frameworks/av/include/camera -I$gonkdir/frameworks/native/include/media/openmax -I$gonkdir/frameworks/av/media/libstagefright/include"
234         if test -d "$gonkdir/external/bluetooth/bluez"; then
235           GONK_INCLUDES="$GONK_INCLUDES -I$gonkdir/external/dbus -I$gonkdir/external/bluetooth/bluez/lib"
236             MOZ_B2G_BT=1
237             MOZ_B2G_BT_BLUEZ=1
238         elif test -d "$gonkdir/external/bluetooth/bluedroid"; then
239             MOZ_B2G_BT=1
240             MOZ_B2G_BT_BLUEDROID=1
241         fi
243         MOZ_RTSP=1
244         MOZ_NFC=1
245         MOZ_B2G_CAMERA=1
246         MOZ_OMX_DECODER=1
247         AC_SUBST(MOZ_OMX_DECODER)
248         ;;
249     *)
250         AC_MSG_ERROR([Unsupported platform version: $ANDROID_VERSION])
251         ;;
252     esac
253     CPPFLAGS="-DANDROID -isystem $gonkdir/bionic/libc/$ARCH_DIR/include -isystem $gonkdir/bionic/libc/include/ -isystem $gonkdir/bionic/libc/kernel/common -isystem $gonkdir/bionic/libc/kernel/$ARCH_DIR -isystem $gonkdir/bionic/libm/include -I$gonkdir/system -I$gonkdir/system/core/include -isystem $gonkdir/bionic -I$gonkdir/hardware/libhardware/include -I$gonkdir/external/valgrind/fxos-include $GONK_INCLUDES $CPPFLAGS"
254     CFLAGS="-mandroid -fno-short-enums -fno-exceptions $CFLAGS"
255     CXXFLAGS="-mandroid -fno-short-enums -fno-exceptions -Wno-psabi $CXXFLAGS $STLPORT_CPPFLAGS"
256     dnl Add -llog by default, since we use it all over the place.
257     LIBS="$LIBS -llog"
259     LDFLAGS="-mandroid -L$gonkdir/out/target/product/$GONK_PRODUCT/obj/lib -Wl,-rpath-link=$gonkdir/out/target/product/$GONK_PRODUCT/obj/lib --sysroot=$gonkdir/out/target/product/$GONK_PRODUCT/obj/ $LDFLAGS"
261     dnl prevent cross compile section from using these flags as host flags
262     if test -z "$HOST_CPPFLAGS" ; then
263         HOST_CPPFLAGS=" "
264     fi
265     if test -z "$HOST_CFLAGS" ; then
266         HOST_CFLAGS=" "
267     fi
268     if test -z "$HOST_CXXFLAGS" ; then
269         HOST_CXXFLAGS=" "
270     fi
271     if test -z "$HOST_LDFLAGS" ; then
272         HOST_LDFLAGS=" "
273     fi
275     AC_DEFINE(ANDROID)
276     AC_DEFINE_UNQUOTED(ANDROID_VERSION, $ANDROID_VERSION)
277     AC_SUBST(ANDROID_VERSION)
278     AC_DEFINE(HAVE_SYS_UIO_H)
279     AC_DEFINE(HAVE_PTHREADS)
280     CROSS_COMPILE=1
281     MOZ_CHROME_FILE_FORMAT=omni
282     direct_nspr_config=1
283 else
284     MOZ_ANDROID_NDK
286     case "$target" in
287     *-android*|*-linuxandroid*)
288         if test -z "$ANDROID_PACKAGE_NAME" ; then
289             ANDROID_PACKAGE_NAME='org.mozilla.$(MOZ_APP_NAME)'
290         fi
291         MOZ_CHROME_FILE_FORMAT=omni
292         ZLIB_DIR=yes
293         ;;
294     *-linux*)
295         AC_PATH_PROG(OBJCOPY,objcopy)
296         ;;
297     esac
300 AC_SUBST(ANDROID_SOURCE)
301 AC_SUBST(ANDROID_PACKAGE_NAME)
302 AC_SUBST(OBJCOPY)
304 dnl ========================================================
305 dnl Checks for compilers.
306 dnl ========================================================
307 dnl Set CROSS_COMPILE in the environment when running configure
308 dnl to use the cross-compile setup for now
309 dnl ========================================================
311 dnl AR_FLAGS set here so HOST_AR_FLAGS can be set correctly (see bug 538269)
312 AR_FLAGS='crs $@'
314 if test "$COMPILE_ENVIRONMENT"; then
316 if test -n "$CROSS_COMPILE" -a "$target" != "$host"; then
317     MOZ_CROSS_COMPILER
318 else
319     AC_PROG_CC
320     case "$target" in
321     *-mingw*)
322       # Work around the conftest.exe access problem on Windows
323       sleep 2
324     esac
325     AC_PROG_CXX
326     AC_PROG_RANLIB
327     MOZ_PATH_PROGS(AS, $AS as, $CC)
328     AC_CHECK_PROGS(AR, ar, :)
329     AC_CHECK_PROGS(LD, ld, :)
330     AC_CHECK_PROGS(STRIP, strip, :)
331     AC_CHECK_PROGS(WINDRES, windres, :)
332     if test -z "$HOST_CC"; then
333         HOST_CC="$CC"
334     fi
335     if test -z "$HOST_CFLAGS"; then
336         HOST_CFLAGS="$CFLAGS"
337     fi
338     if test -z "$HOST_CXX"; then
339         HOST_CXX="$CXX"
340     fi
341     if test -z "$HOST_CXXFLAGS"; then
342         HOST_CXXFLAGS="$CXXFLAGS"
343     fi
344     if test -z "$HOST_LDFLAGS"; then
345         HOST_LDFLAGS="$LDFLAGS"
346     fi
347     if test -z "$HOST_RANLIB"; then
348         HOST_RANLIB="$RANLIB"
349     fi
350     if test -z "$HOST_AR"; then
351         HOST_AR="$AR"
352     fi
353     if test -z "$HOST_AR_FLAGS"; then
354         HOST_AR_FLAGS="$AR_FLAGS"
355     fi
358 if test -n "$MOZ_WINCONSOLE"; then
359     AC_DEFINE(MOZ_WINCONSOLE)
362 MOZ_TOOL_VARIABLES
364 if test -n "$GNU_CC" -a -z "$CLANG_CC" ; then
365     if test "$GCC_MAJOR_VERSION" -eq 4 -a "$GCC_MINOR_VERSION" -lt 4 ||
366        test "$GCC_MAJOR_VERSION" -lt 4; then
367         AC_MSG_ERROR([Only GCC 4.4 or newer supported])
368     fi
371 dnl ========================================================
372 dnl Special win32 checks
373 dnl ========================================================
375 MOZ_ARG_ENABLE_BOOL(metro,
376 [  --enable-metro           Enable Windows Metro build targets],
377     MOZ_METRO=1,
378     MOZ_METRO=)
379 if test -n "$MOZ_METRO"; then
380     AC_DEFINE(MOZ_METRO)
381     # Target the Windows 8 Kit
382     WINSDK_TARGETVER=602
383     WINVER=502
384     # toolkit/library/makefile.in needs these, see nsDllMain.
385     CRTDLLVERSION=110
386     CRTEXPDLLVERSION=1-1-0
387 else
388     # Target the Windows 7 SDK by default
389     WINSDK_TARGETVER=601
390     WINVER=502
393 AC_SUBST(CRTDLLVERSION)
394 AC_SUBST(CRTEXPDLLVERSION)
396 MOZ_ARG_WITH_STRING(windows-version,
397 [  --with-windows-version=WINSDK_TARGETVER
398                           Windows SDK version to target. Lowest version
399                           currently allowed is 601 (Win7), highest is 602 (Win8)],
400   WINSDK_TARGETVER=$withval)
402 # Currently only two sdk versions allowed, 601 and 602
403 case "$WINSDK_TARGETVER" in
404 601|602)
405     MOZ_WINSDK_TARGETVER=0${WINSDK_TARGETVER}0000
406     ;;
409     AC_MSG_ERROR([Invalid value for --with-windows-version ($WINSDK_TARGETVER)]);
410     ;;
411 esac
413 case "$target" in
414 *-mingw*)
415     if test "$GCC" != "yes" -a -z "$CLANG_CC"; then
416         # Check to see if we are really running in a msvc environemnt
417         _WIN32_MSVC=1
418         AC_CHECK_PROGS(MIDL, midl)
420         # Make sure compilers are valid
421         CFLAGS="$CFLAGS -TC -nologo"
422         CXXFLAGS="$CXXFLAGS -TP -nologo"
423         AC_LANG_SAVE
424         AC_LANG_C
425         AC_TRY_COMPILE([#include <stdio.h>],
426             [ printf("Hello World\n"); ],,
427             AC_MSG_ERROR([\$(CC) test failed.  You must have MS VC++ in your path to build.]) )
429         AC_LANG_CPLUSPLUS
430         AC_TRY_COMPILE([#include <new.h>],
431             [ unsigned *test = new unsigned(42); ],,
432             AC_MSG_ERROR([\$(CXX) test failed.  You must have MS VC++ in your path to build.]) )
433         AC_LANG_RESTORE
435         changequote(,)
436         _MSVC_VER_FILTER='s|.*[^!-~]([0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?).*|\1|p'
437         changequote([,])
439         # Determine compiler version
440         CC_VERSION=`"${CC}" -v 2>&1 | sed -nre "$_MSVC_VER_FILTER"`
441         _CC_MAJOR_VERSION=`echo ${CC_VERSION} | $AWK -F\. '{ print $1 }'`
442         _CC_MINOR_VERSION=`echo ${CC_VERSION} | $AWK -F\. '{ print $2 }'`
443         _CC_RELEASE=`echo ${CC_VERSION} | $AWK -F\. '{ print $3 }'`
444         _CC_BUILD=`echo ${CC_VERSION} | $AWK -F\. '{ print $4 }'`
445         _MSC_VER=${_CC_MAJOR_VERSION}${_CC_MINOR_VERSION}
447         CXX_VERSION=`"${CXX}" -v 2>&1 | sed -nre "$_MSVC_VER_FILTER"`
448         _CXX_MAJOR_VERSION=`echo ${CXX_VERSION} | $AWK -F\. '{ print $1 }'`
450         if test "$_CC_MAJOR_VERSION" != "$_CXX_MAJOR_VERSION"; then
451             AC_MSG_ERROR([The major versions of \$CC and \$CXX do not match.])
452         fi
454         AC_DEFINE(_CRT_SECURE_NO_WARNINGS)
455         AC_DEFINE(_CRT_NONSTDC_NO_WARNINGS)
457         if test "$_CC_MAJOR_VERSION" = "16"; then
458             _CC_SUITE=10
459             _MSVS_VERSION=2010
460         elif test "$_CC_MAJOR_VERSION" = "17"; then
461             _CC_SUITE=11
462             _MSVS_VERSION=2012
463         elif test "$_CC_MAJOR_VERSION" = "18"; then
464             _CC_SUITE=12
465             _MSVS_VERSION=2013
466         else
467             AC_MSG_ERROR([This version ($CC_VERSION) of the MSVC compiler is unsupported. See https://developer.mozilla.org/en/Windows_Build_Prerequisites.])
468         fi
470         AC_DEFINE(HAVE_SEH_EXCEPTIONS)
472         if test -n "$WIN32_REDIST_DIR"; then
473           if test ! -d "$WIN32_REDIST_DIR"; then
474             AC_MSG_ERROR([Invalid Win32 Redist directory: ${WIN32_REDIST_DIR}])
475           fi
476           WIN32_REDIST_DIR=`cd "$WIN32_REDIST_DIR" && pwd`
477         fi
479         dnl Confirm we have the pri tools on win8 builds
480         if test -n "$MOZ_METRO"; then
481           AC_MSG_CHECKING([for makepri])
482           AC_CHECK_PROGS(MAKEPRI, makepri, "")
483           if test -z "MAKEPRI" ; then
484               AC_MSG_ERROR([makepri.exe is required for generating metro browser install components. It should be in the Win8 SDK.])
485           fi
486           AC_SUBST(MAKEPRI)
487         fi
489         dnl Ensure that mt.exe is 'Microsoft (R) Manifest Tool',
490         dnl not something else like "magnetic tape manipulation utility".
491         MSMT_TOOL=`mt 2>&1|grep 'Microsoft (R) Manifest Tool'`
492         if test -z "$MSMT_TOOL"; then
493           AC_MSG_ERROR([Microsoft (R) Manifest Tool must be in your \$PATH.])
494         fi
496         changequote(,)
497         _MSMT_VER_FILTER='s|.*[^!-~]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*|\1|p'
498         changequote([,])
499         MSMANIFEST_TOOL_VERSION=`echo ${MSMT_TOOL}|sed -ne "$_MSMT_VER_FILTER"`
500         if test -z "$MSMANIFEST_TOOL_VERSION"; then
501           AC_MSG_WARN([Unknown version of the Microsoft (R) Manifest Tool.])
502         fi
504         MSMANIFEST_TOOL=1
505         unset MSMT_TOOL
507         # Check linker version
508         _LD_FULL_VERSION=`"${LD}" -v 2>&1 | sed -nre "$_MSVC_VER_FILTER"`
509         _LD_MAJOR_VERSION=`echo ${_LD_FULL_VERSION} | $AWK -F\. '{ print $1 }'`
510         if test "$_LD_MAJOR_VERSION" != "$_CC_SUITE"; then
511             AC_MSG_ERROR([The linker major version, $_LD_FULL_VERSION,  does not match the compiler suite version, $_CC_SUITE.])
512         fi
514         INCREMENTAL_LINKER=1
516         # Set midl environment
517         case "$target" in
518         i*86-*)
519             MIDL_FLAGS="${MIDL_FLAGS} -env win32"
520             ;;
521         x86_64-*)
522             MIDL_FLAGS="${MIDL_FLAGS} -env x64"
523             ;;
524         esac
526         unset _MSVC_VER_FILTER
528         AC_CACHE_CHECK(for std::_Throw, ac_cv_have_std__Throw,
529             [
530                 AC_LANG_SAVE
531                 AC_LANG_CPLUSPLUS
532                 _SAVE_CXXFLAGS="$CXXFLAGS"
533                 CXXFLAGS="${CXXFLAGS} -D_HAS_EXCEPTIONS=0"
534                 AC_TRY_COMPILE([#include <exception>],
535                             [std::_Throw(std::exception()); return 0;],
536                             ac_cv_have_std__Throw="yes",
537                             ac_cv_have_std__Throw="no")
538                 CXXFLAGS="$_SAVE_CXXFLAGS"
539                 AC_LANG_RESTORE
540             ])
542         if test "$ac_cv_have_std__Throw" = "yes"; then
543             AC_CACHE_CHECK(for |class __declspec(dllimport) exception| bug,
544                            ac_cv_have_dllimport_exception_bug,
545                 [
546                     AC_LANG_SAVE
547                     AC_LANG_CPLUSPLUS
548                     _SAVE_CXXFLAGS="$CXXFLAGS"
549                     CXXFLAGS="${CXXFLAGS} -D_HAS_EXCEPTIONS=0"
550                     AC_TRY_LINK([#include <vector>],
551                                 [std::vector<int> v; return v.at(1);],
552                                 ac_cv_have_dllimport_exception_bug="no",
553                                 ac_cv_have_dllimport_exception_bug="yes")
554                     CXXFLAGS="$_SAVE_CXXFLAGS"
555                     AC_LANG_RESTORE
556                 ])
557             if test "$ac_cv_have_dllimport_exception_bug" = "no"; then
558                 WRAP_STL_INCLUDES=1
559                 MOZ_MSVC_STL_WRAP__Throw=1
560                 AC_DEFINE(MOZ_MSVC_STL_WRAP__Throw)
561             fi
562         else
563             AC_CACHE_CHECK(for overridable _RAISE,
564                            ac_cv_have__RAISE,
565                 [
566                     AC_LANG_SAVE
567                     AC_LANG_CPLUSPLUS
568                     _SAVE_CXXFLAGS="$CXXFLAGS"
569                     CXXFLAGS="${CXXFLAGS} -D_HAS_EXCEPTIONS=0"
570                     AC_TRY_COMPILE([#include <xstddef>
571                                     #undef _RAISE
572                                     #define _RAISE(x) externallyDefinedFunction((x).what())
573                                     #include <vector>
574                                    ],
575                                    [std::vector<int> v; return v.at(1);],
576                                    ac_cv_have__RAISE="no",
577                                    ac_cv_have__RAISE="yes")
578                     CXXFLAGS="$_SAVE_CXXFLAGS"
579                     AC_LANG_RESTORE
580                 ])
581             if test "$ac_cv_have__RAISE" = "yes"; then
582                 WRAP_STL_INCLUDES=1
583                 MOZ_MSVC_STL_WRAP__RAISE=1
584                 AC_DEFINE(MOZ_MSVC_STL_WRAP__RAISE)
585             else
586                 AC_MSG_ERROR([Gecko exception wrapping doesn't understand your your MSVC/SDK.  Please file a bug describing this error and your build configuration.])
587             fi
588         fi
590         if test "$WRAP_STL_INCLUDES" = "1"; then
591             STL_FLAGS='-D_HAS_EXCEPTIONS=0 -I$(DIST)/stl_wrappers'
592         fi
593     elif test -z "$CLANG_CC"; then
594         # Check w32api version
595         _W32API_MAJOR_VERSION=`echo $W32API_VERSION | $AWK -F\. '{ print $1 }'`
596         _W32API_MINOR_VERSION=`echo $W32API_VERSION | $AWK -F\. '{ print $2 }'`
597         AC_MSG_CHECKING([for w32api version >= $W32API_VERSION])
598         AC_TRY_COMPILE([#include <w32api.h>],
599             #if (__W32API_MAJOR_VERSION < $_W32API_MAJOR_VERSION) || \
600                 (__W32API_MAJOR_VERSION == $_W32API_MAJOR_VERSION && \
601                  __W32API_MINOR_VERSION < $_W32API_MINOR_VERSION)
602                 #error "test failed."
603             #endif
604             , [ res=yes ], [ res=no ])
605         AC_MSG_RESULT([$res])
606         if test "$res" != "yes"; then
607             AC_MSG_ERROR([w32api version $W32API_VERSION or higher required.])
608         fi
609         # Check windres version
610         AC_MSG_CHECKING([for windres version >= $WINDRES_VERSION])
611         _WINDRES_VERSION=`${WINDRES} --version 2>&1 | grep -i windres 2>/dev/null | $AWK '{ print $3 }'`
612         AC_MSG_RESULT([$_WINDRES_VERSION])
613         _WINDRES_MAJOR_VERSION=`echo $_WINDRES_VERSION | $AWK -F\. '{ print $1 }'`
614         _WINDRES_MINOR_VERSION=`echo $_WINDRES_VERSION | $AWK -F\. '{ print $2 }'`
615         _WINDRES_RELEASE_VERSION=`echo $_WINDRES_VERSION | $AWK -F\. '{ print $3 }'`
616         WINDRES_MAJOR_VERSION=`echo $WINDRES_VERSION | $AWK -F\. '{ print $1 }'`
617         WINDRES_MINOR_VERSION=`echo $WINDRES_VERSION | $AWK -F\. '{ print $2 }'`
618         WINDRES_RELEASE_VERSION=`echo $WINDRES_VERSION | $AWK -F\. '{ print $3 }'`
619         if test "$_WINDRES_MAJOR_VERSION" -lt "$WINDRES_MAJOR_VERSION" -o \
620                 "$_WINDRES_MAJOR_VERSION" -eq "$WINDRES_MAJOR_VERSION" -a \
621                 "$_WINDRES_MINOR_VERSION" -lt "$WINDRES_MINOR_VERSION" -o \
622                 "$_WINDRES_MAJOR_VERSION" -eq "$WINDRES_MAJOR_VERSION" -a \
623                 "$_WINDRES_MINOR_VERSION" -eq "$WINDRES_MINOR_VERSION" -a \
624                 "$_WINDRES_RELEASE_VERSION" -lt "$WINDRES_RELEASE_VERSION"
625         then
626             AC_MSG_ERROR([windres version $WINDRES_VERSION or higher is required to build.])
627         fi
629         AC_CHECK_PROGS(MIDL, $target-widl widl)
630         if test -n "$MIDL"; then
631             case "$target" in
632             i*86-*)
633                 MIDL_FLAGS="$MIDL_FLAGS --win32 -m32"
634                 ;;
635             x86_64-*)
636                 MIDL_FLAGS="$MIDL_FLAGS --win64 -m64"
637                 ;;
638             esac
639         fi
641         MOZ_WINSDK_MAXVER=0x06020000
642     fi # !GNU_CC
644     # If MSVC or clang
645     if test "$GCC" != "yes" -o -n "$CLANG_CC" ; then
646         MOZ_FIND_WINSDK_VERSION
647     fi
649     AC_DEFINE_UNQUOTED(WINVER,0x$WINVER)
650     AC_DEFINE_UNQUOTED(_WIN32_WINNT,0x$WINVER)
651     # Require OS features provided by IE 6.0 SP2 (XP SP2)
652     AC_DEFINE_UNQUOTED(_WIN32_IE,0x0603)
654     # If the maximum version supported by this SDK is lower than the target
655     # version, error out
656     AC_MSG_CHECKING([for Windows SDK being recent enough])
657     if $PERL -e "exit(0x$MOZ_WINSDK_TARGETVER > $MOZ_WINSDK_MAXVER)"; then
658         AC_MSG_RESULT("yes")
659     else
660         AC_MSG_RESULT("no")
661         AC_MSG_ERROR([You are targeting Windows version 0x$MOZ_WINSDK_TARGETVER, but your SDK only supports up to version $MOZ_WINSDK_MAXVER. Install and use an updated SDK, or target a lower version using --with-windows-version. Alternatively, try running the Windows SDK Configuration Tool and selecting a newer SDK. See https://developer.mozilla.org/En/Windows_SDK_versions for more details on fixing this.])
662     fi
663     
664     AC_DEFINE_UNQUOTED(MOZ_WINSDK_TARGETVER,0x$MOZ_WINSDK_TARGETVER)
665     # Definitions matching sdkddkver.h
666     AC_DEFINE_UNQUOTED(MOZ_NTDDI_WIN7, 0x06010000)
667     AC_DEFINE_UNQUOTED(MOZ_WINSDK_MAXVER,$MOZ_WINSDK_MAXVER)
668     AC_SUBST(MOZ_WINSDK_MAXVER)
669     ;;
670 esac
672 AC_PROG_CPP
673 AC_PROG_CXXCPP
675 if test -n "$_WIN32_MSVC"; then
676     SKIP_PATH_CHECKS=1
677     SKIP_COMPILER_CHECKS=1
678     SKIP_LIBRARY_CHECKS=1
680     # Since we're skipping compiler and library checks, hard-code
681     # some facts here.
682     AC_DEFINE(HAVE_IO_H)
683     AC_DEFINE(HAVE_SETBUF)
684     AC_DEFINE(HAVE_ISATTY)
687 fi # COMPILE_ENVIRONMENT
689 AC_SUBST(MIDL_FLAGS)
690 AC_SUBST(_MSC_VER)
692 AC_SUBST(GNU_AS)
693 AC_SUBST(GNU_LD)
694 AC_SUBST(GNU_CC)
695 AC_SUBST(GNU_CXX)
696 AC_SUBST(INTEL_CC)
697 AC_SUBST(INTEL_CXX)
699 AC_SUBST(STL_FLAGS)
700 AC_SUBST(WRAP_STL_INCLUDES)
701 AC_SUBST(MOZ_MSVC_STL_WRAP__Throw)
702 AC_SUBST(MOZ_MSVC_STL_WRAP__RAISE)
704 dnl ========================================================
705 dnl Checks for programs.
706 dnl ========================================================
707 AC_PROG_INSTALL
708 AC_PROG_LN_S
710 if test -z "$TINDERBOX_SKIP_PERL_VERSION_CHECK"; then
711 AC_MSG_CHECKING([for minimum required perl version >= $PERL_VERSION])
712 _perl_version=`PERL_VERSION=$PERL_VERSION $PERL -e 'print "$]"; if ($] >= $ENV{PERL_VERSION}) { exit(0); } else { exit(1); }' 2>&5`
713 _perl_res=$?
714 AC_MSG_RESULT([$_perl_version])
716 if test "$_perl_res" != 0; then
717     AC_MSG_ERROR([Perl $PERL_VERSION or higher is required.])
721 AC_MSG_CHECKING([for full perl installation])
722 _perl_archlib=`$PERL -e 'use Config; if ( -d $Config{archlib} ) { exit(0); } else { exit(1); }' 2>&5`
723 _perl_res=$?
724 if test "$_perl_res" != 0; then
725     AC_MSG_RESULT([no])
726     AC_MSG_ERROR([Cannot find Config.pm or \$Config{archlib}.  A full perl installation is required.])
727 else
728     AC_MSG_RESULT([yes])
731 if test -z "$COMPILE_ENVIRONMENT"; then
732     NSINSTALL_BIN='$(PYTHON) $(topsrcdir)/config/nsinstall.py'
734 AC_SUBST(NSINSTALL_BIN)
736 MOZ_PATH_PROG(DOXYGEN, doxygen, :)
737 MOZ_PATH_PROG(AUTOCONF, autoconf, :)
738 MOZ_PATH_PROGS(UNZIP, unzip)
739 if test -z "$UNZIP" -o "$UNZIP" = ":"; then
740     AC_MSG_ERROR([unzip not found in \$PATH])
742 MOZ_PATH_PROGS(ZIP, zip)
743 if test -z "$ZIP" -o "$ZIP" = ":"; then
744     AC_MSG_ERROR([zip not found in \$PATH])
746 MOZ_PATH_PROG(XARGS, xargs)
747 if test -z "$XARGS" -o "$XARGS" = ":"; then
748     AC_MSG_ERROR([xargs not found in \$PATH .])
751 MOZ_PATH_PROG(RPMBUILD, rpmbuild, :)
752 AC_SUBST(RPMBUILD)
754 if test "$COMPILE_ENVIRONMENT"; then
756 dnl ========================================================
757 dnl = Mac OS X toolchain support
758 dnl ========================================================
760 dnl The universal machinery sets UNIVERSAL_BINARY to inform packager.mk
761 dnl that a universal binary is being produced and MOZ_CAN_RUN_PROGRAMS
762 dnl when we can run target binaries.
763 AC_SUBST(UNIVERSAL_BINARY)
764 AC_SUBST(MOZ_CAN_RUN_PROGRAMS)
766 MOZ_ARG_WITH_STRING(unify-dist,
767 [  --with-unify-dist=dir   Location of the dist directory to unify with at packaging time (Mac OS X universal build only)],
768     UNIFY_DIST=$withval)
769 if test -n "$UNIVERSAL_BINARY"; then
770     if test -z "$UNIFY_DIST"; then
771         AC_MSG_ERROR([You need to provide the --with-unify-dist=dir argument when performing a universal build])
772     fi
773     case "$UNIFY_DIST" in
774     /*)
775         ;;
776     *)
777         UNIFY_DIST="${MOZ_BUILD_ROOT}/${UNIFY_DIST}"
778         ;;
779     esac
781 AC_SUBST(UNIFY_DIST)
783 dnl ========================================================
784 dnl Check for MacOS deployment target version
785 dnl ========================================================
787 MOZ_ARG_ENABLE_STRING(macos-target,
788                       [  --enable-macos-target=VER (default=10.6)
789                           Set the minimum MacOS version needed at runtime],
790                       [_MACOSX_DEPLOYMENT_TARGET=$enableval])
792 case "$target" in
793 *-darwin*)
794     if test -n "$_MACOSX_DEPLOYMENT_TARGET" ; then
795         dnl Use the specified value
796         export MACOSX_DEPLOYMENT_TARGET=$_MACOSX_DEPLOYMENT_TARGET
797     else
798         dnl No value specified on the command line or in the environment,
799         dnl use architecture minimum.
800         export MACOSX_DEPLOYMENT_TARGET=10.6
801     fi
802     ;;
803 esac
805 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
807 dnl ========================================================
808 dnl = Mac OS X SDK support
809 dnl ========================================================
810 MACOS_SDK_DIR=
811 NEXT_ROOT=
812 MOZ_ARG_WITH_STRING(macos-sdk,
813 [  --with-macos-sdk=dir    Location of platform SDK to use (Mac OS X only)],
814     MACOS_SDK_DIR=$withval)
816 MACOS_PRIVATE_FRAMEWORKS_DIR_DEFAULTED=
817 MOZ_ARG_WITH_STRING(macos-private-frameworks,
818 [  --with-macos-private-frameworks=dir    Location of private frameworks to use (Mac OS X only)],
819     MACOS_PRIVATE_FRAMEWORKS_DIR=$withval,
820     MACOS_PRIVATE_FRAMEWORKS_DIR=/System/Library/PrivateFrameworks
821     MACOS_PRIVATE_FRAMEWORKS_DEFAULTED=1)
823 if test -z "${MACOS_PRIVATE_FRAMEWORKS_DEFAULTED}"; then
824   if test -z "$CROSS_COMPILE"; then
825     AC_MSG_WARN([You should only be using --with-macos-private-frameworks when cross-compiling.])
826   fi
827   if test ! -d "$MACOS_PRIVATE_FRAMEWORKS_DIR"; then
828     AC_MSG_ERROR([PrivateFrameworks directory not found.])
829   fi
832 dnl MACOS_SDK_DIR will be set to the SDK location whenever one is in use.
833 dnl NEXT_ROOT will be set and exported only if it's needed.
834 AC_SUBST(MACOS_SDK_DIR)
835 AC_SUBST(MACOS_PRIVATE_FRAMEWORKS_DIR)
836 AC_SUBST(NEXT_ROOT)
838 if test "$MACOS_SDK_DIR"; then
839   dnl Sync this section with the ones in NSPR and NSS.
840   dnl Changes to the cross environment here need to be accounted for in
841   dnl the libIDL checks (below) and xpidl build.
843   if test ! -d "$MACOS_SDK_DIR"; then
844     AC_MSG_ERROR([SDK not found.  When using --with-macos-sdk, you must
845 specify a valid SDK.  SDKs are installed when the optional cross-development
846 tools are selected during the Xcode/Developer Tools installation.])
847   fi
849   CFLAGS="$CFLAGS -isysroot ${MACOS_SDK_DIR}"
850   CXXFLAGS="$CXXFLAGS -isysroot ${MACOS_SDK_DIR}"
852   dnl CPP/CXXCPP needs to be set for MOZ_CHECK_HEADER.
853   CPP="$CPP -isysroot ${MACOS_SDK_DIR}"
854   CXXCPP="$CXXCPP -isysroot ${MACOS_SDK_DIR}"
856   AC_LANG_SAVE
857   AC_MSG_CHECKING([for valid compiler/Mac OS X SDK combination])
858   AC_LANG_CPLUSPLUS
859   AC_TRY_COMPILE([#include <new>],[],
860    result=yes,
861    result=no)
862   AC_LANG_RESTORE
863   AC_MSG_RESULT($result)
865   if test "$result" = "no" ; then
866     AC_MSG_ERROR([The selected compiler and Mac OS X SDK are incompatible.])
867   fi
870 fi # COMPILE_ENVIRONMENT
872 AC_MSG_CHECKING([compiler version])
873 # Just print it so it shows up in the logs.
874 cc_version=$($CC --version)
875 AC_MSG_RESULT([$cc_version])
877 if test -n "$MAKE"; then
878   if test `echo $MAKE | grep -c make.py` != 1; then
879      NOT_PYMAKE=$MAKE
880   fi
883 case "$host_os" in
884 mingw*)
885     MOZ_PATH_PROGS(GMAKE, $GMAKE $NOT_PYMAKE make gmake, :)
886     ;;
888     MOZ_PATH_PROGS(GMAKE, $GMAKE $NOT_PYMAKE gmake make, :)
889     ;;
890 esac
891 if test "$GMAKE" = ":"; then
892    AC_MSG_ERROR([GNU make not found])
894 AC_SUBST(GMAKE)
896 if test -z "$MAKE"; then
897   MAKE=$GMAKE
900 if test "$COMPILE_ENVIRONMENT"; then
902 AC_PATH_XTRA
904 XCFLAGS="$X_CFLAGS"
906 fi # COMPILE_ENVIRONMENT
908 dnl ========================================================
909 dnl set the defaults first
910 dnl ========================================================
911 AS_BIN=$AS
912 AR_LIST='$(AR) t'
913 AR_EXTRACT='$(AR) x'
914 AR_DELETE='$(AR) d'
915 AS='$(CC)'
916 AS_DASH_C_FLAG='-c'
917 DLL_PREFIX=lib
918 LIB_PREFIX=lib
919 DLL_SUFFIX=.so
920 OBJ_SUFFIX=o
921 LIB_SUFFIX=a
922 ASM_SUFFIX=s
923 IMPORT_LIB_SUFFIX=
924 TARGET_MD_ARCH=unix
925 DIRENT_INO=d_ino
926 MOZ_USER_DIR=".mozilla"
928 MOZ_JPEG_CFLAGS=
929 MOZ_JPEG_LIBS='$(call EXPAND_LIBNAME_PATH,mozjpeg,$(DEPTH)/media/libjpeg)'
930 MOZ_BZ2_CFLAGS=
931 MOZ_BZ2_LIBS='$(call EXPAND_LIBNAME_PATH,bz2,$(DEPTH)/modules/libbz2/src)'
932 MOZ_PNG_CFLAGS=
933 MOZ_PNG_LIBS='$(call EXPAND_LIBNAME_PATH,mozpng,$(DEPTH)/media/libpng)'
935 MOZ_JS_STATIC_LIBS='$(call EXPAND_LIBNAME_PATH,js_static,$(LIBXUL_DIST)/lib)'
936 MOZ_JS_SHARED_LIBS='$(call EXPAND_LIBNAME_PATH,mozjs,$(LIBXUL_DIST)/lib)'
937 MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib'
938 XPCOM_FROZEN_LDOPTS='$(call EXPAND_LIBNAME_PATH,xul mozalloc,$(LIBXUL_DIST)/bin)'
939 LIBXUL_LIBS='$(XPCOM_FROZEN_LDOPTS)'
940 XPCOM_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) $(XPCOM_FROZEN_LDOPTS)'
941 XPCOM_STANDALONE_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue.$(LIB_SUFFIX)'
943 # These are specially defined on Windows only
944 case "$target" in
945 *-mingw*)
946   XPCOM_STATICRUNTIME_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_staticruntime_s.$(LIB_SUFFIX) $(XPCOM_FROZEN_LDOPTS)'
947   XPCOM_STANDALONE_STATICRUNTIME_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_staticruntime.$(LIB_SUFFIX)'
948   ;;
950   XPCOM_STATICRUNTIME_GLUE_LDOPTS=$XPCOM_GLUE_LDOPTS
951   XPCOM_STANDALONE_STATICRUNTIME_GLUE_LDOPTS=$XPCOM_STANDALONE_GLUE_LDOPTS
952   ;;
953 esac
955 MOZ_FS_LAYOUT=unix
957 MOZ_COMPONENT_NSPR_LIBS='-L$(LIBXUL_DIST)/bin $(NSPR_LIBS)'
959 USE_DEPENDENT_LIBS=1
961 _PLATFORM_DEFAULT_TOOLKIT=cairo-gtk2
963 if test -n "$CROSS_COMPILE"; then
964     OS_TARGET="${target_os}"
965     OS_ARCH=`echo $target_os | sed -e 's|/|_|g'`
966     OS_RELEASE=
967     case "${target_os}" in
968         linux*)       OS_ARCH=Linux OS_TARGET=Linux ;;
969         kfreebsd*-gnu) OS_ARCH=GNU_kFreeBSD OS_TARGET=GNU_kFreeBSD ;;
970         gnu*)         OS_ARCH=GNU ;;
971         solaris*)     OS_ARCH=SunOS OS_RELEASE=5 ;;
972         mingw*)       OS_ARCH=WINNT OS_TARGET=WINNT ;;
973         darwin*)      OS_ARCH=Darwin OS_TARGET=Darwin ;;
974     esac
975     case "${target}" in
976         *-android*|*-linuxandroid*) OS_ARCH=Linux OS_TARGET=Android ;;
977     esac
978 else
979     OS_TARGET=`uname -s`
980     OS_ARCH=`uname -s | sed -e 's|/|_|g'`
981     OS_RELEASE=`uname -r`
984 # Before this used `uname -m` when not cross compiling
985 # but that breaks when you have a 64 bit kernel with a 32 bit userland.
986 OS_TEST="${target_cpu}"
988 HOST_OS_ARCH=`echo $host_os | sed -e 's|/|_|g'`
990 #######################################################################
991 # Master "Core Components" macros for getting the OS target           #
992 #######################################################################
995 # If OS_TARGET is not specified, it defaults to $(OS_ARCH), i.e., no
996 # cross-compilation.
1000 # Define and override various archtecture-specific variables, including
1001 # HOST_OS_ARCH
1002 # OS_ARCH
1003 # OS_TEST
1004 # OS_TARGET
1005 # OS_RELEASE
1006 # OS_MINOR_RELEASE
1009 case "$HOST_OS_ARCH" in
1010 mingw*)
1011     HOST_OS_ARCH=WINNT
1012     ;;
1013 darwin*)
1014     HOST_OS_ARCH=Darwin
1015     ;;
1016 linux*)
1017     HOST_OS_ARCH=Linux
1018     ;;
1019 solaris*)
1020     HOST_OS_ARCH=SunOS
1021     SOLARIS_SUNPRO_CC=
1022     SOLARIS_SUNPRO_CXX=
1023     if test -z "$GNU_CC"; then
1024         if test "`$CC -V 2>&1 | egrep -c 'Sun.*C '`" != "0"; then
1025             SOLARIS_SUNPRO_CC=1
1026        fi
1027     fi
1029     if test -z "$GNU_CXX"; then
1030        if test "`$CXX -V 2>&1 | egrep -c 'Sun.*C\+\+ '`" != "0"; then
1031            SOLARIS_SUNPRO_CXX=1
1032        fi
1033     fi
1034     AC_SUBST(SOLARIS_SUNPRO_CC)
1035     AC_SUBST(SOLARIS_SUNPRO_CXX)
1036     ;;
1037 OS_2)
1038     HOST_OS_ARCH=OS2
1039     ;;
1040 esac
1042 case "$OS_ARCH" in
1043 WINNT)
1044     if test -z "$CROSS_COMPILE" ; then
1045         OS_TEST=`uname -p`
1046     fi
1047     ;;
1048 Windows_NT)
1050 # If uname -s returns "Windows_NT", we assume that we are using
1051 # the uname.exe in MKS toolkit.
1053 # The -r option of MKS uname only returns the major version number.
1054 # So we need to use its -v option to get the minor version number.
1055 # Moreover, it doesn't have the -p option, so we need to use uname -m.
1057     OS_ARCH=WINNT
1058     OS_TARGET=WINNT
1059     OS_MINOR_RELEASE=`uname -v`
1060     if test "$OS_MINOR_RELEASE" = "00"; then
1061         OS_MINOR_RELEASE=0
1062     fi
1063     OS_RELEASE="${OS_RELEASE}.${OS_MINOR_RELEASE}"
1064     ;;
1065 MINGW*_NT*)
1067 # If uname -s returns MINGW32_NT-5.1, we assume that we are using
1068 # the uname.exe in the MSYS tools.
1070     OS_RELEASE=`expr $OS_ARCH : '.*NT-\(.*\)'`
1071     OS_ARCH=WINNT
1072     OS_TARGET=WINNT
1073     ;;
1074 AIX)
1075     OS_RELEASE=`uname -v`.`uname -r`
1076     OS_TEST=${target_cpu}
1077     ;;
1078 OS_2)
1079     OS_ARCH=OS2
1080     OS_TARGET=OS2
1081     OS_RELEASE=`uname -v`
1082     ;;
1083 Darwin)
1084     case "${target_cpu}" in
1085     powerpc*)
1086         OS_TEST=ppc
1087         ;;
1088     i*86*)
1089         OS_TEST=i386
1090         ;;
1091     x86_64)
1092         OS_TEST=x86_64
1093         ;;
1094     *)
1095         if test -z "$CROSS_COMPILE" ; then
1096             OS_TEST=`uname -p`
1097         fi
1098         ;;
1099     esac
1100     ;;
1101 esac
1103 # Only set CPU_ARCH if we recognize the value of OS_TEST
1105 case "$OS_TEST" in
1106 *86 | i86pc)
1107     CPU_ARCH=x86
1108     ;;
1110 powerpc64 | ppc64)
1111     CPU_ARCH=ppc64
1112     ;;
1114 powerpc | ppc | rs6000)
1115     CPU_ARCH=ppc
1116     ;;
1118 Alpha | alpha | ALPHA)
1119     CPU_ARCH=Alpha
1120     ;;
1122 s390)
1123     CPU_ARCH=s390
1124     ;;
1126 s390x)
1127     CPU_ARCH=s390x
1128     ;;
1130 hppa* | parisc)
1131     CPU_ARCH=hppa
1132     ;;
1134 sun4u | sparc*)
1135     CPU_ARCH=sparc
1136     ;;
1138 x86_64 | ia64)
1139     CPU_ARCH="$OS_TEST"
1140     ;;
1142 arm*)
1143     CPU_ARCH=arm
1144     ;;
1146 mips|mipsel)
1147     CPU_ARCH="mips"
1148     ;;
1149 esac
1151 if test -z "$OS_TARGET"; then
1152     OS_TARGET=$OS_ARCH
1154 OS_CONFIG="${OS_TARGET}${OS_RELEASE}"
1156 dnl Set INTEL_ARCHITECTURE if we're compiling for x86-32 or x86-64.
1157 dnl ===============================================================
1158 INTEL_ARCHITECTURE=
1159 case "$OS_TEST" in
1160     x86_64|i?86)
1161       INTEL_ARCHITECTURE=1
1162 esac
1164 dnl Configure platform-specific CPU architecture compiler options.
1165 dnl ==============================================================
1166 MOZ_ARCH_OPTS
1168 dnl =================================================================
1169 dnl Set up and test static assertion macros used to avoid AC_TRY_RUN,
1170 dnl which is bad when cross compiling.
1171 dnl =================================================================
1172 if test "$COMPILE_ENVIRONMENT"; then
1173 configure_static_assert_macros='
1174 #define CONFIGURE_STATIC_ASSERT(condition) CONFIGURE_STATIC_ASSERT_IMPL(condition, __LINE__)
1175 #define CONFIGURE_STATIC_ASSERT_IMPL(condition, line) CONFIGURE_STATIC_ASSERT_IMPL2(condition, line)
1176 #define CONFIGURE_STATIC_ASSERT_IMPL2(condition, line) typedef int static_assert_line_##line[(condition) ? 1 : -1]
1179 dnl test that the macros actually work:
1180 AC_MSG_CHECKING(that static assertion macros used in autoconf tests work)
1181 AC_CACHE_VAL(ac_cv_static_assertion_macros_work,
1182  [AC_LANG_SAVE
1183   AC_LANG_C
1184   ac_cv_static_assertion_macros_work="yes"
1185   AC_TRY_COMPILE([$configure_static_assert_macros],
1186                  [CONFIGURE_STATIC_ASSERT(1)],
1187                  ,
1188                  ac_cv_static_assertion_macros_work="no")
1189   AC_TRY_COMPILE([$configure_static_assert_macros],
1190                  [CONFIGURE_STATIC_ASSERT(0)],
1191                  ac_cv_static_assertion_macros_work="no",
1192                  )
1193   AC_LANG_CPLUSPLUS
1194   AC_TRY_COMPILE([$configure_static_assert_macros],
1195                  [CONFIGURE_STATIC_ASSERT(1)],
1196                  ,
1197                  ac_cv_static_assertion_macros_work="no")
1198   AC_TRY_COMPILE([$configure_static_assert_macros],
1199                  [CONFIGURE_STATIC_ASSERT(0)],
1200                  ac_cv_static_assertion_macros_work="no",
1201                  )
1202   AC_LANG_RESTORE
1203  ])
1204 AC_MSG_RESULT("$ac_cv_static_assertion_macros_work")
1205 if test "$ac_cv_static_assertion_macros_work" = "no"; then
1206     AC_MSG_ERROR([Compiler cannot compile macros used in autoconf tests.])
1208 fi # COMPILE_ENVIRONMENT
1210 dnl ========================================================
1211 dnl Android libstdc++, placed here so it can use MOZ_ARCH
1212 dnl computed above.
1213 dnl ========================================================
1215 MOZ_ANDROID_STLPORT
1217 dnl ========================================================
1218 dnl Suppress Clang Argument Warnings
1219 dnl ========================================================
1220 if test -n "$CLANG_CC"; then
1221     _WARNINGS_CFLAGS="-Qunused-arguments ${_WARNINGS_CFLAGS}"
1222     CPPFLAGS="-Qunused-arguments ${CPPFLAGS}"
1224 if test -n "$CLANG_CXX"; then
1225     _WARNINGS_CXXFLAGS="-Qunused-arguments ${_WARNINGS_CXXFLAGS}"
1228 dnl ========================================================
1229 dnl = Use Address Sanitizer
1230 dnl ========================================================
1231 MOZ_ARG_ENABLE_BOOL(address-sanitizer,
1232 [  --enable-address-sanitizer       Enable Address Sanitizer (default=no)],
1233     MOZ_ASAN=1,
1234     MOZ_ASAN= )
1235 if test -n "$MOZ_ASAN"; then
1236     MOZ_LLVM_HACKS=1
1237     AC_DEFINE(MOZ_ASAN)
1238     MOZ_PATH_PROG(LLVM_SYMBOLIZER, llvm-symbolizer)
1240 AC_SUBST(MOZ_ASAN)
1241 AC_SUBST(LLVM_SYMBOLIZER)
1243 dnl ========================================================
1244 dnl = Enable hacks required for LLVM instrumentations
1245 dnl ========================================================
1246 MOZ_ARG_ENABLE_BOOL(llvm-hacks,
1247 [  --enable-llvm-hacks       Enable workarounds required for several LLVM instrumentations (default=no)],
1248     MOZ_LLVM_HACKS=1,
1249     MOZ_LLVM_HACKS= )
1250 if test -n "$MOZ_LLVM_HACKS"; then
1251     MOZ_NO_WLZDEFS=1
1252     MOZ_CFLAGS_NSS=1
1254 AC_SUBST(MOZ_NO_WLZDEFS)
1255 AC_SUBST(MOZ_CFLAGS_NSS)
1257 dnl ========================================================
1258 dnl GNU specific defaults
1259 dnl ========================================================
1260 if test "$GNU_CC"; then
1261     # Per bug 719659 comment 2, some of the headers on ancient build machines
1262     # may require gnu89 inline semantics.  But otherwise, we use C99.
1263     # But on OS X we just use C99 plus GNU extensions, in order to fix
1264     # bug 917526.
1265     CFLAGS="$CFLAGS -std=gnu99"
1266     if test "${OS_ARCH}" != Darwin; then
1267         CFLAGS="$CFLAGS -fgnu89-inline"
1268     fi
1269     # FIXME: Let us build with strict aliasing. bug 414641.
1270     CFLAGS="$CFLAGS -fno-strict-aliasing"
1271     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-h,$(notdir $@) -o $@'
1272     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-h,$(notdir $@) -o $@'
1273     DSO_LDOPTS='-shared'
1274     if test "$GCC_USE_GNU_LD"; then
1275         # Some tools like ASan use a runtime library that is only
1276         # linked against executables, so we must allow undefined
1277         # symbols for shared objects in some cases.
1278         if test -z "$MOZ_NO_WLZDEFS"; then
1279             # Don't allow undefined symbols in libraries
1280             DSO_LDOPTS="$DSO_LDOPTS -Wl,-z,defs"
1281         fi
1282     fi
1283     WARNINGS_AS_ERRORS='-Werror'
1284     DSO_CFLAGS=''
1285     DSO_PIC_CFLAGS='-fPIC'
1286     ASFLAGS="$ASFLAGS -fPIC"
1287     AC_MSG_CHECKING([for --noexecstack option to as])
1288     _SAVE_CFLAGS=$CFLAGS
1289     CFLAGS="$CFLAGS -Wa,--noexecstack"
1290     AC_TRY_COMPILE(,,AC_MSG_RESULT([yes])
1291                      [ASFLAGS="$ASFLAGS -Wa,--noexecstack"],
1292                      AC_MSG_RESULT([no]))
1293     CFLAGS=$_SAVE_CFLAGS
1294     AC_MSG_CHECKING([for -z noexecstack option to ld])
1295     _SAVE_LDFLAGS=$LDFLAGS
1296     LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"
1297     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
1298                   AC_MSG_RESULT([no])
1299                   LDFLAGS=$_SAVE_LDFLAGS)
1301     AC_MSG_CHECKING([for -z text option to ld])
1302     _SAVE_LDFLAGS=$LDFLAGS
1303     LDFLAGS="$LDFLAGS -Wl,-z,text"
1304     AC_TRY_LINK(,,AC_MSG_RESULT([yes])
1305                   [NSPR_LDFLAGS="$NSPR_LDFLAGS -Wl,-z,text"],
1306                   AC_MSG_RESULT([no])
1307                   LDFLAGS=$_SAVE_LDFLAGS)
1309     AC_MSG_CHECKING([for --build-id option to ld])
1310     _SAVE_LDFLAGS=$LDFLAGS
1311     LDFLAGS="$LDFLAGS -Wl,--build-id"
1312     AC_TRY_LINK(,,AC_MSG_RESULT([yes])
1313                   [NSPR_LDFLAGS="$NSPR_LDFLAGS -Wl,--build-id"],
1314                   AC_MSG_RESULT([no])
1315                   LDFLAGS=$_SAVE_LDFLAGS)
1318     # Check for -mssse3 on $CC
1319     AC_MSG_CHECKING([if toolchain supports -mssse3 option])
1320     HAVE_TOOLCHAIN_SUPPORT_MSSSE3=
1321     _SAVE_CFLAGS=$CFLAGS
1322     CFLAGS="$CFLAGS -mssse3"
1323     AC_TRY_COMPILE([asm ("pmaddubsw %xmm2,%xmm3");],,AC_MSG_RESULT([yes])
1324                      [HAVE_TOOLCHAIN_SUPPORT_MSSSE3=1],
1325                      AC_MSG_RESULT([no]))
1326     CFLAGS=$_SAVE_CFLAGS
1328     # Check for -msse4.1 on $CC
1329     AC_MSG_CHECKING([if toolchain supports -msse4.1 option])
1330     HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=
1331     _SAVE_CFLAGS=$CFLAGS
1332     CFLAGS="$CFLAGS -msse4.1"
1333     AC_TRY_COMPILE([asm ("pmulld %xmm6,%xmm0");],,AC_MSG_RESULT([yes])
1334                      [HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=1],
1335                      AC_MSG_RESULT([no]))
1336     CFLAGS=$_SAVE_CFLAGS
1338     # Turn on GNU-specific warnings:
1339     # -Wall - turn on a lot of warnings
1340     # -Wpointer-arith - good to have
1341     # -Wdeclaration-after-statement - MSVC doesn't like these
1342     # -Werror=return-type - catches missing returns, zero false positives
1343     # -Wtype-limits - catches overflow bugs, few false positives
1344     # -Wempty-body - catches bugs, e.g. "if (c); foo();", few false positives
1345     # -Wsign-compare - catches comparison of signed and unsigned types
1346     #
1347     _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wall -Wpointer-arith -Wdeclaration-after-statement"
1348     MOZ_C_SUPPORTS_WARNING(-W, error=return-type, ac_c_has_werror_return_type)
1349     MOZ_C_SUPPORTS_WARNING(-W, type-limits, ac_c_has_wtype_limits)
1350     MOZ_C_SUPPORTS_WARNING(-W, empty-body, ac_c_has_wempty_body)
1351     MOZ_C_SUPPORTS_WARNING(-W, sign-compare, ac_c_has_sign_compare)
1353     # Turn off the following warnings that -Wall turns on:
1354     # -Wno-unused - lots of violations in third-party code
1355     #
1356     _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wno-unused"
1358     if test -z "$INTEL_CC" -a -z "$CLANG_CC"; then
1359        # Don't use -Wcast-align with ICC or clang
1360        case "$CPU_ARCH" in
1361            # And don't use it on hppa, ia64, sparc, arm, since it's noisy there
1362            hppa | ia64 | sparc | arm)
1363            ;;
1364            *)
1365         _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wcast-align"
1366            ;;
1367        esac
1368     fi
1370     _DEFINES_CFLAGS='-include $(DEPTH)/mozilla-config.h -DMOZILLA_CLIENT'
1371     _USE_CPP_INCLUDE_FLAG=1
1372     ASFLAGS="$ASFLAGS $_DEFINES_CFLAGS"
1374 elif test "$SOLARIS_SUNPRO_CC"; then
1375     DSO_CFLAGS=''
1376     if test "$CPU_ARCH" = "sparc"; then
1377         # for Sun Studio on Solaris/SPARC
1378         DSO_PIC_CFLAGS='-xcode=pic32'
1379     else
1380         DSO_PIC_CFLAGS='-KPIC'
1381     fi
1382     _DEFINES_CFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
1383 else
1384     MKSHLIB='$(LD) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
1385     MKCSHLIB='$(LD) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
1387     DSO_LDOPTS='-shared'
1388     if test "$GNU_LD"; then
1389         # Don't allow undefined symbols in libraries
1390         DSO_LDOPTS="$DSO_LDOPTS -z defs"
1391     fi
1393     DSO_CFLAGS=''
1394     DSO_PIC_CFLAGS='-KPIC'
1395     _DEFINES_CFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
1398 if test "$GNU_CXX"; then
1399     # FIXME: Let us build with strict aliasing. bug 414641.
1400     CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-strict-aliasing"
1402     # Turn on GNU-specific warnings:
1403     # -Wall - turn on a lot of warnings
1404     # -Wpointer-arith - good to have
1405     # -Woverloaded-virtual - ???
1406     # -Werror=return-type - catches missing returns, zero false positives
1407     # -Wtype-limits - catches overflow bugs, few false positives
1408     # -Wempty-body - catches bugs, e.g. "if (c); foo();", few false positives
1409     # -Wsign-compare - catches comparison of signed and unsigned types
1410     #
1411     _WARNINGS_CXXFLAGS="${_WARNINGS_CXXFLAGS} -Wall -Wpointer-arith -Woverloaded-virtual"
1412     MOZ_CXX_SUPPORTS_WARNING(-W, error=return-type, ac_cxx_has_werror_return_type)
1413     MOZ_CXX_SUPPORTS_WARNING(-W, type-limits, ac_cxx_has_wtype_limits)
1414     MOZ_CXX_SUPPORTS_WARNING(-W, empty-body, ac_cxx_has_wempty_body)
1415     MOZ_CXX_SUPPORTS_WARNING(-W, sign-compare, ac_cxx_has_sign_compare)
1417     # Turn off the following warnings that -Wall turns on:
1418     # -Wno-invalid-offsetof - we use offsetof on non-POD types frequently
1419     #
1420     MOZ_CXX_SUPPORTS_WARNING(-Wno-, invalid-offsetof, ac_cxx_has_wno_invalid_offsetof)
1422     if test -z "$INTEL_CXX" -a -z "$CLANG_CXX"; then
1423        # Don't use -Wcast-align with ICC or clang
1424        case "$CPU_ARCH" in
1425            # And don't use it on hppa, ia64, sparc, arm, since it's noisy there
1426            hppa | ia64 | sparc | arm)
1427            ;;
1428            *)
1429         _WARNINGS_CXXFLAGS="${_WARNINGS_CXXFLAGS} -Wcast-align"
1430            ;;
1431        esac
1432     fi
1434     _DEFINES_CXXFLAGS='-DMOZILLA_CLIENT -include $(DEPTH)/mozilla-config.h'
1435     _USE_CPP_INCLUDE_FLAG=1
1437     # Recent clang and gcc support C++11 deleted functions without warnings if
1438     # compiling with -std=c++0x or -std=gnu++0x (or c++11 or gnu++11 in very new
1439     # versions).  We can't use -std=c++0x yet, so gcc's support must remain
1440     # unused.  But clang's warning can be disabled, so when compiling with clang
1441     # we use it to opt out of the warning, enabling (macro-encapsulated) use of
1442     # deleted function syntax.
1443     if test "$CLANG_CXX"; then
1444         _WARNINGS_CXXFLAGS="${_WARNINGS_CXXFLAGS} -Wno-c++0x-extensions"
1445         MOZ_CXX_SUPPORTS_WARNING(-Wno-, extended-offsetof, ac_cxx_has_wno_extended_offsetof)
1446     fi
1448 else
1449     _DEFINES_CXXFLAGS='-DMOZILLA_CLIENT -D_MOZILLA_CONFIG_H_ $(ACDEFINES)'
1452 dnl gcc can come with its own linker so it is better to use the pass-thru calls
1453 dnl MKSHLIB_FORCE_ALL is used to force the linker to include all object
1454 dnl files present in an archive. MKSHLIB_UNFORCE_ALL reverts the linker to
1455 dnl normal behavior.
1456 dnl ========================================================
1457 MKSHLIB_FORCE_ALL=
1458 MKSHLIB_UNFORCE_ALL=
1460 if test "$COMPILE_ENVIRONMENT"; then
1461 if test "$GNU_CC"; then
1462   AC_MSG_CHECKING(whether ld has archive extraction flags)
1463   AC_CACHE_VAL(ac_cv_mkshlib_force_and_unforce,
1464    [_SAVE_LDFLAGS=$LDFLAGS; _SAVE_LIBS=$LIBS
1465     ac_cv_mkshlib_force_and_unforce="no"
1466     exec 3<&0 <<LOOP_INPUT
1467         force="-Wl,--whole-archive";   unforce="-Wl,--no-whole-archive"
1468         force="-Wl,-z -Wl,allextract"; unforce="-Wl,-z -Wl,defaultextract"
1469         force="-Wl,-all";              unforce="-Wl,-none"
1470 LOOP_INPUT
1471     while read line
1472     do
1473       eval $line
1474       LDFLAGS=$force
1475       LIBS=$unforce
1476       AC_TRY_LINK(,, ac_cv_mkshlib_force_and_unforce=$line; break)
1477     done
1478     exec 0<&3 3<&-
1479     LDFLAGS=$_SAVE_LDFLAGS; LIBS=$_SAVE_LIBS
1480    ])
1481   if test "$ac_cv_mkshlib_force_and_unforce" = "no"; then
1482     AC_MSG_RESULT(no)
1483   else
1484     AC_MSG_RESULT(yes)
1485     eval $ac_cv_mkshlib_force_and_unforce
1486     MKSHLIB_FORCE_ALL=$force
1487     MKSHLIB_UNFORCE_ALL=$unforce
1488   fi
1489 fi # GNU_CC
1490 fi # COMPILE_ENVIRONMENT
1492 dnl ========================================================
1493 dnl Checking for 64-bit OS
1494 dnl ========================================================
1495 if test "$COMPILE_ENVIRONMENT"; then
1496 AC_LANG_SAVE
1497 AC_LANG_C
1498 AC_MSG_CHECKING(for 64-bit OS)
1499 AC_TRY_COMPILE([$configure_static_assert_macros],
1500                [CONFIGURE_STATIC_ASSERT(sizeof(void*) == 8)],
1501                result="yes", result="no")
1502 AC_MSG_RESULT("$result")
1503 if test "$result" = "yes"; then
1504     AC_DEFINE(HAVE_64BIT_OS)
1505     HAVE_64BIT_OS=1
1507 AC_SUBST(HAVE_64BIT_OS)
1508 AC_LANG_RESTORE
1509 fi # COMPILE_ENVIRONMENT
1511 dnl ========================================================
1512 dnl Enable high-memory support on OS/2 by default.
1513 dnl ========================================================
1514 MOZ_OS2_HIGH_MEMORY=1
1515 MOZ_ARG_DISABLE_BOOL(os2-high-mem,
1516 [  --disable-os2-high-mem  Disable high-memory support on OS/2],
1517     MOZ_OS2_HIGH_MEMORY=,
1518     MOZ_OS2_HIGH_MEMORY=1 )
1519 AC_SUBST(MOZ_OS2_HIGH_MEMORY)
1521 dnl ========================================================
1522 dnl = Use profiling compile flags
1523 dnl ========================================================
1524 MOZ_ARG_ENABLE_BOOL(profiling,
1525 [  --enable-profiling      Set compile flags necessary for using sampling profilers (e.g. shark, perf)],
1526     MOZ_PROFILING=1,
1527     MOZ_PROFILING= )
1529 # For profiling builds keep the symbol information
1530 if test "$MOZ_PROFILING" -a -z "$STRIP_FLAGS"; then
1531     case "$OS_TARGET" in
1532     Linux|DragonFly|FreeBSD|NetBSD|OpenBSD)
1533         STRIP_FLAGS="--strip-debug"
1534         ;;
1535     esac
1538 dnl ========================================================
1539 dnl = Use incremental GC
1540 dnl ========================================================
1541 JSGC_INCREMENTAL=1
1542 MOZ_ARG_DISABLE_BOOL(gcincremental,
1543 [  --disable-gcincremental Disable incremental GC],
1544     JSGC_INCREMENTAL= )
1545 if test -n "$JSGC_INCREMENTAL"; then
1546     AC_DEFINE(JSGC_INCREMENTAL)
1549 dnl ========================================================
1550 dnl = Use generational GC
1551 dnl ========================================================
1552 MOZ_ARG_ENABLE_BOOL(gcgenerational,
1553 [  --enable-gcgenerational Enable generational GC],
1554     JSGC_GENERATIONAL=1,
1555     JSGC_GENERATIONAL= )
1556 if test -n "$JSGC_GENERATIONAL"; then
1557     AC_DEFINE(JSGC_GENERATIONAL)
1560 dnl ========================================================
1561 dnl = Perform moving GC stack rooting analysis
1562 dnl ========================================================
1563 MOZ_ARG_ENABLE_BOOL(root-analysis,
1564 [  --enable-root-analysis  Enable moving GC stack root analysis],
1565     JSGC_ROOT_ANALYSIS=1,
1566     JSGC_ROOT_ANALYSIS= )
1567 if test -n "$JSGC_ROOT_ANALYSIS"; then
1568     AC_DEFINE(JSGC_ROOT_ANALYSIS)
1571 dnl ========================================================
1572 dnl = Use exact stack rooting for GC
1573 dnl ========================================================
1574 MOZ_ARG_ENABLE_BOOL(exact-rooting,
1575 [  --enable-exact-rooting  Enable use of exact stack roots for GC],
1576     JSGC_USE_EXACT_ROOTING=1,
1577     JSGC_USE_EXACT_ROOTING= )
1578 if test -n "$JSGC_USE_EXACT_ROOTING"; then
1579     AC_DEFINE(JSGC_USE_EXACT_ROOTING)
1582 dnl ========================================================
1583 dnl = Use Valgrind
1584 dnl ========================================================
1585 MOZ_ARG_ENABLE_BOOL(valgrind,
1586 [  --enable-valgrind       Enable Valgrind integration hooks (default=no)],
1587     MOZ_VALGRIND=1,
1588     MOZ_VALGRIND= )
1589 if test -n "$MOZ_VALGRIND"; then
1590     MOZ_CHECK_HEADER([valgrind/valgrind.h], [],
1591         AC_MSG_ERROR(
1592             [--enable-valgrind specified but Valgrind is not installed]))
1593     AC_DEFINE(MOZ_VALGRIND)
1595 AC_SUBST(MOZ_VALGRIND)
1597 dnl ========================================================
1598 dnl jprof
1599 dnl ========================================================
1600 MOZ_ARG_ENABLE_BOOL(jprof,
1601 [  --enable-jprof          Enable jprof profiling tool (needs mozilla/tools/jprof). Implies --enable-profiling.],
1602     MOZ_JPROF=1,
1603     MOZ_JPROF= )
1604 if test -n "$MOZ_JPROF"; then
1605     MOZ_PROFILING=1
1606     AC_DEFINE(MOZ_JPROF)
1609 dnl ========================================================
1610 dnl SPS Profiler
1611 dnl ========================================================
1612 MOZ_ENABLE_PROFILER_SPS=1
1614 case "${OS_TARGET}" in
1615 Android)
1616     case "${CPU_ARCH}" in
1617     x86 | arm) ;;
1618     *)
1619         MOZ_ENABLE_PROFILER_SPS=
1620     esac
1621     ;;
1622 Linux)
1623     case "${CPU_ARCH}" in
1624     x86 | x86_64) ;;
1625     *)
1626         MOZ_ENABLE_PROFILER_SPS=
1627     esac
1628     ;;
1629 WINNT|Darwin) ;;
1631     MOZ_ENABLE_PROFILER_SPS=
1632     ;;
1633 esac
1635 if test -n "$MOZ_ENABLE_PROFILER_SPS"; then
1636     AC_DEFINE(MOZ_ENABLE_PROFILER_SPS)
1639 dnl ========================================================
1640 dnl shark
1641 dnl ========================================================
1642 MOZ_ARG_ENABLE_BOOL(shark,
1643 [  --enable-shark          Enable shark remote profiling. Implies --enable-profiling.],
1644     MOZ_SHARK=1,
1645     MOZ_SHARK= )
1646 if test -n "$MOZ_SHARK"; then
1647     MOZ_PROFILING=1
1648     AC_DEFINE(MOZ_SHARK)
1651 dnl ========================================================
1652 dnl instruments
1653 dnl ========================================================
1654 MOZ_ARG_ENABLE_BOOL(instruments,
1655 [  --enable-instruments    Enable instruments remote profiling. Implies --enable-profiling.],
1656     MOZ_INSTRUMENTS=1,
1657     MOZ_INSTRUMENTS= )
1658 if test -n "$MOZ_INSTRUMENTS"; then
1659     MOZ_PROFILING=1
1660     AC_DEFINE(MOZ_INSTRUMENTS)
1663 dnl ========================================================
1664 dnl callgrind
1665 dnl ========================================================
1666 MOZ_ARG_ENABLE_BOOL(callgrind,
1667 [  --enable-callgrind      Enable callgrind profiling. Implies --enable-profiling.],
1668     MOZ_CALLGRIND=1,
1669     MOZ_CALLGRIND= )
1670 if test -n "$MOZ_CALLGRIND"; then
1671     MOZ_PROFILING=1
1672     AC_DEFINE(MOZ_CALLGRIND)
1675 dnl ========================================================
1676 dnl vtune
1677 dnl ========================================================
1678 MOZ_ARG_ENABLE_BOOL(vtune,
1679 [  --enable-vtune          Enable vtune profiling. Implies --enable-profiling.],
1680     MOZ_VTUNE=1,
1681     MOZ_VTUNE= )
1682 if test -n "$MOZ_VTUNE"; then
1683     MOZ_PROFILING=1
1684     AC_DEFINE(MOZ_VTUNE)
1687 dnl ========================================================
1688 dnl Profiling
1689 dnl ========================================================
1690 if test -n "$MOZ_PROFILING"; then
1691     AC_DEFINE(MOZ_PROFILING)
1694 dnl ========================================================
1695 dnl System overrides of the defaults for host
1696 dnl ========================================================
1697 case "$host" in
1698 *mingw*)
1699     if test -n "$_WIN32_MSVC"; then
1700         HOST_AR=lib
1701         HOST_AR_FLAGS='-NOLOGO -OUT:"$@"'
1702         HOST_CFLAGS="$HOST_CFLAGS -TC -nologo -Fd\$(HOST_PDBFILE)"
1703         HOST_RANLIB='echo ranlib'
1704     else
1705         HOST_CFLAGS="$HOST_CFLAGS -mwindows"
1706     fi
1707     HOST_CFLAGS="$HOST_CFLAGS -DXP_WIN32 -DXP_WIN -DWIN32 -D_WIN32 -DNO_X11 -D_CRT_SECURE_NO_WARNINGS"
1708     HOST_NSPR_MDCPUCFG='\"md/_winnt.cfg\"'
1709     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
1710     HOST_BIN_SUFFIX=.exe
1711     case "$host" in
1712     *mingw*)
1713         PERL="/bin/sh ${_topsrcdir}/build/msys-perl-wrapper"
1714         ;;
1715     esac
1717     case "${host_cpu}" in
1718     i*86)
1719         if test -n "$_WIN32_MSVC"; then
1720             HOST_LDFLAGS="$HOST_LDFLAGS -MACHINE:X86"
1721         fi
1722         ;;
1723     x86_64)
1724         if test -n "$_WIN32_MSVC"; then
1725             HOST_LDFLAGS="$HOST_LDFLAGS -MACHINE:X64"
1726         fi
1727         HOST_CFLAGS="$HOST_CFLAGS -D_AMD64_"
1728         ;;
1729     esac
1730     ;;
1732 *-darwin*)
1733     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX -DXP_MACOSX -DNO_X11"
1734     HOST_NSPR_MDCPUCFG='\"md/_darwin.cfg\"'
1735     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}"
1736     ;;
1738 *-linux*|*-kfreebsd*-gnu|*-gnu*)
1739     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX"
1740     HOST_NSPR_MDCPUCFG='\"md/_linux.cfg\"'
1741     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}"
1742     ;;
1744 *os2*)
1745     HOST_CFLAGS="$HOST_CFLAGS -DXP_OS2 -DNO_X11 -Zomf"
1746     HOST_NSPR_MDCPUCFG='\"md/_os2.cfg\"'
1747     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
1748     HOST_BIN_SUFFIX=.exe
1749     MOZ_FIX_LINK_PATHS=
1750     ;;
1753     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX"
1754     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
1755     ;;
1756 esac
1758 dnl Check for using a custom <inttypes.h> implementation
1759 dnl ========================================================
1760 AC_MSG_CHECKING(for custom <inttypes.h> implementation)
1761 if test "$MOZ_CUSTOM_INTTYPES_H"; then
1762   AC_DEFINE_UNQUOTED(MOZ_CUSTOM_INTTYPES_H, "$MOZ_CUSTOM_INTTYPES_H")
1763   AC_MSG_RESULT(using $MOZ_CUSTOM_INTTYPES_H)
1764 else
1765   AC_MSG_RESULT(none specified)
1768 dnl Get mozilla version from central milestone file
1769 MOZILLA_VERSION=`$PERL $srcdir/config/milestone.pl -topsrcdir $srcdir`
1770 MOZILLA_UAVERSION=`$PERL $srcdir/config/milestone.pl -topsrcdir $srcdir -uaversion`
1771 MOZILLA_SYMBOLVERSION=`$PERL $srcdir/config/milestone.pl -topsrcdir $srcdir -symbolversion`
1773 dnl Get version of various core apps from the version files.
1774 FIREFOX_VERSION=`cat $_topsrcdir/browser/config/version.txt`
1776 if test -z "$FIREFOX_VERSION"; then
1777     AC_MSG_ERROR([FIREFOX_VERSION is unexpectedly blank.])
1780 AC_DEFINE_UNQUOTED(MOZILLA_VERSION,"$MOZILLA_VERSION")
1781 AC_DEFINE_UNQUOTED(MOZILLA_VERSION_U,$MOZILLA_VERSION)
1782 AC_DEFINE_UNQUOTED(MOZILLA_UAVERSION,"$MOZILLA_UAVERSION")
1783 AC_SUBST(MOZILLA_SYMBOLVERSION)
1785 MOZ_DOING_LTO(lto_is_enabled)
1787 dnl ========================================================
1788 dnl System overrides of the defaults for target
1789 dnl ========================================================
1791 case "$target" in
1792 *-aix*)
1793     AC_DEFINE(AIX)
1794     if test ! "$GNU_CC"; then
1795         if test ! "$HAVE_64BIT_OS"; then
1796             # Compiling with Visual Age C++ object model compat is the
1797             # default. To compile with object model ibm, add
1798             # AIX_OBJMODEL=ibm to .mozconfig.
1799             if test "$AIX_OBJMODEL" = "ibm"; then
1800                 CXXFLAGS="$CXXFLAGS -qobjmodel=ibm"
1801             else
1802                 AIX_OBJMODEL=compat
1803             fi
1804         else
1805             AIX_OBJMODEL=compat
1806         fi
1807         AC_SUBST(AIX_OBJMODEL)
1808         DSO_LDOPTS='-qmkshrobj=1'
1809         DSO_CFLAGS='-qflag=w:w'
1810         DSO_PIC_CFLAGS=
1811         LDFLAGS="$LDFLAGS -Wl,-brtl -blibpath:/usr/lib:/lib"
1812         MOZ_FIX_LINK_PATHS=
1813         MKSHLIB='$(CXX) $(DSO_LDOPTS) -o $@'
1814         MKCSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
1815         if test "$COMPILE_ENVIRONMENT"; then
1816             AC_LANG_SAVE
1817             AC_LANG_CPLUSPLUS
1818             AC_MSG_CHECKING([for IBM XLC/C++ compiler version >= 9.0.0.7])
1819             AC_TRY_COMPILE([],
1820                 [#if (__IBMCPP__ < 900)
1821                  #error "Bad compiler"
1822                  #endif],
1823                 _BAD_COMPILER=,_BAD_COMPILER=1)
1824             if test -n "$_BAD_COMPILER"; then
1825                 AC_MSG_RESULT([no])
1826                 AC_MSG_ERROR([IBM XLC/C++ 9.0.0.7 or higher is required to build.])
1827             else
1828                 AC_MSG_RESULT([yes])
1829             fi
1830             AC_LANG_RESTORE
1831             TARGET_COMPILER_ABI="ibmc"
1832             CC_VERSION=`lslpp -Lcq vac.C 2>/dev/null | awk -F: '{ print $3 }'`
1833             CXX_VERSION=`lslpp -Lcq vacpp.cmp.core 2>/dev/null | awk -F: '{ print $3 }'`
1834         fi
1835     fi
1836     case "${target_os}" in
1837     aix4.1*)
1838         DLL_SUFFIX='_shr.a'
1839         ;;
1840     esac
1841     if test "$COMPILE_ENVIRONMENT"; then
1842         MOZ_CHECK_HEADERS(sys/inttypes.h)
1843     fi
1844     AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
1845     ;;
1847 *-darwin*)
1848     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
1849     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
1850     MOZ_OPTIMIZE_FLAGS="-O3"
1851     # Statically disable jemalloc on 10.5 and 32-bit 10.6.  See bug 702250.
1852     if test "$HAVE_64BIT_OS"; then
1853         MOZ_MEMORY=1
1854     fi
1855     DLL_SUFFIX=".dylib"
1856     DSO_LDOPTS=''
1857     STRIP_FLAGS="$STRIP_FLAGS -x -S"
1858     # Check whether we're targeting OS X or iOS
1859     AC_CACHE_CHECK(for iOS target,
1860                    ac_cv_ios_target,
1861                    [AC_TRY_COMPILE([#include <TargetConditionals.h>
1862 #if !(TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
1863 #error not iOS
1864 #endif],
1865                                    [],
1866                                    ac_cv_ios_target="yes",
1867                                    ac_cv_ios_target="no")])
1868     if test "$ac_cv_ios_target" = "yes"; then
1869         AC_DEFINE(XP_IOS)
1870         AC_DEFINE(XP_DARWIN)
1871         _PLATFORM_DEFAULT_TOOLKIT='cairo-uikit'
1872     else
1873         AC_DEFINE(XP_MACOSX)
1874         AC_DEFINE(XP_DARWIN)
1875         _PLATFORM_DEFAULT_TOOLKIT='cairo-cocoa'
1876         # The ExceptionHandling framework is needed for Objective-C exception
1877         # logging code in nsObjCExceptions.h. Currently we only use that in debug
1878         # builds.
1879         MOZ_DEBUG_LDFLAGS="$MOZ_DEBUG_LDFLAGS -framework ExceptionHandling";
1880     fi
1881     TARGET_NSPR_MDCPUCFG='\"md/_darwin.cfg\"'
1884     if test "x$lto_is_enabled" = "xyes"; then
1885         echo "Skipping -dead_strip because lto is enabled."
1886     dnl DTrace and -dead_strip don't interact well. See bug 403132.
1887     dnl ===================================================================
1888     elif test "x$enable_dtrace" = "xyes"; then
1889         echo "Skipping -dead_strip because DTrace is enabled. See bug 403132."
1890     else
1891         dnl check for the presence of the -dead_strip linker flag
1892         AC_MSG_CHECKING([for -dead_strip option to ld])
1893         _SAVE_LDFLAGS=$LDFLAGS
1894         LDFLAGS="$LDFLAGS -Wl,-dead_strip"
1895         AC_TRY_LINK(,[return 0;],_HAVE_DEAD_STRIP=1,_HAVE_DEAD_STRIP=)
1896         if test -n "$_HAVE_DEAD_STRIP" ; then
1897             AC_MSG_RESULT([yes])
1898             MOZ_OPTIMIZE_LDFLAGS="-Wl,-dead_strip"
1899         else
1900             AC_MSG_RESULT([no])
1901         fi
1903         LDFLAGS=$_SAVE_LDFLAGS
1904     fi
1906     dnl With newer linkers we need to pass -allow_heap_execute because of
1907     dnl Microsoft Silverlight (5.1.10411.0 at least).
1908     AC_MSG_CHECKING([for -allow_heap_execute option to ld])
1909     _SAVE_LDFLAGS=$LDFLAGS
1910     LDFLAGS="$LDFLAGS -Wl,-allow_heap_execute"
1911     AC_TRY_LINK(,[return 0;],_HAVE_ALLOW_HEAP_EXECUTE=1,
1912                 _HAVE_ALLOW_HEAP_EXECUTE=)
1913     if test -n "$_HAVE_ALLOW_HEAP_EXECUTE" ; then
1914         AC_MSG_RESULT([yes])
1915         MOZ_ALLOW_HEAP_EXECUTE_FLAGS="-Wl,-allow_heap_execute"
1916     else
1917         AC_MSG_RESULT([no])
1918     fi
1919     LDFLAGS=$_SAVE_LDFLAGS
1921     MOZ_FIX_LINK_PATHS='-Wl,-executable_path,$(LIBXUL_DIST)/bin'
1922     ;;
1924 ia64*-hpux*)
1925     DLL_SUFFIX=".so"
1926     if test ! "$GNU_CC"; then
1927        DSO_LDOPTS='-b'
1928        DSO_CFLAGS=""
1929        DSO_PIC_CFLAGS=
1930        MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_LDOPTS) -o $@'
1931        MKCSHLIB='$(CC) $(CFLAGS) $(DSO_LDOPTS) -o $@'
1932        CXXFLAGS="$CXXFLAGS -Wc,-ansi_for_scope,on"
1933     else
1934        DSO_LDOPTS='-b -E'
1935        MKSHLIB='$(LD) $(DSO_LDOPTS) -o $@'
1936        MKCSHLIB='$(LD) $(DSO_LDOPTS) -o $@'
1937     fi
1938     MOZ_FIX_LINK_PATHS=
1939     AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
1940     AC_DEFINE(_LARGEFILE64_SOURCE)
1941     ;;
1943 *-hpux*)
1944     DLL_SUFFIX=".sl"
1945     if test ! "$GNU_CC"; then
1946         DSO_LDOPTS='-b -Wl,+s'
1947         DSO_CFLAGS=""
1948         DSO_PIC_CFLAGS="+Z"
1949         MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_LDOPTS) -L$(LIBXUL_DIST)/bin -o $@'
1950         MKCSHLIB='$(LD) -b +s -L$(LIBXUL_DIST)/bin -o $@'
1951         CXXFLAGS="$CXXFLAGS -Wc,-ansi_for_scope,on"
1952     else
1953         DSO_LDOPTS='-b -E +s'
1954         MKSHLIB='$(LD) $(DSO_LDOPTS) -L$(LIBXUL_DIST)/bin -L$(LIBXUL_DIST)/lib -o $@'
1955         MKCSHLIB='$(LD) $(DSO_LDOPTS) -L$(LIBXUL_DIST)/bin -L$(LIBXUL_DIST)/lib -o $@'
1956     fi
1957     MOZ_POST_PROGRAM_COMMAND='chatr +s enable'
1958     AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
1959     ;;
1961 *-android*|*-linuxandroid*)
1962     AC_DEFINE(NO_PW_GECOS)
1963     no_x=yes
1964     if test -n "$gonkdir"; then
1965         _PLATFORM_DEFAULT_TOOLKIT=cairo-gonk
1966         _PLATFORM_HAVE_RIL=1
1967         MOZ_B2G_FM=1
1968         MOZ_SYNTH_PICO=1
1969     else
1970         _PLATFORM_DEFAULT_TOOLKIT=cairo-android
1971         MOZ_LINKER=1
1972     fi
1973     TARGET_NSPR_MDCPUCFG='\"md/_linux.cfg\"'
1975     MOZ_GFX_OPTIMIZE_MOBILE=1
1976     MOZ_OPTIMIZE_FLAGS="-Os -freorder-blocks -fno-reorder-functions"
1977     ;;
1979 *-*linux*)
1980     # Note: both GNU_CC and INTEL_CC are set when using Intel's C compiler.
1981     # Similarly for GNU_CXX and INTEL_CXX.
1982     if test "$INTEL_CC" -o "$INTEL_CXX"; then
1983         # -Os has been broken on Intel's C/C++ compilers for quite a
1984         # while; Intel recommends against using it.
1985         MOZ_OPTIMIZE_FLAGS="-O2"
1986     elif test "$GNU_CC" -o "$GNU_CXX"; then
1987         case $GCC_VERSION in
1988         4.5.*)
1989             # -Os is broken on gcc 4.5.x we need to tweak it to get good results.
1990             MOZ_OPTIMIZE_SIZE_TWEAK="-finline-limit=50"
1991         esac
1992         MOZ_PGO_OPTIMIZE_FLAGS="-O3"
1993         MOZ_OPTIMIZE_FLAGS="-Os -freorder-blocks $MOZ_OPTIMIZE_SIZE_TWEAK"
1994     fi
1996     TARGET_NSPR_MDCPUCFG='\"md/_linux.cfg\"'
1998     MOZ_MEMORY=1
2000     case "${target_cpu}" in
2001     alpha*)
2002         CFLAGS="$CFLAGS -mieee"
2003         CXXFLAGS="$CXXFLAGS -mieee"
2004     ;;
2005     i*86)
2006         USE_ELF_DYNSTR_GC=1
2007     ;;
2008     esac
2010     if test -z "$MC"; then
2011         MC=mc.exe
2012     fi
2013     ;;
2014 *-mingw*)
2015     DSO_CFLAGS=
2016     DSO_PIC_CFLAGS=
2017     DLL_SUFFIX=.dll
2018     RC=rc.exe
2019     MC=mc.exe
2020     # certain versions of cygwin's makedepend barf on the
2021     # #include <string> vs -I./dist/include/string issue so don't use it
2022     XPCOM_FROZEN_LDOPTS='$(call EXPAND_LIBNAME_PATH,xul mozalloc,$(LIBXUL_DIST)/lib)'
2023     if test -n "$GNU_CC" -o -n "$CLANG_CC"; then
2024         CC="$CC -mwindows"
2025         CXX="$CXX -mwindows"
2026         CPP="$CPP -mwindows"
2027         CFLAGS="$CFLAGS -mms-bitfields"
2028         CXXFLAGS="$CXXFLAGS -mms-bitfields"
2029         DSO_LDOPTS='-shared'
2030         MKSHLIB='$(CXX) $(DSO_LDOPTS) -o $@'
2031         MKCSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
2032         RC='$(WINDRES)'
2033         # Use static libgcc and libstdc++
2034         LDFLAGS="$LDFLAGS -static-libgcc -static-libstdc++"
2035         NSPR_LDFLAGS="$NSPR_LDFLAGS -static-libgcc"
2036         # Use temp file for windres (bug 213281)
2037         RCFLAGS='-O coff --use-temp-file'
2038         # mingw doesn't require kernel32, user32, and advapi32 explicitly
2039         LIBS="$LIBS -luuid -lgdi32 -lwinmm -lwsock32 -luserenv -lsecur32 -lnetapi32"
2040         MOZ_FIX_LINK_PATHS=
2041         DLL_PREFIX=
2042         IMPORT_LIB_SUFFIX=dll.a
2044         # We use mix of both POSIX and Win32 printf format across the tree, so format
2045         # warnings are useless on mingw.
2046         MOZ_C_SUPPORTS_WARNING(-Wno-, format, ac_c_has_wno_format)
2047         MOZ_CXX_SUPPORTS_WARNING(-Wno-, format, ac_cxx_has_wno_format)
2048     else
2049         TARGET_COMPILER_ABI=msvc
2050         HOST_CC='$(CC)'
2051         HOST_CXX='$(CXX)'
2052         HOST_LD='$(LD)'
2053         if test "$AS_BIN"; then
2054             AS="$(basename "$AS_BIN")"
2055         fi
2056         AR='lib'
2057         AR_FLAGS='-NOLOGO -OUT:"$@"'
2058         AR_EXTRACT=
2059         RANLIB='echo not_ranlib'
2060         STRIP='echo not_strip'
2061         PKG_SKIP_STRIP=1
2062         XARGS=xargs
2063         ZIP=zip
2064         UNZIP=unzip
2065         DOXYGEN=:
2066         ASM_SUFFIX=asm
2067         OBJ_SUFFIX=obj
2068         LIB_SUFFIX=lib
2069         DLL_PREFIX=
2070         LIB_PREFIX=
2071         IMPORT_LIB_SUFFIX=lib
2072         MKSHLIB='$(LD) -NOLOGO -DLL -OUT:$@ -PDB:$(LINK_PDBFILE) $(DSO_LDOPTS)'
2073         MKCSHLIB='$(LD) -NOLOGO -DLL -OUT:$@ -PDB:$(LINK_PDBFILE) $(DSO_LDOPTS)'
2074         MKSHLIB_FORCE_ALL=
2075         MKSHLIB_UNFORCE_ALL=
2076         DSO_LDOPTS=-SUBSYSTEM:WINDOWS
2077         _USE_CPP_INCLUDE_FLAG=1
2078         _DEFINES_CFLAGS='-FI $(DEPTH)/dist/include/mozilla-config.h -DMOZILLA_CLIENT'
2079         _DEFINES_CXXFLAGS='-FI $(DEPTH)/dist/include/mozilla-config.h -DMOZILLA_CLIENT'
2080         CFLAGS="$CFLAGS -W3 -Gy -Fd\$(COMPILE_PDBFILE)"
2081         CXXFLAGS="$CXXFLAGS -W3 -Gy -Fd\$(COMPILE_PDBFILE)"
2082         if test "$_CC_SUITE" -ge "12"; then
2083             dnl VS2013+ requires -FS when parallel building by make -jN.
2084             dnl If nothing, compiler sometimes causes C1041 error.
2085             dnl
2086             dnl Visual Studio 2013 supports -Gw flags
2087             dnl http://blogs.msdn.com/b/vcblog/archive/2013/09/11/introducing-gw-compiler-switch.aspx
2088             CFLAGS="$CFLAGS -FS -Gw"
2089             CXXFLAGS="$CXXFLAGS -FS -Gw"
2090         fi
2091         # khuey says we can safely ignore MSVC warning C4251
2092         # MSVC warning C4244 (implicit type conversion may lose data) warns
2093         # and requires workarounds for perfectly valid code.  Also, GCC/clang
2094         # don't warn about it by default. So for consistency/sanity, we turn
2095         # it off on MSVC, too.
2096         # MSVC warning C4345 warns of newly conformant behavior as of VS2003.
2097         # MSVC warning C4351 warns of newly conformant behavior as of VS2005.
2098         # MSVC warning C4482 warns when an enum value is refered specifing the
2099         # name of the enum itself.  This behavior is allowed in C++11, and the
2100         # warning has been removed in VS2012.
2101         # MSVC warning C4800 warns when a value is implicitly cast to bool,
2102         # because this also forces narrowing to a single byte, which can be a
2103         # perf hit.  But this matters so little in practice (and often we want
2104         # that behavior) that it's better to turn it off.
2105         # MSVC warning C4819 warns some UTF-8 characters (e.g. copyright sign)
2106         # on non-Western system locales even if it is in a comment.
2107         CFLAGS="$CFLAGS -wd4244 -wd4819"
2108         CXXFLAGS="$CXXFLAGS -wd4251 -wd4244 -wd4345 -wd4351 -wd4482 -wd4800 -wd4819"
2109         # make 'foo == bar;' error out
2110         CFLAGS="$CFLAGS -we4553"
2111         CXXFLAGS="$CXXFLAGS -we4553"
2112         LIBS="$LIBS kernel32.lib user32.lib gdi32.lib winmm.lib wsock32.lib advapi32.lib secur32.lib netapi32.lib"
2113         MOZ_DEBUG_FLAGS='-Zi'
2114         MOZ_DEBUG_LDFLAGS='-DEBUG -DEBUGTYPE:CV'
2115         WARNINGS_AS_ERRORS='-WX'
2116         MOZ_OPTIMIZE_FLAGS='-O1'
2117         MOZ_FIX_LINK_PATHS=
2118         MOZ_COMPONENT_NSPR_LIBS='$(NSPR_LIBS)'
2119         LDFLAGS="$LDFLAGS -LARGEADDRESSAWARE -NXCOMPAT"
2120         if test -z "$DEVELOPER_OPTIONS"; then
2121             LDFLAGS="$LDFLAGS -RELEASE"
2122         fi
2123         dnl For profile-guided optimization
2124         PROFILE_GEN_CFLAGS="-GL"
2125         PROFILE_GEN_LDFLAGS="-LTCG:PGINSTRUMENT"
2126         dnl XXX: PGO builds can fail with warnings treated as errors,
2127         dnl specifically "no profile data available" appears to be
2128         dnl treated as an error sometimes. This might be a consequence
2129         dnl of using WARNINGS_AS_ERRORS in some modules, combined
2130         dnl with the linker doing most of the work in the whole-program
2131         dnl optimization/PGO case. I think it's probably a compiler bug,
2132         dnl but we work around it here.
2133         PROFILE_USE_CFLAGS="-GL -wd4624 -wd4952"
2134         dnl XXX: should be -LTCG:PGOPTIMIZE, but that fails on libxul.
2135         dnl Probably also a compiler bug, but what can you do?
2136         PROFILE_USE_LDFLAGS="-LTCG:PGUPDATE"
2137         LDFLAGS="$LDFLAGS -DYNAMICBASE"
2138         dnl Minimum reqiurement of Gecko is VS2010 or later which supports
2139         dnl both SSSE3 and SSE4.1.
2140         HAVE_TOOLCHAIN_SUPPORT_MSSSE3=1
2141         HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=1
2142     fi
2143     AC_DEFINE(HAVE_SNPRINTF)
2144     AC_DEFINE(_WINDOWS)
2145     AC_DEFINE(WIN32)
2146     AC_DEFINE(XP_WIN)
2147     AC_DEFINE(XP_WIN32)
2148     AC_DEFINE(HW_THREADS)
2149     AC_DEFINE(STDC_HEADERS)
2150     AC_DEFINE(WIN32_LEAN_AND_MEAN)
2151     TARGET_MD_ARCH=win32
2152     _PLATFORM_DEFAULT_TOOLKIT='cairo-windows'
2153     BIN_SUFFIX='.exe'
2154     MOZ_USER_DIR="Mozilla"
2156     dnl Hardcode to win95 for now - cls
2157     TARGET_NSPR_MDCPUCFG='\"md/_win95.cfg\"'
2159     dnl set NO_X11 defines here as the general check is skipped on win32
2160     no_x=yes
2161     AC_DEFINE(NO_X11)
2163     case "$host" in
2164     *-mingw*)
2165         MOZ_BUILD_ROOT=`cd $MOZ_BUILD_ROOT && pwd -W`
2166         if test -n "$L10NBASEDIR"; then
2167             L10NBASEDIR=`cd $L10NBASEDIR && pwd -W`
2168         fi
2169         ;;
2170     esac
2172     case "$host" in
2173     *-mingw*)
2174         if test -z "$MOZ_TOOLS"; then
2175             AC_MSG_ERROR([MOZ_TOOLS is not set])
2176         fi
2177         MOZ_TOOLS_DIR=`cd $MOZ_TOOLS && pwd -W`
2178         if test "$?" != "0" -o -z "$MOZ_TOOLS_DIR"; then
2179             AC_MSG_ERROR([cd \$MOZ_TOOLS failed. MOZ_TOOLS ==? $MOZ_TOOLS])
2180         fi
2181         MOZ_TOOLS_BIN_DIR="$(cd "$MOZ_TOOLS_DIR/bin" && pwd)"
2182         if test `echo ${PATH}: | grep -ic "$MOZ_TOOLS_BINDIR:"` = 0; then
2183             AC_MSG_ERROR([\$MOZ_TOOLS\\bin must be in your path.])
2184         fi
2185         ;;
2186     esac
2188     case "$host_os" in
2189     cygwin*|msvc*|mks*)
2190         AC_MSG_ERROR([Using a Cygwin build environment is unsupported. Configure cannot check for presence of necessary headers. Please upgrade to MozillaBuild; see https://developer.mozilla.org/en/Windows_Build_Prerequisites.])
2191         ;;
2192     esac
2194     case "$target" in
2195     i*86-*)
2196         if test "$HAVE_64BIT_OS"; then
2197             AC_MSG_ERROR([You are targeting i386 but using the 64-bit compiler.])
2198         fi
2200         if test -n "$GNU_CC"; then
2201             CFLAGS="$CFLAGS -mstackrealign -fno-keep-inline-dllexport"
2202             CXXFLAGS="$CXXFLAGS -mstackrealign -fno-keep-inline-dllexport"
2203             LDFLAGS="$LDFLAGS -Wl,--enable-stdcall-fixup -Wl,--large-address-aware"
2204         else
2205             DSO_LDOPTS="$DSO_LDOPTS -MACHINE:X86"
2206             LDFLAGS="$LDFLAGS -SAFESEH"
2207         fi
2209         AC_DEFINE(_X86_)
2210         ;;
2211     x86_64-*)
2212         if test -n "$_WIN32_MSVC"; then
2213             DSO_LDOPTS="$DSO_LDOPTS -MACHINE:X64"
2214         fi
2215         AC_DEFINE(_AMD64_)
2216         ;;
2217     *)
2218         AC_DEFINE(_CPU_ARCH_NOT_DEFINED)
2219         ;;
2220     esac
2221     ;;
2223 *-netbsd*)
2224     DSO_CFLAGS=''
2225     CFLAGS="$CFLAGS -Dunix"
2226     CXXFLAGS="$CXXFLAGS -Dunix"
2227     if $CC -E - -dM </dev/null | grep __ELF__ >/dev/null; then
2228         DLL_SUFFIX=".so"
2229         DSO_PIC_CFLAGS='-fPIC -DPIC'
2230         DSO_LDOPTS='-shared'
2231         BIN_FLAGS='-Wl,--export-dynamic'
2232     else
2233         DSO_PIC_CFLAGS='-fPIC -DPIC'
2234         DLL_SUFFIX=".so.1.0"
2235         DSO_LDOPTS='-shared'
2236     fi
2237     # This will fail on a.out systems prior to 1.5.1_ALPHA.
2238     MKSHLIB_FORCE_ALL='-Wl,--whole-archive'
2239     MKSHLIB_UNFORCE_ALL='-Wl,--no-whole-archive'
2240     if test "$LIBRUNPATH"; then
2241         DSO_LDOPTS="-Wl,-R$LIBRUNPATH $DSO_LDOPTS"
2242     fi
2243     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-soname,$(notdir $@) -o $@'
2244     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-soname,$(notdir $@)) -o $@'
2245     ;;
2247 *-openbsd*)
2248     if test "$SO_VERSION"; then
2249         DLL_SUFFIX=".so.$SO_VERSION"
2250     else
2251         DLL_SUFFIX=".so.1.0"
2252     fi
2253     MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib -Wl,-rpath-link,$(if $(X11BASE),$(X11BASE),/usr/X11R6)/lib'
2254     DSO_CFLAGS=''
2255     DSO_PIC_CFLAGS='-fPIC'
2256     DSO_LDOPTS='-shared -fPIC'
2257     if test "$LIBRUNPATH"; then
2258         DSO_LDOPTS="-R$LIBRUNPATH $DSO_LDOPTS"
2259     fi
2260     ;;
2262 *-os2*)
2263     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
2264     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
2265     AC_DEFINE(OS2)
2266     AC_DEFINE(XP_OS2)
2267     AC_DEFINE(OS2EMX_PLAIN_CHAR)
2268     AC_DEFINE(TCPV40HDRS)
2269     DLL_PREFIX=
2270     LIB_PREFIX=
2271     LIB_SUFFIX=lib
2272     BIN_SUFFIX=".exe"
2273     DLL_SUFFIX=".dll"
2274     IMPORT_LIB_SUFFIX=lib
2275     DSO_PIC_CFLAGS=
2276     AR=emxomfar
2277     AR_FLAGS='r $@'
2278     CFLAGS="$CFLAGS -Zomf"
2279     CXXFLAGS="$CXXFLAGS -Zomf"
2280     DSO_LDOPTS='-Zdll'
2281     BIN_FLAGS='-Zlinker /ST:0x100000'
2282     IMPLIB='emximp -o'
2283     FILTER='true'
2284     LDFLAGS='-Zmap'
2285     WARNINGS_AS_ERRORS='-Werror'
2286     MOZ_DEBUG_FLAGS="-g -fno-inline"
2287     MOZ_OPTIMIZE_FLAGS="-O2"
2288     MOZ_OPTIMIZE_LDFLAGS="-s -Zlinker /EXEPACK:2 -Zlinker /PACKCODE -Zlinker /PACKDATA"
2289     LIBXUL_LIBS='-L$(LIBXUL_DIST)/lib $(LIBXUL_DIST)/lib/xul.lib $(LIBXUL_DIST)/lib/mozalloc.lib'
2290     TARGET_MD_ARCH=os2
2291     _PLATFORM_DEFAULT_TOOLKIT="cairo-os2"
2292     RC=rc.exe
2293     MC=mc.exe
2294     RCFLAGS='-n'
2295     MOZ_USER_DIR="Mozilla"
2296     ZIP="$ZIP -X"
2297     STRIP=lxlite
2298     STRIP_FLAGS="/yua /ydd /yxd /ynl /anp /b- /cs+ /d /i- /ml1 /mr2 /mf2 /r+ /u+ /x- /zs:0 /zx /zd"
2300     if test "$MOZTOOLS"; then
2301         MOZ_TOOLS_DIR=`echo $MOZTOOLS | sed -e 's|\\\\|/|g'`
2302     else
2303         AC_MSG_ERROR([MOZTOOLS is not set])
2304     fi
2305     if test -n "$MOZ_OS2_HIGH_MEMORY"; then
2306         DSO_LDOPTS="$DSO_LDOPTS -Zhigh-mem"
2307         LDFLAGS="$LDFLAGS -Zhigh-mem"
2308         MOZ_OPTIMIZE_LDFLAGS="$MOZ_OPTIMIZE_LDFLAGS -Zhigh-mem"
2309         AC_DEFINE(MOZ_OS2_HIGH_MEMORY)
2310     fi
2312     # GCC for OS/2 currently predefines these, but we don't want them
2313     _DEFINES_CFLAGS="$_DEFINES_CFLAGS -Uunix -U__unix -U__unix__"
2314     _DEFINES_CXXFLAGS="$_DEFINES_CXXFLAGS -Uunix -U__unix -U__unix__"
2316     AC_CACHE_CHECK(for __declspec(dllexport),
2317         ac_os2_declspec,
2318         [AC_TRY_COMPILE([__declspec(dllexport) void ac_os2_declspec(void) {}],
2319                         [return 0;],
2320                         ac_os2_declspec="yes",
2321                         ac_os2_declspec="no")])
2322     if test "$ac_os2_declspec" != "yes"; then
2323         AC_MSG_ERROR([Compiler does not support __declspec(dllexport), install GCC-4.3.2 or newer])
2324     fi
2325     ;;
2327 *-solaris*)
2328     AC_DEFINE(SOLARIS)
2329     TARGET_NSPR_MDCPUCFG='\"md/_solaris.cfg\"'
2330     MOZ_FIX_LINK_PATHS=
2331     # $ORIGIN/.. is for shared libraries under components/ to locate shared
2332     # libraries one level up (e.g. libnspr4.so)
2333     if test "$SOLARIS_SUNPRO_CC"; then
2334        LDFLAGS="$LDFLAGS -z ignore -R '\$\$ORIGIN:\$\$ORIGIN/..' -z lazyload -z combreloc -z muldefs"
2335        LIBS="-lCrun -lCstd -lc $LIBS"
2336        AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
2337        CFLAGS="$CFLAGS -xlibmieee -xstrconst -xbuiltin=%all -D__FUNCTION__=__func__"
2338        CXXFLAGS="$CXXFLAGS -xlibmieee -xbuiltin=%all -features=tmplife,tmplrefstatic,extensions,no%except -norunpath -D__FUNCTION__=__func__ -template=no%extdef"
2339        LDFLAGS="-xildoff $LDFLAGS"
2340        if test -z "$CROSS_COMPILE" -a -f /usr/lib/ld/map.noexstk; then
2341            _SAVE_LDFLAGS=$LDFLAGS
2342            LDFLAGS="-M /usr/lib/ld/map.noexstk $LDFLAGS"
2343            AC_TRY_LINK([#include <stdio.h>],
2344                        [printf("Hello World\n");],
2345                        ,
2346                        [LDFLAGS=$_SAVE_LDFLAGS])
2347        fi
2348        MOZ_OPTIMIZE_FLAGS="-xO4"
2349        MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_FLAGS) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
2350        MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_FLAGS) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
2351        MKSHLIB_FORCE_ALL='-z allextract'
2352        MKSHLIB_UNFORCE_ALL='-z defaultextract'
2353        DSO_LDOPTS='-G'
2354        AR_LIST="$AR t"
2355        AR_EXTRACT="$AR x"
2356        AR_DELETE="$AR d"
2357        AR='$(CXX) -xar'
2358        AR_FLAGS='-o $@'
2359        AS='/usr/ccs/bin/as'
2360        ASFLAGS="$ASFLAGS -K PIC -L -P -D_ASM -D__STDC__=0"
2361        AS_DASH_C_FLAG=''
2362        TARGET_COMPILER_ABI="sunc"
2363        CC_VERSION=`$CC -V 2>&1 | grep '^cc:' 2>/dev/null | $AWK -F\: '{ print $2 }'`
2364        CXX_VERSION=`$CXX -V 2>&1 | grep '^CC:' 2>/dev/null | $AWK -F\: '{ print $2 }'`
2365        AC_MSG_CHECKING([for Sun C++ compiler version >= 5.9])
2366        AC_LANG_SAVE
2367        AC_LANG_CPLUSPLUS
2368        AC_TRY_COMPILE([],
2369            [#if (__SUNPRO_CC < 0x590)
2370            #error "Denied"
2371            #endif],
2372            _BAD_COMPILER=,_BAD_COMPILER=1)
2373        if test -n "$_BAD_COMPILER"; then
2374            _res="no"
2375            AC_MSG_ERROR([Sun C++ 5.9 (Sun Studio 12) or higher is required to build. Your compiler version is $CXX_VERSION .])
2376        else
2377            _res="yes"
2378        fi
2379        AC_TRY_COMPILE([],
2380            [#if (__SUNPRO_CC >= 0x5100)
2381            #error "Sun C++ 5.10 or above"
2382            #endif],
2383            _ABOVE_SS12U1=,_ABOVE_SS12U1=1)
2384        if test "$_ABOVE_SS12U1"; then
2385            # disable xannotate
2386            CXXFLAGS="$CXXFLAGS -xannotate=no"
2387        fi
2388        AC_MSG_RESULT([$_res])
2389        AC_LANG_RESTORE
2390     else
2391        LDFLAGS="$LDFLAGS -Wl,-z,ignore -Wl,-R,'\$\$ORIGIN:\$\$ORIGIN/..' -Wl,-z,lazyload -Wl,-z,combreloc -Wl,-z,muldefs"
2392        LIBS="-lc $LIBS"
2393        MKSHLIB_FORCE_ALL='-Wl,-z -Wl,allextract'
2394        MKSHLIB_UNFORCE_ALL='-Wl,-z -Wl,defaultextract'
2395        ASFLAGS="$ASFLAGS -fPIC"
2396        DSO_LDOPTS='-shared'
2397        WARNINGS_AS_ERRORS='-Werror'
2398        _WARNINGS_CFLAGS=''
2399        _WARNINGS_CXXFLAGS=''
2400        if test "$OS_RELEASE" = "5.3"; then
2401            AC_DEFINE(MUST_UNDEF_HAVE_BOOLEAN_AFTER_INCLUDES)
2402        fi
2403     fi
2404     if test "$OS_RELEASE" = "5.5.1"; then
2405         AC_DEFINE(NEED_USLEEP_PROTOTYPE)
2406     fi
2407     ;;
2409 *-sunos*)
2410     DSO_LDOPTS='-Bdynamic'
2411     MKSHLIB='-$(LD) $(DSO_LDOPTS) -o $@'
2412     MKCSHLIB='-$(LD) $(DSO_LDOPTS) -o $@'
2413     AC_DEFINE(SUNOS4)
2414     AC_DEFINE(SPRINTF_RETURNS_STRING)
2415     case "$(target_os)" in
2416     sunos4.1*)
2417         DLL_SUFFIX='.so.1.0'
2418         ;;
2419     esac
2420     ;;
2422 *-os2*)
2423     HOST_NSPR_MDCPUCFG='\"md/_os2.cfg\"'
2424     ;;
2426 esac
2428 case "$target" in
2429 *-*linux*)
2430     # Includes linux-android
2431     AC_DEFINE(XP_LINUX)
2432     ;;
2433 esac
2435 AC_SUBST(MOZ_LINKER)
2436 if test -n "$MOZ_LINKER"; then
2437   AC_DEFINE(MOZ_LINKER)
2440 dnl Only one oddball right now (QNX), but this gives us flexibility
2441 dnl if any other platforms need to override this in the future.
2442 AC_DEFINE_UNQUOTED(D_INO,$DIRENT_INO)
2444 dnl ========================================================
2445 dnl Any platform that doesn't have MKSHLIB_FORCE_ALL defined
2446 dnl by now will not have any way to link most binaries (tests
2447 dnl as well as viewer, apprunner, etc.), because some symbols
2448 dnl will be left out of the "composite" .so's by ld as unneeded.
2449 dnl So, by defining NO_LD_ARCHIVE_FLAGS for these platforms,
2450 dnl they can link in the static libs that provide the missing
2451 dnl symbols.
2452 dnl ========================================================
2453 NO_LD_ARCHIVE_FLAGS=
2454 if test -z "$MKSHLIB_FORCE_ALL" -o -z "$MKSHLIB_UNFORCE_ALL"; then
2455     NO_LD_ARCHIVE_FLAGS=1
2457 case "$target" in
2458 *-os2*)
2459     NO_LD_ARCHIVE_FLAGS=
2460     ;;
2461 *-aix4.3*|*-aix5*)
2462     NO_LD_ARCHIVE_FLAGS=
2463     ;;
2464 *-mingw*)
2465     if test -z "$GNU_CC"; then
2466         NO_LD_ARCHIVE_FLAGS=
2467     fi
2468     ;;
2469 esac
2470 AC_SUBST(NO_LD_ARCHIVE_FLAGS)
2472 dnl ========================================================
2473 dnl = Flags to strip unused symbols from .so components and
2474 dnl = to export jemalloc symbols when linking a program
2475 dnl ========================================================
2476 case "$target" in
2477     *-linux*|*-kfreebsd*-gnu|*-gnu*)
2478         MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,--version-script -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-version-script'
2479         ;;
2480     *-solaris*)
2481         if test -z "$GNU_CC"; then
2482          MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-M $(BUILD_TOOLS)/gnu-ld-scripts/components-mapfile'
2483         else
2484          if test -z "$GCC_USE_GNU_LD"; then
2485           MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,-M -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-mapfile'
2486          else
2487           MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,--version-script -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-version-script'
2488          fi
2489         fi
2490         ;;
2491     *-darwin*)
2492         MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,-exported_symbols_list -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-export-list'
2493         ;;
2494     *-mingw*)
2495         if test -n "$GNU_CC"; then
2496            MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,--version-script,$(BUILD_TOOLS)/gnu-ld-scripts/components-version-script'
2497         fi
2498         ;;
2499 esac
2501 if test -z "$COMPILE_ENVIRONMENT"; then
2502     SKIP_COMPILER_CHECKS=1
2503     SKIP_LIBRARY_CHECKS=1
2504 else
2505     MOZ_COMPILER_OPTS
2508 if test -z "$SKIP_COMPILER_CHECKS"; then
2509 dnl Checks for typedefs, structures, and compiler characteristics.
2510 dnl ========================================================
2511 AC_HEADER_STDC
2512 AC_C_CONST
2513 AC_TYPE_MODE_T
2514 AC_TYPE_OFF_T
2515 AC_TYPE_PID_T
2516 AC_TYPE_SIZE_T
2517 AC_LANG_CPLUSPLUS
2518 AC_LANG_C
2519 AC_MSG_CHECKING(for ssize_t)
2520 AC_CACHE_VAL(ac_cv_type_ssize_t,
2521  [AC_TRY_COMPILE([#include <stdio.h>
2522                   #include <sys/types.h>],
2523                  [ssize_t foo = 0;],
2524                  [ac_cv_type_ssize_t=true],
2525                  [ac_cv_type_ssize_t=false])])
2526 if test "$ac_cv_type_ssize_t" = true ; then
2527   AC_DEFINE(HAVE_SSIZE_T)
2528   AC_MSG_RESULT(yes)
2529 else
2530   AC_MSG_RESULT(no)
2532 AC_STRUCT_ST_BLKSIZE
2533 AC_MSG_CHECKING(for siginfo_t)
2534 AC_CACHE_VAL(ac_cv_siginfo_t,
2535  [AC_TRY_COMPILE([#define _POSIX_C_SOURCE 199506L
2536                   #include <signal.h>],
2537                  [siginfo_t* info;],
2538                  [ac_cv_siginfo_t=true],
2539                  [ac_cv_siginfo_t=false])])
2540 if test "$ac_cv_siginfo_t" = true ; then
2541   AC_DEFINE(HAVE_SIGINFO_T)
2542   AC_MSG_RESULT(yes)
2543 else
2544   AC_MSG_RESULT(no)
2547 AC_LANG_CPLUSPLUS
2549 MOZ_CXX11
2551 AC_LANG_C
2553 dnl Check for .hidden assembler directive and visibility attribute.
2554 dnl Borrowed from glibc configure.in
2555 dnl ===============================================================
2556 if test "$GNU_CC"; then
2557   AC_CACHE_CHECK(for visibility(hidden) attribute,
2558                  ac_cv_visibility_hidden,
2559                  [cat > conftest.c <<EOF
2560                   int foo __attribute__ ((visibility ("hidden"))) = 1;
2562                   ac_cv_visibility_hidden=no
2563                   if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
2564                     if egrep '\.(hidden|private_extern).*foo' conftest.s >/dev/null; then
2565                       ac_cv_visibility_hidden=yes
2566                     fi
2567                   fi
2568                   rm -f conftest.[cs]
2569                  ])
2570   if test "$ac_cv_visibility_hidden" = "yes"; then
2571     AC_DEFINE(HAVE_VISIBILITY_HIDDEN_ATTRIBUTE)
2573     AC_CACHE_CHECK(for visibility(default) attribute,
2574                    ac_cv_visibility_default,
2575                    [cat > conftest.c <<EOF
2576                     int foo __attribute__ ((visibility ("default"))) = 1;
2578                     ac_cv_visibility_default=no
2579                     if ${CC-cc} -fvisibility=hidden -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
2580                       if ! egrep '\.(hidden|private_extern).*foo' conftest.s >/dev/null; then
2581                         ac_cv_visibility_default=yes
2582                       fi
2583                     fi
2584                     rm -f conftest.[cs]
2585                    ])
2586     if test "$ac_cv_visibility_default" = "yes"; then
2587       AC_DEFINE(HAVE_VISIBILITY_ATTRIBUTE)
2589       AC_CACHE_CHECK(for visibility pragma support,
2590                      ac_cv_visibility_pragma,
2591                      [cat > conftest.c <<EOF
2592 #pragma GCC visibility push(hidden)
2593                       int foo_hidden = 1;
2594 #pragma GCC visibility push(default)
2595                       int foo_default = 1;
2597                       ac_cv_visibility_pragma=no
2598                       if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
2599                         if egrep '\.(hidden|private_extern).*foo_hidden' conftest.s >/dev/null; then
2600                           if ! egrep '\.(hidden|private_extern).*foo_default' conftest.s > /dev/null; then
2601                             ac_cv_visibility_pragma=yes
2602                           fi
2603                         fi
2604                       fi
2605                       rm -f conftest.[cs]
2606                     ])
2607       if test "$ac_cv_visibility_pragma" = "yes"; then
2608         AC_CACHE_CHECK(For gcc visibility bug with class-level attributes (GCC bug 26905),
2609                        ac_cv_have_visibility_class_bug,
2610                        [cat > conftest.c <<EOF
2611 #pragma GCC visibility push(hidden)
2612 struct __attribute__ ((visibility ("default"))) TestStruct {
2613   static void Init();
2615 __attribute__ ((visibility ("default"))) void TestFunc() {
2616   TestStruct::Init();
2619                        ac_cv_have_visibility_class_bug=no
2620                        if ! ${CXX-g++} ${CXXFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -S -o conftest.S conftest.c > /dev/null 2>&1 ; then
2621                          ac_cv_have_visibility_class_bug=yes
2622                        else
2623                          if test `egrep -c '@PLT|\\$stub' conftest.S` = 0; then
2624                            ac_cv_have_visibility_class_bug=yes
2625                          fi
2626                        fi
2627                        rm -rf conftest.{c,S}
2628                        ])
2630         AC_CACHE_CHECK(For x86_64 gcc visibility bug with builtins (GCC bug 20297),
2631                        ac_cv_have_visibility_builtin_bug,
2632                        [cat > conftest.c <<EOF
2633 #pragma GCC visibility push(hidden)
2634 #pragma GCC visibility push(default)
2635 #include <string.h>
2636 #pragma GCC visibility pop
2638 __attribute__ ((visibility ("default"))) void Func() {
2639   char c[[100]];
2640   memset(c, 0, sizeof(c));
2643                        ac_cv_have_visibility_builtin_bug=no
2644                        if ! ${CC-cc} ${CFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c > /dev/null 2>&1 ; then
2645                          ac_cv_have_visibility_builtin_bug=yes
2646                        else
2647                          if test `grep -c "@PLT" conftest.S` = 0; then
2648                            ac_cv_visibility_builtin_bug=yes
2649                          fi
2650                        fi
2651                        rm -f conftest.{c,S}
2652                        ])
2653         if test "$ac_cv_have_visibility_builtin_bug" = "no" -a \
2654                 "$ac_cv_have_visibility_class_bug" = "no"; then
2655           VISIBILITY_FLAGS='-I$(DIST)/system_wrappers -include $(topsrcdir)/config/gcc_hidden.h'
2656           WRAP_SYSTEM_INCLUDES=1
2657           STL_FLAGS='-I$(DIST)/stl_wrappers'
2658           WRAP_STL_INCLUDES=1
2659         else
2660           VISIBILITY_FLAGS='-fvisibility=hidden'
2661         fi # have visibility pragma bug
2662       fi   # have visibility pragma
2663     fi     # have visibility(default) attribute
2664   fi       # have visibility(hidden) attribute
2665 fi         # GNU_CC
2667 # visibility hidden flag for Sun Studio on Solaris
2668 if test "$SOLARIS_SUNPRO_CC"; then
2669 VISIBILITY_FLAGS='-xldscope=hidden'
2670 fi         # Sun Studio on Solaris
2672 AC_SUBST(WRAP_SYSTEM_INCLUDES)
2673 AC_SUBST(VISIBILITY_FLAGS)
2675 MOZ_GCC_PR49911
2676 MOZ_GCC_PR39608
2677 if test "$OS_TARGET" != WINNT; then
2678     # Only run this test with clang on non-Windows platforms, because clang
2679     # cannot do enough code gen for now to make this test work correctly.
2680     MOZ_LLVM_PR8927
2683 dnl Check for __force_align_arg_pointer__ for SSE2 on gcc
2684 dnl ========================================================
2685 if test "$GNU_CC"; then
2686   CFLAGS_save="${CFLAGS}"
2687   CFLAGS="${CFLAGS} -Werror"
2688   AC_CACHE_CHECK(for __force_align_arg_pointer__ attribute,
2689                  ac_cv_force_align_arg_pointer,
2690                  [AC_TRY_COMPILE([__attribute__ ((__force_align_arg_pointer__)) void test() {}],
2691                                  [],
2692                                  ac_cv_force_align_arg_pointer="yes",
2693                                  ac_cv_force_align_arg_pointer="no")])
2694   CFLAGS="${CFLAGS_save}"
2695   if test "$ac_cv_force_align_arg_pointer" = "yes"; then
2696     HAVE_GCC_ALIGN_ARG_POINTER=1
2697   else
2698     HAVE_GCC_ALIGN_ARG_POINTER=
2699   fi
2701 AC_SUBST(HAVE_GCC_ALIGN_ARG_POINTER)
2703 dnl Checks for header files.
2704 dnl ========================================================
2705 AC_HEADER_DIRENT
2706 case "$target_os" in
2707 freebsd*|openbsd*)
2708 # for stuff like -lXshm
2709     CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}"
2710     ;;
2711 esac
2712 MOZ_CHECK_COMMON_HEADERS
2714 dnl These are all the places some variant of statfs can be hiding.
2715 MOZ_CHECK_HEADERS(sys/statvfs.h sys/statfs.h sys/vfs.h sys/mount.h)
2717 dnl Quota support
2718 MOZ_CHECK_HEADERS(sys/quota.h sys/sysmacros.h)
2719 MOZ_CHECK_HEADERS([linux/quota.h],,,[#include <sys/socket.h>])
2721 dnl SCTP support - needs various network include headers
2722 MOZ_CHECK_HEADERS([linux/if_addr.h linux/rtnetlink.h],,,[#include <sys/socket.h>])
2724 MOZ_CHECK_HEADERS(sys/types.h netinet/in.h byteswap.h)
2726 dnl Check for sin_len and sin6_len - used by SCTP; only appears in Mac/*BSD generally
2727 AC_CACHE_CHECK(for sockaddr_in.sin_len,
2728                    ac_cv_sockaddr_in_sin_len,
2729                    [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
2730                                     #include <sys/types.h>
2731                                     #endif
2732                                     #include <netinet/in.h>
2733                                     struct sockaddr_in x;
2734                                     void *foo = (void*) &x.sin_len;],
2735                                    [],
2736                                    [ac_cv_sockaddr_in_sin_len=true],
2737                                    [ac_cv_sockaddr_in_sin_len=false])])
2738 if test "$ac_cv_sockaddr_in_sin_len" = true ; then
2739   AC_DEFINE(HAVE_SIN_LEN)
2740 dnl HAVE_CONN_LEN must be the same as HAVE_SIN_LEN (and HAVE_SIN6_LEN too)
2741   AC_DEFINE(HAVE_SCONN_LEN)
2744 AC_CACHE_CHECK(for sockaddr_in6.sin6_len,
2745                ac_cv_sockaddr_in6_sin6_len,
2746                [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
2747                                 #include <sys/types.h>
2748                                 #endif
2749                                 #include <netinet/in.h>
2750                                 struct sockaddr_in6 x;
2751                                 void *foo = (void*) &x.sin6_len;],
2752                                [],
2753                                [ac_cv_sockaddr_in6_sin6_len=true],
2754                                [ac_cv_sockaddr_in6_sin6_len=false])])
2755 if test "$ac_cv_sockaddr_in6_sin6_len" = true ; then
2756   AC_DEFINE(HAVE_SIN6_LEN)
2759 AC_CACHE_CHECK(for sockaddr.sa_len,
2760                ac_cv_sockaddr_sa_len,
2761                [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
2762                                 #include <sys/types.h>
2763                                 #endif
2764                                 #include <sys/socket.h>
2765                                 struct sockaddr x;
2766                                 void *foo = (void*) &x.sa_len;],
2767                                [],
2768                                [ac_cv_sockaddr_sa_len=true],
2769                                [ac_cv_sockaddr_sa_len=false])])
2770 if test "$ac_cv_sockaddr_sa_len" = true ; then
2771   AC_DEFINE(HAVE_SA_LEN)
2774 AC_ARG_ENABLE(dtrace,
2775               [  --enable-dtrace         build with dtrace support if available (default=no)],
2776               [enable_dtrace="yes"],)
2777 if test "x$enable_dtrace" = "xyes"; then
2778   MOZ_CHECK_HEADER(sys/sdt.h, HAVE_DTRACE=1)
2779   if test -n "$HAVE_DTRACE"; then
2780       AC_DEFINE(INCLUDE_MOZILLA_DTRACE)
2781   else
2782       AC_MSG_ERROR([dtrace enabled but sys/sdt.h not found]);
2783   fi
2785 AC_SUBST(HAVE_DTRACE)
2787 case $target in
2788 *-aix4.3*|*-aix5*)
2789         ;;
2791         MOZ_CHECK_HEADERS(sys/cdefs.h)
2792         ;;
2793 esac
2795 MOZ_LINUX_PERF_EVENT
2797 dnl Checks for libraries.
2798 dnl ========================================================
2799 case $target in
2800 *-hpux11.*)
2801         ;;
2803         AC_CHECK_LIB(c_r, gethostbyname_r)
2804         ;;
2805 esac
2807 dnl We don't want to link with libdl even if it's present on OS X, since
2808 dnl it's not used and not part of the default installation. OS/2 has dlfcn
2809 dnl in libc.
2810 dnl We don't want to link against libm or libpthread on Darwin since
2811 dnl they both are just symlinks to libSystem and explicitly linking
2812 dnl against libSystem causes issues when debugging (see bug 299601).
2813 case $target in
2814 *-darwin*)
2815     ;;
2816 *-os2*)
2817     ;;
2819     AC_SEARCH_LIBS(dlopen, dl,
2820         MOZ_CHECK_HEADER(dlfcn.h,
2821         AC_DEFINE(HAVE_DLOPEN)))
2822     ;;
2823 esac
2825 _SAVE_CFLAGS="$CFLAGS"
2826 CFLAGS="$CFLAGS -D_GNU_SOURCE"
2827 AC_CHECK_FUNCS(dladdr memmem)
2828 CFLAGS="$_SAVE_CFLAGS"
2830 if test ! "$GNU_CXX"; then
2832     case $target in
2833     *-aix*)
2834         AC_CHECK_LIB(C_r, demangle)
2835         ;;
2836      *)
2837         AC_CHECK_LIB(C, demangle)
2838         ;;
2839      esac
2842 dnl OS/2 has socket in libc.
2843 case $target in
2844 *-os2*)
2845     ;;
2847     AC_CHECK_LIB(socket, socket)
2848 esac
2850 XLDFLAGS="$X_LIBS"
2851 XLIBS="$X_EXTRA_LIBS"
2853 dnl ========================================================
2854 dnl Checks for X libraries.
2855 dnl Ordering is important.
2856 dnl Xt is dependent upon SM as of X11R6
2857 dnl ========================================================
2858 if test "$no_x" = "yes"; then
2859     AC_DEFINE(NO_X11)
2860 else
2861     AC_DEFINE_UNQUOTED(FUNCPROTO,15)
2862         XLIBS="-lX11 $XLIBS"
2863         _SAVE_LDFLAGS="$LDFLAGS"
2864         LDFLAGS="$XLDFLAGS $LDFLAGS"
2865         AC_CHECK_LIB(X11, XDrawLines, [X11_LIBS="-lX11"],
2866                 [MISSING_X="$MISSING_X -lX11"], $XLIBS)
2867         AC_CHECK_LIB(Xext, XextAddDisplay, [XEXT_LIBS="-lXext"],
2868                 [MISSING_X="$MISSING_X -lXext"], $XLIBS)
2870         AC_CHECK_LIB(Xt, XtFree, [ XT_LIBS="-lXt"], [
2871         unset ac_cv_lib_Xt_XtFree
2872             AC_CHECK_LIB(ICE, IceFlush, [XT_LIBS="-lICE $XT_LIBS"],, $XT_LIBS $XLIBS)
2873             AC_CHECK_LIB(SM, SmcCloseConnection, [XT_LIBS="-lSM $XT_LIBS"],, $XT_LIBS $XLIBS)
2874         AC_CHECK_LIB(Xt, XtFree, [ XT_LIBS="-lXt $XT_LIBS"],
2875                     [MISSING_X="$MISSING_X -lXt"], $X_PRE_LIBS $XT_LIBS $XLIBS)
2876         ])
2878     # AIX needs the motif library linked before libXt to prevent
2879     # crashes in plugins linked against Motif - Bug #98892
2880     case "${target_os}" in
2881     aix*)
2882         XT_LIBS="-lXm $XT_LIBS"
2883         ;;
2884     esac
2886     dnl ========================================================
2887     dnl = Check for XShm
2888     dnl ========================================================
2889     AC_CHECK_LIB(Xext, XShmCreateImage, _HAVE_XSHM_XEXT=1,,
2890         $XLIBS $XEXT_LIBS)
2892     dnl ========================================================
2893     dnl = Check for Xss
2894     dnl ========================================================
2895     MOZ_CHECK_HEADER(X11/extensions/scrnsaver.h,
2896         AC_CHECK_LIB(Xss, XScreenSaverQueryInfo,
2897             [XSS_LIBS="-lXss $XEXT_LIBS $XLIBS"
2898              AC_DEFINE(HAVE_LIBXSS)],, $XEXT_LIBS $XLIBS))
2900         LDFLAGS="$_SAVE_LDFLAGS"
2901 fi # $no_x
2903 AC_SUBST(XCFLAGS)
2904 AC_SUBST(XLDFLAGS)
2905 AC_SUBST(XLIBS)
2906 AC_SUBST(XEXT_LIBS)
2907 AC_SUBST(XT_LIBS)
2908 AC_SUBST(XSS_LIBS)
2910 dnl ========================================================
2911 dnl = pthread support
2912 dnl = Start by checking whether the system support pthreads
2913 dnl ========================================================
2914 case "$target_os" in
2915 darwin*)
2916     MOZ_USE_PTHREADS=1
2917     ;;
2919     MOZ_CHECK_PTHREADS(pthreads,
2920         MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lpthreads",
2921         MOZ_CHECK_PTHREADS(pthread,
2922             MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lpthread",
2923             MOZ_CHECK_PTHREADS(c_r,
2924                 MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lc_r",
2925                 MOZ_CHECK_PTHREADS(c,
2926                     MOZ_USE_PTHREADS=1
2927                 )
2928             )
2929         )
2930     )
2931     ;;
2932 esac
2934 dnl ========================================================
2935 dnl Check the command line for --with-pthreads
2936 dnl ========================================================
2937 MOZ_ARG_WITH_BOOL(pthreads,
2938 [  --with-pthreads         Force use of system pthread library with NSPR ],
2939 [ if test "$MOZ_USE_PTHREADS"x = x; then
2940     AC_MSG_ERROR([ --with-pthreads specified for a system without pthread support ]);
2941 fi],
2942     MOZ_USE_PTHREADS=
2943     _PTHREAD_LDFLAGS=
2946 dnl ========================================================
2947 dnl Do the platform specific pthread hackery
2948 dnl ========================================================
2949 if test "$MOZ_USE_PTHREADS"x != x
2950 then
2951         dnl
2952         dnl See if -pthread is supported.
2953         dnl
2954         rm -f conftest*
2955         ac_cv_have_dash_pthread=no
2956         AC_MSG_CHECKING(whether ${CC-cc} accepts -pthread)
2957         echo 'int main() { return 0; }' | cat > conftest.c
2958         ${CC-cc} -pthread -o conftest conftest.c > conftest.out 2>&1
2959         if test $? -eq 0; then
2960                 if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" -a -z "`egrep -i '(error|incorrect)' conftest.out`" ; then
2961                         ac_cv_have_dash_pthread=yes
2962                 case "$target_os" in
2963                 freebsd*)
2964 # Freebsd doesn't use -pthread for compiles, it uses them for linking
2965                 ;;
2966                 *)
2967                             CFLAGS="$CFLAGS -pthread"
2968                             CXXFLAGS="$CXXFLAGS -pthread"
2969                 ;;
2970                 esac
2971                 fi
2972         fi
2973         rm -f conftest*
2974     AC_MSG_RESULT($ac_cv_have_dash_pthread)
2976         dnl
2977         dnl See if -pthreads is supported.
2978         dnl
2979     ac_cv_have_dash_pthreads=no
2980     if test "$ac_cv_have_dash_pthread" = "no"; then
2981             AC_MSG_CHECKING(whether ${CC-cc} accepts -pthreads)
2982         echo 'int main() { return 0; }' | cat > conftest.c
2983             ${CC-cc} -pthreads -o conftest conftest.c > conftest.out 2>&1
2984         if test $? -eq 0; then
2985                 if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthreads`" -a -z "`egrep -i '(error|incorrect)' conftest.out`" ; then
2986                             ac_cv_have_dash_pthreads=yes
2987                             CFLAGS="$CFLAGS -pthreads"
2988                             CXXFLAGS="$CXXFLAGS -pthreads"
2989                     fi
2990             fi
2991             rm -f conftest*
2992         AC_MSG_RESULT($ac_cv_have_dash_pthreads)
2993     fi
2995         case "$target" in
2996             *-*-freebsd*)
2997                         AC_DEFINE(_REENTRANT)
2998                         AC_DEFINE(_THREAD_SAFE)
2999                         dnl -pthread links in -lpthread, so don't specify it explicitly.
3000                         if test "$ac_cv_have_dash_pthread" = "yes"; then
3001                                 _PTHREAD_LDFLAGS="-pthread"
3002                         fi
3003                         ;;
3005             *-*-openbsd*|*-*-bsdi*)
3006                         AC_DEFINE(_REENTRANT)
3007                         AC_DEFINE(_THREAD_SAFE)
3008                         dnl -pthread links in -lc_r, so don't specify it explicitly.
3009                         if test "$ac_cv_have_dash_pthread" = "yes"; then
3010                 _PTHREAD_LDFLAGS="-pthread"
3011                         fi
3012                         ;;
3014             *-*-linux*|*-*-kfreebsd*-gnu|*-*-gnu*)
3015                         AC_DEFINE(_REENTRANT)
3016                         ;;
3018             *-aix4.3*|*-aix5*)
3019                         AC_DEFINE(_REENTRANT)
3020                         ;;
3022             *-hpux11.*)
3023                         AC_DEFINE(_REENTRANT)
3024                         ;;
3026             *-*-solaris*)
3027                         AC_DEFINE(_REENTRANT)
3028                         if test "$SOLARIS_SUNPRO_CC"; then
3029                                 CFLAGS="$CFLAGS -mt"
3030                                 CXXFLAGS="$CXXFLAGS -mt"
3031                         fi
3032                         ;;
3033         esac
3034     LDFLAGS="${_PTHREAD_LDFLAGS} ${LDFLAGS}"
3035     AC_SUBST(MOZ_USE_PTHREADS)
3039 dnl Checks for library functions.
3040 dnl ========================================================
3041 AC_PROG_GCC_TRADITIONAL
3042 AC_FUNC_MEMCMP
3043 AC_CHECK_FUNCS(random strerror lchown fchmod snprintf memmove stat64 lstat64 truncate64 setbuf isatty)
3044 AC_CHECK_FUNCS(statvfs64 statvfs statfs64 statfs)
3045 AC_CHECK_FUNCS(flockfile getpagesize)
3046 AC_CHECK_FUNCS(localtime_r strtok_r)
3048 dnl check for clock_gettime(), the CLOCK_MONOTONIC clock
3049 AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC),
3050                ac_cv_clock_monotonic,
3051                [for libs in "" -lrt; do
3052                     _SAVE_LIBS="$LIBS"
3053                     LIBS="$LIBS $libs"
3054                     AC_TRY_LINK([#include <time.h>],
3055                                  [ struct timespec ts;
3056                                    clock_gettime(CLOCK_MONOTONIC, &ts); ],
3057                                  ac_cv_clock_monotonic=$libs
3058                                  LIBS="$_SAVE_LIBS"
3059                                  break,
3060                                  ac_cv_clock_monotonic=no)
3061                     LIBS="$_SAVE_LIBS"
3062                 done])
3063 if test "$ac_cv_clock_monotonic" != "no"; then
3064     HAVE_CLOCK_MONOTONIC=1
3065     REALTIME_LIBS=$ac_cv_clock_monotonic
3066     AC_DEFINE(HAVE_CLOCK_MONOTONIC)
3067     AC_SUBST(HAVE_CLOCK_MONOTONIC)
3068     AC_SUBST(REALTIME_LIBS)
3071 dnl check for wcrtomb/mbrtowc
3072 dnl =======================================================================
3073 if test -z "$MACOS_DEPLOYMENT_TARGET" || test "$MACOS_DEPLOYMENT_TARGET" -ge "100300"; then
3074 AC_LANG_SAVE
3075 AC_LANG_CPLUSPLUS
3076 AC_CACHE_CHECK(for wcrtomb,
3077     ac_cv_have_wcrtomb,
3078     [AC_TRY_LINK([#include <wchar.h>],
3079                  [mbstate_t ps={0};wcrtomb(0,'f',&ps);],
3080                  ac_cv_have_wcrtomb="yes",
3081                  ac_cv_have_wcrtomb="no")])
3082 if test "$ac_cv_have_wcrtomb" = "yes"; then
3083     AC_DEFINE(HAVE_WCRTOMB)
3085 AC_CACHE_CHECK(for mbrtowc,
3086     ac_cv_have_mbrtowc,
3087     [AC_TRY_LINK([#include <wchar.h>],
3088                  [mbstate_t ps={0};mbrtowc(0,0,0,&ps);],
3089                  ac_cv_have_mbrtowc="yes",
3090                  ac_cv_have_mbrtowc="no")])
3091 if test "$ac_cv_have_mbrtowc" = "yes"; then
3092     AC_DEFINE(HAVE_MBRTOWC)
3094 AC_LANG_RESTORE
3097 AC_CACHE_CHECK(
3098     [for res_ninit()],
3099     ac_cv_func_res_ninit,
3100     [if test "$OS_TARGET" = NetBSD -o "$OS_TARGET" = OpenBSD; then
3101         dnl no need for res_ninit() on NetBSD and OpenBSD
3102         ac_cv_func_res_ninit=no
3103      else
3104         AC_TRY_LINK([
3105             #ifdef linux
3106             #define _BSD_SOURCE 1
3107             #endif
3108             #include <resolv.h>
3109             ],
3110             [int foo = res_ninit(&_res);],
3111             [ac_cv_func_res_ninit=yes],
3112             [ac_cv_func_res_ninit=no])
3113      fi
3114     ])
3116 if test "$ac_cv_func_res_ninit" = "yes"; then
3117     AC_DEFINE(HAVE_RES_NINIT)
3118 dnl must add the link line we do something as foolish as this... dougt
3119 dnl else
3120 dnl    AC_CHECK_LIB(bind, res_ninit, AC_DEFINE(HAVE_RES_NINIT),
3121 dnl        AC_CHECK_LIB(resolv, res_ninit, AC_DEFINE(HAVE_RES_NINIT)))
3124 AC_LANG_CPLUSPLUS
3126 case $target_os in
3127     darwin*|mingw*|os2*)
3128         ;;
3129     *)
3131 AC_CHECK_LIB(c, iconv, [_ICONV_LIBS="$_ICONV_LIBS"],
3132     AC_CHECK_LIB(iconv, iconv, [_ICONV_LIBS="$_ICONV_LIBS -liconv"],
3133         AC_CHECK_LIB(iconv, libiconv, [_ICONV_LIBS="$_ICONV_LIBS -liconv"])))
3134 _SAVE_LIBS=$LIBS
3135 LIBS="$LIBS $_ICONV_LIBS"
3136 AC_CACHE_CHECK(
3137     [for iconv()],
3138     ac_cv_func_iconv,
3139     [AC_TRY_LINK([
3140         #include <stdlib.h>
3141         #include <iconv.h>
3142         ],
3143         [
3144             iconv_t h = iconv_open("", "");
3145             iconv(h, NULL, NULL, NULL, NULL);
3146             iconv_close(h);
3147         ],
3148         [ac_cv_func_iconv=yes],
3149         [ac_cv_func_iconv=no]
3150         )]
3151     )
3152 if test "$ac_cv_func_iconv" = "yes"; then
3153     AC_DEFINE(HAVE_ICONV)
3154     LIBXUL_LIBS="$LIBXUL_LIBS $_ICONV_LIBS"
3155     LIBICONV="$_ICONV_LIBS"
3156     AC_CACHE_CHECK(
3157         [for iconv() with const input],
3158         ac_cv_func_const_iconv,
3159         [AC_TRY_COMPILE([
3160             #include <stdlib.h>
3161             #include <iconv.h>
3162             ],
3163             [
3164                 const char *input = "testing";
3165                 iconv_t h = iconv_open("", "");
3166                 iconv(h, &input, NULL, NULL, NULL);
3167                 iconv_close(h);
3168             ],
3169             [ac_cv_func_const_iconv=yes],
3170             [ac_cv_func_const_iconv=no]
3171             )]
3172         )
3173     if test "$ac_cv_func_const_iconv" = "yes"; then
3174         AC_DEFINE(HAVE_ICONV_WITH_CONST_INPUT)
3175     fi
3177 LIBS=$_SAVE_LIBS
3179     ;;
3180 esac
3182 AM_LANGINFO_CODESET
3184 AC_LANG_C
3186 dnl **********************
3187 dnl *** va_copy checks ***
3188 AC_CACHE_CHECK([for an implementation of va_copy()],
3189                ac_cv_va_copy,
3190     [AC_TRY_COMPILE([#include <stdarg.h>
3191                      #include <stdlib.h>
3192         void f (int i, ...) {
3193             va_list args1, args2;
3194             va_start (args1, i);
3195             va_copy (args2, args1);
3196             if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
3197                 exit (1);
3198             va_end (args1); va_end (args2);
3199         }],
3200         [f(0, 42); return 0],
3201         [ac_cv_va_copy=yes],
3202         [ac_cv_va_copy=no]
3203     )]
3205 AC_CACHE_CHECK([whether va_list can be copied by value],
3206                ac_cv_va_val_copy,
3207     [AC_TRY_COMPILE([#include <stdarg.h>
3208                      #include <stdlib.h>
3209         void f (int i, ...) {
3210             va_list args1, args2;
3211             va_start (args1, i);
3212             args2 = args1;
3213             if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
3214                 exit (1);
3215             va_end (args1); va_end (args2);
3216         }],
3217         [f(0, 42); return 0],
3218         [ac_cv_va_val_copy=yes],
3219         [ac_cv_va_val_copy=no],
3220     )]
3222 if test "x$ac_cv_va_copy" = "xyes"; then
3223     AC_DEFINE(VA_COPY, va_copy)
3224     AC_DEFINE(HAVE_VA_COPY)
3227 if test "x$ac_cv_va_val_copy" = "xno"; then
3228    AC_DEFINE(HAVE_VA_LIST_AS_ARRAY)
3231 dnl ===================================================================
3232 dnl ========================================================
3233 dnl Put your C++ language/feature checks below
3234 dnl ========================================================
3235 AC_LANG_CPLUSPLUS
3237 ARM_ABI_PREFIX=
3238 if test "$GNU_CC"; then
3239   if test "$CPU_ARCH" = "arm" ; then
3240     AC_CACHE_CHECK(for ARM EABI,
3241         ac_cv_gcc_arm_eabi,
3242         [AC_TRY_COMPILE([],
3243                         [
3244 #if defined(__ARM_EABI__)
3245   return 0;
3246 #else
3247 #error Not ARM EABI.
3248 #endif
3249                         ],
3250                         ac_cv_gcc_arm_eabi="yes",
3251                         ac_cv_gcc_arm_eabi="no")])
3252     if test "$ac_cv_gcc_arm_eabi" = "yes"; then
3253         HAVE_ARM_EABI=1
3254         ARM_ABI_PREFIX=eabi-
3255     else
3256         ARM_ABI_PREFIX=oabi-
3257     fi
3258   fi
3260   TARGET_COMPILER_ABI="${TARGET_COMPILER_ABI-${ARM_ABI_PREFIX}gcc3}"
3263 dnl Check to see if we can resolve ambiguity with |using|.
3264 AC_CACHE_CHECK(whether the C++ \"using\" keyword resolves ambiguity,
3265                ac_cv_cpp_ambiguity_resolving_using,
3266                [AC_TRY_COMPILE(class X {
3267                                  public: int go(const X&) {return 3;}
3268                                          int jo(const X&) {return 3;}
3269                                };
3270                                class Y : public X {
3271                                  public:  int go(int) {return 2;}
3272                                           int jo(int) {return 2;}
3273                                           using X::jo;
3274                                  private: using X::go;
3275                                };,
3276                                X x; Y y; y.jo(x);,
3277                                ac_cv_cpp_ambiguity_resolving_using=yes,
3278                                ac_cv_cpp_ambiguity_resolving_using=no)])
3279 if test "$ac_cv_cpp_ambiguity_resolving_using" = yes ; then
3280    AC_DEFINE(HAVE_CPP_AMBIGUITY_RESOLVING_USING)
3283 dnl See if a dynamic_cast to void* gives the most derived object.
3284 AC_CACHE_CHECK(for C++ dynamic_cast to void*,
3285                ac_cv_cpp_dynamic_cast_void_ptr,
3286                [AC_TRY_RUN([class X { int i; public: virtual ~X() { } };
3287                             class Y { int j; public: virtual ~Y() { } };
3288                             class Z : public X, public Y { int k; };
3290                             int main() {
3291                                  Z mdo;
3292                                  X *subx = (X*)&mdo;
3293                                  Y *suby = (Y*)&mdo;
3294                                  return !((((void*)&mdo != (void*)subx) &&
3295                                            ((void*)&mdo == dynamic_cast<void*>(subx))) ||
3296                                           (((void*)&mdo != (void*)suby) &&
3297                                            ((void*)&mdo == dynamic_cast<void*>(suby))));
3298                             }],
3299                            ac_cv_cpp_dynamic_cast_void_ptr=yes,
3300                            ac_cv_cpp_dynamic_cast_void_ptr=no,
3301                            ac_cv_cpp_dynamic_cast_void_ptr=no)])
3302 if test "$ac_cv_cpp_dynamic_cast_void_ptr" = yes ; then
3303    AC_DEFINE(HAVE_CPP_DYNAMIC_CAST_TO_VOID_PTR)
3307 dnl note that this one is reversed - if the test fails, then
3308 dnl we require implementations of unused virtual methods. Which
3309 dnl really blows because it means we'll have useless vtable
3310 dnl bloat.
3311 AC_CACHE_CHECK(whether C++ requires implementation of unused virtual methods,
3312                ac_cv_cpp_unused_required,
3313                [AC_TRY_LINK(class X {private: virtual void never_called();};,
3314                                X x;,
3315                                ac_cv_cpp_unused_required=no,
3316                                ac_cv_cpp_unused_required=yes)])
3317 if test "$ac_cv_cpp_unused_required" = yes ; then
3318    AC_DEFINE(NEED_CPP_UNUSED_IMPLEMENTATIONS)
3322 dnl Some compilers have trouble comparing a constant reference to a templatized
3323 dnl class to zero, and require an explicit operator==() to be defined that takes
3324 dnl an int. This test separates the strong from the weak.
3326 AC_CACHE_CHECK(for trouble comparing to zero near std::operator!=(),
3327                ac_cv_trouble_comparing_to_zero,
3328                [AC_TRY_COMPILE([#include <algorithm>
3329                                 template <class T> class Foo {};
3330                                 class T2;
3331                                 template <class T> int operator==(const T2*, const T&) { return 0; }
3332                                 template <class T> int operator!=(const T2*, const T&) { return 0; }],
3333                                [Foo<int> f; return (0 != f);],
3334                                ac_cv_trouble_comparing_to_zero=no,
3335                                ac_cv_trouble_comparing_to_zero=yes)])
3336 if test "$ac_cv_trouble_comparing_to_zero" = yes ; then
3337   AC_DEFINE(HAVE_CPP_TROUBLE_COMPARING_TO_ZERO)
3340 # try harder, when checking for __thread support, see bug 521750 comment #33 and below
3341 # We pass MOZ_OPTIMIZE_LDFLAGS to the linker because if dead_strip is
3342 # enabled, the linker in xcode 4.1 will crash. Without this it would crash when
3343 # linking XUL.
3344 _SAVE_LDFLAGS=$LDFLAGS
3345 LDFLAGS="$LDFLAGS $DSO_PIC_CFLAGS $DSO_LDOPTS $MOZ_OPTIMIZE_LDFLAGS"
3346 AC_CACHE_CHECK(for __thread keyword for TLS variables,
3347                ac_cv_thread_keyword,
3348                [AC_TRY_LINK([__thread bool tlsIsMainThread = false;],
3349                             [return tlsIsMainThread;],
3350                             ac_cv_thread_keyword=yes,
3351                             ac_cv_thread_keyword=no)])
3352 LDFLAGS=$_SAVE_LDFLAGS
3353 # The custom dynamic linker doesn't support TLS variables
3354 MOZ_TLS=
3355 if test "$ac_cv_thread_keyword" = yes -a "$MOZ_LINKER" != 1; then
3356   # mips builds fail with TLS variables because of a binutils bug.
3357   # See bug 528687
3358   # OpenBSD doesn't have TLS support, and the test succeeds with clang++
3359   case "${target}" in
3360     mips*-*)
3361       :
3362       ;;
3363     *-android*|*-linuxandroid*)
3364       :
3365       ;;
3366     *-openbsd*)
3367       :
3368       ;;
3369     *)
3370       AC_DEFINE(HAVE_THREAD_TLS_KEYWORD)
3371       MOZ_TLS=1
3372       ;;
3373   esac
3376 dnl Using the custom linker on ARMv6 requires 16k alignment of ELF segments.
3377 if test -n "$MOZ_LINKER"; then
3378   if test "$CPU_ARCH" = arm; then
3379     dnl When building for < ARMv7, we need to ensure 16k alignment of ELF segments
3380     if test -n "$ARM_ARCH" && test "$ARM_ARCH" -lt 7; then
3381       LDFLAGS="$LDFLAGS -Wl,-z,max-page-size=0x4000 -Wl,-z,common-page-size=0x4000"
3382       _SUBDIR_LDFLAGS="$_SUBDIR_LDFLAGS -Wl,-z,max-page-size=0x4000 -Wl,-z,common-page-size=0x4000"
3383     fi
3384   fi
3387 dnl The custom linker doesn't support text relocations, but NDK >= r6b
3388 dnl creates some (http://code.google.com/p/android/issues/detail?id=23203)
3389 dnl We however want to avoid these text relocations, and this can be done
3390 dnl by making gcc not link crtbegin and crtend. In the broken NDKs, crtend
3391 dnl doesn't contain anything at all, beside placeholders for some sections,
3392 dnl and crtbegin only contains a finalizer function that calls
3393 dnl __cxa_finalize. The custom linker actually takes care of calling
3394 dnl __cxa_finalize when the library doesn't call it itself, which makes it
3395 dnl safe not to link crtbegin. Besides, previous versions of the NDK didn't
3396 dnl link crtbegin and crtend at all.
3397 if test -n "$MOZ_LINKER" -a "$OS_TARGET" = "Android"; then
3398   AC_CACHE_CHECK([whether the CRT objects have text relocations],
3399     ac_cv_crt_has_text_relocations,
3400     [echo 'int foo() { return 0; }' > conftest.cpp
3401      if AC_TRY_COMMAND(${CXX-g++} -o conftest${DLL_SUFFIX} $CXXFLAGS $DSO_LDOPTS $LDFLAGS conftest.cpp $LIBS 1>&5) &&
3402         test -s conftest${DLL_SUFFIX}; then
3403        if ${TOOLCHAIN_PREFIX}readelf -d conftest${DLL_SUFFIX} | grep TEXTREL > /dev/null; then
3404          ac_cv_crt_has_text_relocations=yes
3405        else
3406          ac_cv_crt_has_text_relocations=no
3407        fi
3408      else
3409        AC_ERROR([couldn't compile a simple C file])
3410      fi
3411      rm -rf conftest*])
3412   if test "$ac_cv_crt_has_text_relocations" = yes; then
3413     dnl While we want libraries to skip the CRT files, we don't want
3414     dnl executables to be treated the same way. We thus set the flag
3415     dnl in DSO_LDOPTS and not LDFLAGS. However, to pass it to nspr,
3416     dnl we need to use LDFLAGS because nspr doesn't inherit DSO_LDOPTS.
3417     dnl Using LDFLAGS in nspr is safe, since we only really build
3418     dnl libraries there.
3419     DSO_LDOPTS="$DSO_LDOPTS -nostartfiles"
3420     NSPR_LDFLAGS="$NSPR_LDFLAGS -nostartfiles"
3421   fi
3424 dnl Check for the existence of various allocation headers/functions
3426 MALLOC_HEADERS="malloc.h malloc_np.h malloc/malloc.h sys/malloc.h"
3427 MALLOC_H=
3429 for file in $MALLOC_HEADERS; do
3430   MOZ_CHECK_HEADER($file, [MALLOC_H=$file])
3431   if test "$MALLOC_H" != ""; then
3432     AC_DEFINE_UNQUOTED(MALLOC_H, <$MALLOC_H>)
3433     break
3434   fi
3435 done
3437 AC_CHECK_FUNCS(strndup posix_memalign memalign valloc)
3439 AC_CHECK_FUNCS(malloc_usable_size)
3441 dnl See if compiler supports some gcc-style attributes
3443 AC_CACHE_CHECK(for __attribute__((always_inline)),
3444                ac_cv_attribute_always_inline,
3445                [AC_TRY_COMPILE([inline void f(void) __attribute__((always_inline));],
3446                                [],
3447                                ac_cv_attribute_always_inline=yes,
3448                                ac_cv_attribute_always_inline=no)])
3450 AC_CACHE_CHECK(for __attribute__((malloc)),
3451                ac_cv_attribute_malloc,
3452                [AC_TRY_COMPILE([void* f(int) __attribute__((malloc));],
3453                                [],
3454                                ac_cv_attribute_malloc=yes,
3455                                ac_cv_attribute_malloc=no)])
3457 AC_CACHE_CHECK(for __attribute__((warn_unused_result)),
3458                ac_cv_attribute_warn_unused,
3459                [AC_TRY_COMPILE([int f(void) __attribute__((warn_unused_result));],
3460                                [],
3461                                ac_cv_attribute_warn_unused=yes,
3462                                ac_cv_attribute_warn_unused=no)])
3464 dnl End of C++ language/feature checks
3465 AC_LANG_C
3467 dnl ========================================================
3468 dnl =  Internationalization checks
3469 dnl ========================================================
3471 dnl Internationalization and Locale support is different
3472 dnl on various UNIX platforms.  Checks for specific i18n
3473 dnl features go here.
3475 dnl check for LC_MESSAGES
3476 AC_CACHE_CHECK(for LC_MESSAGES,
3477                 ac_cv_i18n_lc_messages,
3478                 [AC_TRY_COMPILE([#include <locale.h>],
3479                                 [int category = LC_MESSAGES;],
3480                                 ac_cv_i18n_lc_messages=yes,
3481                                 ac_cv_i18n_lc_messages=no)])
3482 if test "$ac_cv_i18n_lc_messages" = yes; then
3483    AC_DEFINE(HAVE_I18N_LC_MESSAGES)
3486 AC_HAVE_FUNCS(localeconv)
3487 fi # ! SKIP_COMPILER_CHECKS
3489 TARGET_XPCOM_ABI=
3490 if test -n "${CPU_ARCH}" -a -n "${TARGET_COMPILER_ABI}"; then
3491     TARGET_XPCOM_ABI="${CPU_ARCH}-${TARGET_COMPILER_ABI}"
3494 dnl Mozilla specific options
3495 dnl ========================================================
3496 dnl The macros used for command line options
3497 dnl are defined in build/autoconf/altoptions.m4.
3499 dnl If the compiler supports these attributes, define them as
3500 dnl convenience macros.
3501 if test "$ac_cv_attribute_malloc" = yes ; then
3502   AC_DEFINE(NS_ATTR_MALLOC, [__attribute__((malloc))])
3503 else
3504   AC_DEFINE(NS_ATTR_MALLOC,)
3507 if test "$ac_cv_attribute_warn_unused" = yes ; then
3508   AC_DEFINE(NS_WARN_UNUSED_RESULT, [__attribute__((warn_unused_result))])
3509 else
3510   AC_DEFINE(NS_WARN_UNUSED_RESULT,)
3513 dnl We can't run TRY_COMPILE tests on Windows, so hard-code some
3514 dnl features that Windows actually does support.
3516 if test -n "$SKIP_COMPILER_CHECKS"; then
3517    dnl Windows has malloc.h
3518    AC_DEFINE(MALLOC_H, [<malloc.h>])
3519    AC_DEFINE(HAVE_FORCEINLINE)
3520    AC_DEFINE(HAVE_LOCALECONV)
3521 fi # SKIP_COMPILER_CHECKS
3523 dnl ========================================================
3524 dnl =
3525 dnl = Check for external package dependencies
3526 dnl =
3527 dnl ========================================================
3528 MOZ_ARG_HEADER(External Packages)
3530 MOZ_ARG_WITH_STRING(libxul-sdk,
3531 [  --with-libxul-sdk=PFX   Use the libXUL SDK at <PFX>],
3532   LIBXUL_SDK_DIR=$withval)
3534 if test "$LIBXUL_SDK_DIR" = "yes"; then
3535     AC_MSG_ERROR([--with-libxul-sdk must specify a path])
3536 elif test -n "$LIBXUL_SDK_DIR" -a "$LIBXUL_SDK_DIR" != "no"; then
3537     LIBXUL_SDK=`cd "$LIBXUL_SDK_DIR" && pwd`
3539     if test ! -f "$LIBXUL_SDK/include/xpcom-config.h"; then
3540         AC_MSG_ERROR([$LIBXUL_SDK/include/xpcom-config.h doesn't exist])
3541     fi
3544 AC_SUBST(LIBXUL_SDK)
3546 if test -n "$LIBXUL_SDK"; then
3547     LIBXUL_DIST="$LIBXUL_SDK"
3548 else
3549     LIBXUL_DIST="$MOZ_BUILD_ROOT/dist"
3551 AC_SUBST(LIBXUL_DIST)
3553 SYSTEM_LIBXUL=
3555 MOZ_ARG_WITH_BOOL(system-libxul,
3556 [  --with-system-libxul    Use system installed libxul SDK],
3557     SYSTEM_LIBXUL=1)
3559 dnl ========================================================
3560 dnl = If NSPR was not detected in the system,
3561 dnl = use the one in the source tree (mozilla/nsprpub)
3562 dnl ========================================================
3563 MOZ_ARG_WITH_BOOL(system-nspr,
3564 [  --with-system-nspr      Use system installed NSPR],
3565     _USE_SYSTEM_NSPR=1 )
3567 if test -n "$_USE_SYSTEM_NSPR"; then
3568     AM_PATH_NSPR(4.10.2, [MOZ_NATIVE_NSPR=1], [AC_MSG_ERROR([your don't have NSPR installed or your version is too old])])
3571 if test -n "$MOZ_NATIVE_NSPR"; then
3572     _SAVE_CFLAGS=$CFLAGS
3573     CFLAGS="$CFLAGS $NSPR_CFLAGS"
3574     AC_TRY_COMPILE([#include "prtypes.h"],
3575                 [#ifndef PR_STATIC_ASSERT
3576                  #error PR_STATIC_ASSERT not defined or requires including prtypes.h
3577                  #endif],
3578                 [MOZ_NATIVE_NSPR=1],
3579                 AC_MSG_ERROR([system NSPR does not support PR_STATIC_ASSERT or including prtypes.h does not provide it]))
3580     AC_TRY_COMPILE([#include "prtypes.h"],
3581                 [#ifndef PR_UINT64
3582                  #error PR_UINT64 not defined or requires including prtypes.h
3583                  #endif],
3584                 [MOZ_NATIVE_NSPR=1],
3585                 AC_MSG_ERROR([system NSPR does not support PR_UINT64 or including prtypes.h does not provide it]))
3586     CFLAGS=$_SAVE_CFLAGS
3587 else
3588     if test -z "$LIBXUL_SDK"; then
3589         NSPR_CFLAGS="-I${LIBXUL_DIST}/include/nspr"
3590         if test -n "$GNU_CC"; then
3591             NSPR_LIBS="-L${LIBXUL_DIST}/lib -lnspr${NSPR_VERSION} -lplc${NSPR_VERSION} -lplds${NSPR_VERSION}"
3592         else
3593             NSPR_LIBS="${LIBXUL_DIST}/lib/nspr${NSPR_VERSION}.lib ${LIBXUL_DIST}/lib/plc${NSPR_VERSION}.lib ${LIBXUL_DIST}/lib/plds${NSPR_VERSION}.lib "
3594         fi
3595     else
3596         NSPR_CFLAGS=`"${LIBXUL_DIST}"/sdk/bin/nspr-config --prefix="${LIBXUL_DIST}" --includedir="${LIBXUL_DIST}/include/nspr" --cflags`
3597         NSPR_LIBS=`"${LIBXUL_DIST}"/sdk/bin/nspr-config --prefix="${LIBXUL_DIST}" --libdir="${LIBXUL_DIST}"/lib --libs`
3598     fi
3601 dnl set GRE_MILESTONE
3602 dnl ========================================================
3603 if test -n "$LIBXUL_SDK"; then
3604     GRE_MILESTONE=`$PYTHON "$_topsrcdir"/config/printconfigsetting.py "$LIBXUL_DIST"/bin/platform.ini Build Milestone`
3605 else
3606     GRE_MILESTONE=`tail -n 1 "$_topsrcdir"/config/milestone.txt 2>/dev/null || tail -1 "$_topsrcdir"/config/milestone.txt`
3608 AC_SUBST(GRE_MILESTONE)
3610 # set RELEASE_BUILD and NIGHTLY_BUILD variables depending on the cycle we're in
3611 # The logic works like this:
3612 # - if we have "a1" in GRE_MILESTONE, we're building Nightly (define NIGHTLY_BUILD)
3613 # - otherwise, if we have "a" in GRE_MILESTONE, we're building Nightly or Aurora
3614 # - otherwise, we're building Release/Beta (define RELEASE_BUILD)
3615 case "$GRE_MILESTONE" in
3616   *a1*)
3617       NIGHTLY_BUILD=1
3618       AC_DEFINE(NIGHTLY_BUILD)
3619       ;;
3620   *a*)
3621       ;;
3622   *)
3623       RELEASE_BUILD=1
3624       AC_DEFINE(RELEASE_BUILD)
3625       ;;
3626 esac
3627 AC_SUBST(NIGHTLY_BUILD)
3628 AC_SUBST(RELEASE_BUILD)
3630 dnl system libevent Support
3631 dnl ========================================================
3632 MOZ_ARG_WITH_STRING(system-libevent,
3633 [  --with-system-libevent[=PFX]
3634                           Use system libevent [installed at prefix PFX]],
3635     LIBEVENT_DIR=$withval)
3637 _SAVE_CFLAGS=$CFLAGS
3638 _SAVE_LDFLAGS=$LDFLAGS
3639 _SAVE_LIBS=$LIBS
3640 if test "$LIBEVENT_DIR" = yes; then
3641     PKG_CHECK_MODULES(MOZ_LIBEVENT, libevent,
3642         MOZ_NATIVE_LIBEVENT=1,
3643         LIBEVENT_DIR=/usr)
3645 if test -z "$LIBEVENT_DIR" -o "$LIBEVENT_DIR" = no; then
3646     MOZ_NATIVE_LIBEVENT=
3647 elif test -z "$MOZ_NATIVE_LIBEVENT"; then
3648     CFLAGS="-I${LIBEVENT_DIR}/include $CFLAGS"
3649     LDFLAGS="-L${LIBEVENT_DIR}/lib $LDFLAGS"
3650     MOZ_CHECK_HEADER(event.h,
3651         [if test ! -f "${LIBEVENT_DIR}/include/event.h"; then
3652              AC_MSG_ERROR([event.h found, but is not in ${LIBEVENT_DIR}/include])
3653          fi],
3654         AC_MSG_ERROR([--with-system-libevent requested but event.h not found]))
3655     AC_CHECK_LIB(event, event_init,
3656                  [MOZ_NATIVE_LIBEVENT=1
3657                   MOZ_LIBEVENT_CFLAGS="-I${LIBEVENT_DIR}/include"
3658                   MOZ_LIBEVENT_LIBS="-L${LIBEVENT_DIR}/lib -levent"],
3659                  [MOZ_NATIVE_LIBEVENT= MOZ_LIBEVENT_CFLAGS= MOZ_LIBEVENT_LIBS=])
3661 CFLAGS=$_SAVE_CFLAGS
3662 LDFLAGS=$_SAVE_LDFLAGS
3663 LIBS=$_SAVE_LIBS
3665 AC_SUBST(MOZ_NATIVE_LIBEVENT)
3666 AC_SUBST(MOZ_LIBEVENT_CFLAGS)
3667 AC_SUBST(MOZ_LIBEVENT_LIBS)
3669 dnl ========================================================
3670 dnl = If NSS was not detected in the system,
3671 dnl = use the one in the source tree (mozilla/security/nss)
3672 dnl ========================================================
3674 MOZ_ARG_WITH_BOOL(system-nss,
3675 [  --with-system-nss       Use system installed NSS],
3676     _USE_SYSTEM_NSS=1 )
3678 if test -n "$_USE_SYSTEM_NSS"; then
3679     AM_PATH_NSS(3.15.4, [MOZ_NATIVE_NSS=1], [AC_MSG_ERROR([you don't have NSS installed or your version is too old])])
3682 if test -n "$MOZ_NATIVE_NSS"; then
3683    NSS_LIBS="$NSS_LIBS -lcrmf"
3684 else
3685    NSS_CFLAGS='-I$(LIBXUL_DIST)/include/nss'
3687    if test -z "$GNU_CC" -a "$OS_ARCH" = "WINNT" -o "$OS_ARCH" = "OS2"; then
3688        NSS_LIBS="\
3689         \$(LIBXUL_DIST)/lib/\$(LIB_PREFIX)crmf.\$(LIB_SUFFIX) \
3690         \$(LIBXUL_DIST)/lib/\$(LIB_PREFIX)smime$NSS_VERSION.\$(LIB_SUFFIX) \
3691         \$(LIBXUL_DIST)/lib/\$(LIB_PREFIX)ssl$NSS_VERSION.\$(LIB_SUFFIX) \
3692         \$(LIBXUL_DIST)/lib/\$(LIB_PREFIX)nss$NSS_VERSION.\$(LIB_SUFFIX) \
3693         \$(LIBXUL_DIST)/lib/\$(LIB_PREFIX)nssutil$NSS_VERSION.\$(LIB_SUFFIX)"
3694    else
3695        NSS_LIBS='$(LIBS_DIR)'" -lcrmf -lsmime$NSS_VERSION -lssl$NSS_VERSION -lnss$NSS_VERSION -lnssutil$NSS_VERSION"
3696    fi
3699 dnl ======================
3700 dnl Detect yasm
3701 dnl ======================
3703 AC_MSG_CHECKING([for YASM assembler])
3704 AC_CHECK_PROGS(YASM, yasm, "")
3706 if test -n "$YASM"; then
3707   dnl Pull out yasm's version string
3708   YASM_VERSION=`yasm --version | $AWK '/^yasm/ { print $2 }'`
3709   _YASM_MAJOR_VERSION=`echo ${YASM_VERSION} | $AWK -F\. '{ print $1 }'`
3710   _YASM_MINOR_VERSION=`echo ${YASM_VERSION} | $AWK -F\. '{ print $2 }'`
3711   _YASM_RELEASE=`      echo ${YASM_VERSION} | $AWK -F\. '{ print $3 }'`
3712   _YASM_BUILD=`        echo ${YASM_VERSION} | $AWK -F\. '{ print $4 }'`
3715 if test -z "$SKIP_LIBRARY_CHECKS"; then
3716 dnl system JPEG support
3717 dnl ========================================================
3718 MOZ_ARG_WITH_STRING(system-jpeg,
3719 [  --with-system-jpeg[=PFX]
3720                           Use system libjpeg [installed at prefix PFX]],
3721     JPEG_DIR=$withval)
3723 _SAVE_CFLAGS=$CFLAGS
3724 _SAVE_LDFLAGS=$LDFLAGS
3725 _SAVE_LIBS=$LIBS
3726 if test -n "${JPEG_DIR}" -a "${JPEG_DIR}" != "yes"; then
3727     CFLAGS="-I${JPEG_DIR}/include $CFLAGS"
3728     LDFLAGS="-L${JPEG_DIR}/lib $LDFLAGS"
3730 if test -z "$JPEG_DIR" -o "$JPEG_DIR" = no; then
3731     MOZ_NATIVE_JPEG=
3732 else
3733     AC_CHECK_LIB(jpeg, jpeg_destroy_compress, [MOZ_NATIVE_JPEG=1 MOZ_JPEG_LIBS="-ljpeg"], MOZ_NATIVE_JPEG=)
3736 if test "$MOZ_NATIVE_JPEG" = 1; then
3737     AC_TRY_COMPILE([ #include <stdio.h>
3738                      #include <sys/types.h>
3739                      #include <jpeglib.h> ],
3740                    [ #if JPEG_LIB_VERSION < $MOZJPEG
3741                      #error "Insufficient JPEG library version ($MOZJPEG required)."
3742                      #endif
3743                      #ifndef JCS_EXTENSIONS
3744                      #error "libjpeg-turbo JCS_EXTENSIONS required"
3745                      #endif
3746                      ],
3747                    MOZ_NATIVE_JPEG=1,
3748                    AC_MSG_ERROR([Insufficient JPEG library version for --with-system-jpeg]))
3750 CFLAGS=$_SAVE_CFLAGS
3751 LDFLAGS=$_SAVE_LDFLAGS
3752 LIBS=$_SAVE_LIBS
3754 if test -n "${JPEG_DIR}" -a -d "${JPEG_DIR}" -a "$MOZ_NATIVE_JPEG" = 1; then
3755     MOZ_JPEG_CFLAGS="-I${JPEG_DIR}/include"
3756     MOZ_JPEG_LIBS="-L${JPEG_DIR}/lib ${MOZ_JPEG_LIBS}"
3758 fi # SKIP_LIBRARY_CHECKS
3760 dnl system ZLIB support
3761 dnl ========================================================
3762 MOZ_ZLIB_CHECK([1.2.3])
3764 if test "$MOZ_NATIVE_ZLIB" != 1; then
3765     MOZ_ZLIB_CFLAGS=
3766     MOZ_ZLIB_LIBS='$(call EXPAND_LIBNAME_PATH,mozz,'"$MOZ_BUILD_ROOT"'/modules/zlib/src)'
3769 if test "$MOZ_LINKER" = 1 -a "$MOZ_NATIVE_ZLIB" != 1; then
3770     AC_MSG_ERROR([Custom dynamic linker requires --with-system-zlib])
3773 if test -z "$SKIP_LIBRARY_CHECKS"; then
3774 dnl system BZIP2 Support
3775 dnl ========================================================
3776 MOZ_ARG_WITH_STRING(system-bz2,
3777 [  --with-system-bz2[=PFX]
3778                           Use system libbz2 [installed at prefix PFX]],
3779     BZ2_DIR=$withval)
3781 _SAVE_CFLAGS=$CFLAGS
3782 _SAVE_LDFLAGS=$LDFLAGS
3783 _SAVE_LIBS=$LIBS
3784 if test -n "${BZ2_DIR}" -a "${BZ2_DIR}" != "yes"; then
3785     CFLAGS="-I${BZ2_DIR}/include $CFLAGS"
3786     LDFLAGS="-L${BZ2_DIR}/lib $LDFLAGS"
3788 if test -z "$BZ2_DIR" -o "$BZ2_DIR" = no; then
3789     MOZ_NATIVE_BZ2=
3790 else
3791     AC_CHECK_LIB(bz2, BZ2_bzread, [MOZ_NATIVE_BZ2=1 MOZ_BZ2_LIBS="-lbz2"],
3792         [MOZ_NATIVE_BZ2= MOZ_BZ2_CFLAGS= MOZ_BZ2_LIBS=])
3794 CFLAGS=$_SAVE_CFLAGS
3795 LDFLAGS=$_SAVE_LDFLAGS
3796 LIBS=$_SAVE_LIBS
3798 if test "${BZ2_DIR}" -a -d "${BZ2_DIR}" -a "$MOZ_NATIVE_BZ2" = 1; then
3799     MOZ_BZ2_CFLAGS="-I${BZ2_DIR}/include"
3800     MOZ_BZ2_LIBS="-L${BZ2_DIR}/lib ${MOZ_BZ2_LIBS}"
3803 dnl system PNG Support
3804 dnl ========================================================
3805 MOZ_ARG_WITH_STRING(system-png,
3806 [  --with-system-png[=PFX]
3807                           Use system libpng [installed at prefix PFX]],
3808     PNG_DIR=$withval)
3810 _SAVE_CFLAGS=$CFLAGS
3811 _SAVE_LDFLAGS=$LDFLAGS
3812 _SAVE_LIBS=$LIBS
3813 if test -n "${PNG_DIR}" -a "${PNG_DIR}" != "yes"; then
3814     CFLAGS="-I${PNG_DIR}/include $CFLAGS"
3815     LDFLAGS="-L${PNG_DIR}/lib $LDFLAGS"
3817 if test -z "$PNG_DIR" -o "$PNG_DIR" = no; then
3818     MOZ_NATIVE_PNG=
3819 else
3820     AC_CHECK_LIB(png, png_get_valid, [MOZ_NATIVE_PNG=1 MOZ_PNG_LIBS="-lpng"],
3821                  AC_MSG_ERROR([--with-system-png requested but no working libpng found]))
3822     AC_CHECK_LIB(png, png_get_acTL, ,
3823                  AC_MSG_ERROR([--with-system-png won't work because the system's libpng doesn't have APNG support]))
3825 if test "$MOZ_NATIVE_PNG" = 1; then
3826     AC_TRY_COMPILE([ #include <stdio.h>
3827                      #include <sys/types.h>
3828                      #include <png.h> ],
3829                    [ #if PNG_LIBPNG_VER < $MOZPNG
3830                      #error "Insufficient libpng version ($MOZPNG required)."
3831                      #endif
3832                      #ifndef PNG_UINT_31_MAX
3833                      #error "Insufficient libpng version."
3834                      #endif ],
3835                    MOZ_NATIVE_PNG=1,
3836                    AC_MSG_ERROR([--with-system-png requested but no working libpng found]))
3838 CFLAGS=$_SAVE_CFLAGS
3839 LDFLAGS=$_SAVE_LDFLAGS
3840 LIBS=$_SAVE_LIBS
3842 if test "${PNG_DIR}" -a -d "${PNG_DIR}" -a "$MOZ_NATIVE_PNG" = 1; then
3843     MOZ_PNG_CFLAGS="-I${PNG_DIR}/include"
3844     MOZ_PNG_LIBS="-L${PNG_DIR}/lib ${MOZ_PNG_LIBS}"
3847 MOZ_PNG_ARM_NEON=
3848 if test "$MOZ_NATIVE_PNG" != 1 -a "$CPU_ARCH" = "arm" ; then
3849     MOZ_PNG_ARM_NEON=1
3851 AC_SUBST(MOZ_PNG_ARM_NEON)
3853 fi # SKIP_LIBRARY_CHECKS
3855 dnl system HunSpell Support
3856 dnl ========================================================
3857 MOZ_ARG_ENABLE_BOOL(system-hunspell,
3858 [  --enable-system-hunspell
3859                           Use system hunspell (located with pkgconfig)],
3860     MOZ_NATIVE_HUNSPELL=1 )
3862 if test -n "$MOZ_NATIVE_HUNSPELL"; then
3863     PKG_CHECK_MODULES(MOZ_HUNSPELL, hunspell)
3866 AC_SUBST(MOZ_NATIVE_HUNSPELL)
3868 dnl ========================================================
3869 dnl system libffi Support
3870 dnl ========================================================
3871 MOZ_ARG_ENABLE_BOOL(system-ffi,
3872 [  --enable-system-ffi       Use system libffi (located with pkgconfig)],
3873     MOZ_NATIVE_FFI=1 )
3875 if test -n "$MOZ_NATIVE_FFI"; then
3876     # Vanilla libffi 3.0.9 needs a few patches from upcoming version 3.0.10
3877     # for non-GCC compilers.
3878     if test -z "$GNU_CC"; then
3879         PKG_CHECK_MODULES(MOZ_FFI, libffi > 3.0.9)
3880     else
3881         PKG_CHECK_MODULES(MOZ_FFI, libffi >= 3.0.9)
3882     fi
3883     MOZ_JS_STATIC_LIBS="$MOZ_JS_STATIC_LIBS $MOZ_FFI_LIBS"
3886 dnl ========================================================
3887 dnl System ICU Support
3888 dnl ========================================================
3889 MOZ_NATIVE_ICU=
3890 MOZ_ARG_WITH_BOOL(system-icu,
3891 [  --with-system-icu
3892                           Use system ICU (located with pkgconfig)],
3893     MOZ_NATIVE_ICU=1)
3895 if test -n "$MOZ_NATIVE_ICU"; then
3896     PKG_CHECK_MODULES(MOZ_ICU, icu-i18n >= 50.1)
3897     MOZ_JS_STATIC_LIBS="$MOZ_JS_STATIC_LIBS $MOZ_ICU_LIBS"
3900 AC_SUBST(MOZ_NATIVE_ICU)
3902 dnl ========================================================
3903 dnl Java SDK support
3904 dnl ========================================================
3906 JAVA_BIN_PATH=
3907 MOZ_ARG_WITH_STRING(java-bin-path,
3908 [  --with-java-bin-path=dir
3909                           Location of Java binaries (java, javac, jar)],
3910     JAVA_BIN_PATH=$withval)
3912 dnl ========================================================
3913 dnl =
3914 dnl = Application
3915 dnl =
3916 dnl ========================================================
3918 MOZ_ARG_HEADER(Application)
3920 ENABLE_TESTS=1
3921 ENABLE_SYSTEM_EXTENSION_DIRS=1
3922 MOZ_BRANDING_DIRECTORY=
3923 MOZ_OFFICIAL_BRANDING=
3924 MOZ_FEEDS=1
3925 MOZ_WEBAPP_RUNTIME=
3926 MOZ_JSDEBUGGER=1
3927 MOZ_AUTH_EXTENSION=1
3928 MOZ_OGG=1
3929 MOZ_RAW=
3930 MOZ_SPEEX_RESAMPLER=1
3931 MOZ_SOUNDTOUCH=1
3932 MOZ_CUBEB=
3933 MOZ_VORBIS=
3934 MOZ_TREMOR=
3935 MOZ_WAVE=1
3936 MOZ_SAMPLE_TYPE_FLOAT32=
3937 MOZ_SAMPLE_TYPE_S16=
3938 MOZ_OPUS=1
3939 MOZ_WEBM=1
3940 MOZ_DIRECTSHOW=
3941 MOZ_WMF=
3942 MOZ_WEBRTC=1
3943 MOZ_PEERCONNECTION=
3944 MOZ_SRTP=
3945 MOZ_WEBRTC_SIGNALING=
3946 MOZ_WEBRTC_ASSERT_ALWAYS=1
3947 MOZ_SCTP=
3948 MOZ_MEDIA_PLUGINS=
3949 MOZ_MEDIA_NAVIGATOR=
3950 MOZ_OMX_PLUGIN=
3951 MOZ_VP8=
3952 MOZ_VP8_ERROR_CONCEALMENT=
3953 MOZ_VP8_ENCODER=
3954 MOZ_WEBSPEECH=1
3955 VPX_AS=
3956 VPX_ASFLAGS=
3957 VPX_AS_DASH_C_FLAG=
3958 VPX_AS_CONVERSION=
3959 VPX_ASM_SUFFIX=
3960 VPX_X86_ASM=
3961 VPX_ARM_ASM=
3962 LIBJPEG_TURBO_AS=
3963 LIBJPEG_TURBO_ASFLAGS=
3964 LIBJPEG_TURBO_X86_ASM=
3965 LIBJPEG_TURBO_X64_ASM=
3966 LIBJPEG_TURBO_ARM_ASM=
3967 MOZ_PANGO=1
3968 MOZ_PERMISSIONS=1
3969 MOZ_PLACES=1
3970 MOZ_SOCIAL=1
3971 MOZ_PREF_EXTENSIONS=1
3972 MOZ_PROFILELOCKING=1
3973 MOZ_REFLOW_PERF=
3974 MOZ_SAFE_BROWSING=
3975 MOZ_HELP_VIEWER=
3976 MOZ_SPELLCHECK=1
3977 MOZ_ANDROID_OMTC=
3978 MOZ_TOOLKIT_SEARCH=1
3979 MOZ_UI_LOCALE=en-US
3980 MOZ_UNIVERSALCHARDET=1
3981 MOZ_URL_CLASSIFIER=
3982 MOZ_XUL=1
3983 MOZ_ZIPWRITER=1
3984 NS_PRINTING=1
3985 MOZ_PDF_PRINTING=
3986 MOZ_DISABLE_CRYPTOLEGACY=
3987 NSS_DISABLE_DBM=
3988 NECKO_COOKIES=1
3989 NECKO_PROTOCOLS_DEFAULT="about app data file ftp http res viewsource websocket wyciwyg device"
3990 if test -n "$MOZ_RTSP"; then
3991   NECKO_PROTOCOLS_DEFAULT="$NECKO_PROTOCOLS_DEFAULT rtsp"
3993 USE_ARM_KUSER=
3994 BUILD_CTYPES=1
3995 MOZ_USE_NATIVE_POPUP_WINDOWS=
3996 MOZ_ANDROID_HISTORY=
3997 MOZ_WEBSMS_BACKEND=
3998 MOZ_ANDROID_BEAM=
3999 ACCESSIBILITY=1
4000 MOZ_TIME_MANAGER=
4001 MOZ_PAY=
4002 MOZ_AUDIO_CHANNEL_MANAGER=
4003 NSS_NO_LIBPKIX=
4004 MOZ_CONTENT_SANDBOX=
4005 MOZ_CONTENT_SANDBOX_REPORTER=
4007 case "$target_os" in
4008     mingw*)
4009         NS_ENABLE_TSF=1
4010         AC_DEFINE(NS_ENABLE_TSF)
4011         ;;
4012 esac
4014 case "${target}" in
4015     *-android*|*-linuxandroid*)
4016         if test "$CPU_ARCH" = "arm" ; then
4017           USE_ARM_KUSER=1
4018         fi
4020         NSS_DISABLE_DBM=1
4021         MOZ_THEME_FASTSTRIPE=1
4022         MOZ_TREE_FREETYPE=1
4023         MOZ_MEMORY=1
4024         MOZ_RAW=1
4025         ;;
4027 esac
4029 MOZ_ARG_WITH_STRING(external-source-dir,
4030 [  --with-external-source-dir=dir
4031                           External directory containing additional build files.],
4032 [ EXTERNAL_SOURCE_DIR=$withval])
4033 AC_SUBST(EXTERNAL_SOURCE_DIR)
4035 MOZ_ARG_ENABLE_STRING(application,
4036 [  --enable-application=APP
4037                           Options include:
4038                             browser (Firefox)
4039                             xulrunner
4040                             tools/update-packaging (AUS-related packaging tools)],
4041 [ MOZ_BUILD_APP=$enableval ] )
4043 MOZ_ARG_WITH_STRING(xulrunner-stub-name,
4044 [  --with-xulrunner-stub-name=appname   Create the xulrunner stub with the given name],
4045   XULRUNNER_STUB_NAME=$withval)
4047 if test -z "$XULRUNNER_STUB_NAME"; then
4048   case "$target_os" in
4049   darwin*)
4050     XULRUNNER_STUB_NAME=xulrunner
4051     ;;
4052   *)
4053     XULRUNNER_STUB_NAME=xulrunner-stub
4054   esac
4056 AC_SUBST(XULRUNNER_STUB_NAME)
4058 AC_MSG_CHECKING([for application to build])
4059 if test -z "$MOZ_BUILD_APP"; then
4060   AC_MSG_RESULT([browser])
4061   MOZ_BUILD_APP=browser
4062 else
4063   # "mobile" no longer exists.
4064   if test "$MOZ_BUILD_APP" = "mobile" ; then
4065     AC_MSG_RESULT([none])
4066     AC_MSG_ERROR([--enable-application=mobile is no longer supported.])
4067   fi
4068   # We have a valid application only if it has a build.mk file in its top
4069   # directory.
4070   if test ! -f "${srcdir}/${MOZ_BUILD_APP}/build.mk" ; then
4071     AC_MSG_RESULT([none])
4072     AC_MSG_ERROR([--enable-application value not recognized (${MOZ_BUILD_APP}/build.mk does not exist).])
4073   else
4074     AC_MSG_RESULT([$MOZ_BUILD_APP])
4075   fi
4078 # The app update channel is 'default' when not supplied. The value is used in
4079 # the application's confvars.sh so it must be set before confvars.sh is called.
4080 MOZ_ARG_ENABLE_STRING([update-channel],
4081 [  --enable-update-channel=CHANNEL
4082                           Select application update channel (default=default)],
4083     MOZ_UPDATE_CHANNEL=`echo $enableval | tr A-Z a-z`)
4085 if test -z "$MOZ_UPDATE_CHANNEL"; then
4086     MOZ_UPDATE_CHANNEL=default
4088 AC_DEFINE_UNQUOTED(MOZ_UPDATE_CHANNEL, $MOZ_UPDATE_CHANNEL)
4089 AC_SUBST(MOZ_UPDATE_CHANNEL)
4091 # Allow to specify a Google API key file that contains the secret key to be
4092 # used for various Google API requests.
4093 MOZ_ARG_WITH_STRING(google-api-keyfile,
4094 [  --with-google-api-keyfile=file   Use the secret key contained in the given keyfile for Google API requests],
4095   MOZ_GOOGLE_API_KEY=`cat $withval`)
4096 if test -z "$MOZ_GOOGLE_API_KEY"; then
4097     MOZ_GOOGLE_API_KEY=no-google-api-key
4099 AC_SUBST(MOZ_GOOGLE_API_KEY)
4101 # Allow the application to influence configure with a confvars.sh script.
4102 AC_MSG_CHECKING([if app-specific confvars.sh exists])
4103 if test -f "${srcdir}/${MOZ_BUILD_APP}/confvars.sh" ; then
4104   AC_MSG_RESULT([${srcdir}/${MOZ_BUILD_APP}/confvars.sh])
4105   . "${srcdir}/${MOZ_BUILD_APP}/confvars.sh"
4106 else
4107   AC_MSG_RESULT([no])
4110 # Allow influencing configure with a defines.sh script.
4111 . "${srcdir}/build/defines.sh"
4113 # If we're not building a release build, define EARLY_BETA_OR_EARLIER if it is
4114 # set in defines.sh
4115 if test "$BUILDING_RELEASE"; then
4116   # Override value in defines.sh, if any
4117   EARLY_BETA_OR_EARLIER=
4118 elif test "$EARLY_BETA_OR_EARLIER"; then
4119   AC_DEFINE(EARLY_BETA_OR_EARLIER)
4121 AC_SUBST(EARLY_BETA_OR_EARLIER)
4123 # Allow the application to provide a subconfigure script
4124 if test -f "${srcdir}/${MOZ_BUILD_APP}/configure.in" ; then
4125   do_output_subdirs() {
4126     if test -n "$_subconfigure_subdirs"; then
4127       AC_MSG_ERROR([Cannot specify more than one sub-sub-configure])
4128      fi
4129     _subconfigure_subdir="$1"
4130     _subconfigure_config_args="$ac_configure_args"
4131   }
4132   tmpscript=`$PYTHON -c 'import os, tempfile; print tempfile.mktemp(prefix="subscript.").replace(os.sep, "/")'` || exit 1
4133   m4 "${srcdir}/build/autoconf/subconfigure.m4" \
4134      "${srcdir}/build/autoconf/altoptions.m4" \
4135      "${srcdir}/${MOZ_BUILD_APP}/configure.in" > $tmpscript
4136   . $tmpscript
4137   rm -f $tmpscript
4140 # Allow someone to change MOZ_APP_NAME and MOZ_APP_BASENAME in mozconfig
4141 MOZ_ARG_WITH_STRING(app-name,
4142 [--with-app-name=APPNAME sets MOZ_APP_NAME to APPNAME],
4143 WITH_APP_NAME=$withval,
4146 if test -n "$WITH_APP_NAME" ; then
4147     MOZ_APP_NAME="$WITH_APP_NAME"
4150 MOZ_ARG_WITH_STRING(app-basename,
4151 [--with-app-basename=BASENAME sets MOZ_APP_BASENAME to BASENAME],
4152 WITH_APP_BASENAME=$withval,
4155 if test -n "$WITH_APP_BASENAME" ; then
4156     MOZ_APP_BASENAME="$WITH_APP_BASENAME"
4159 # Now is a good time to test for logic errors, define mismatches, etc.
4160 case "$MOZ_BUILD_APP" in
4161 xulrunner)
4162   if test "$LIBXUL_SDK"; then
4163     AC_MSG_ERROR([Building XULRunner --with-libxul-sdk doesn't make sense; XULRunner provides the libxul SDK.])
4164   fi
4165   ;;
4166 esac
4168 # Special cases where we need to AC_DEFINE something. Also a holdover for apps
4169 # that haven't made a confvars.sh yet. Don't add new stuff here, use
4170 # MOZ_BUILD_APP.
4171 case "$MOZ_BUILD_APP" in
4172 browser)
4173   AC_DEFINE(MOZ_PHOENIX)
4174   ;;
4176 xulrunner)
4177   AC_DEFINE(MOZ_XULRUNNER)
4178   ;;
4179 b2g)
4180   AC_DEFINE(MOZ_B2G)
4181   ;;
4182 esac
4184 AC_SUBST(MOZ_BUILD_APP)
4185 AC_SUBST(MOZ_PHOENIX)
4186 AC_SUBST(MOZ_XULRUNNER)
4187 AC_SUBST(MOZ_B2G)
4189 AC_DEFINE_UNQUOTED(MOZ_BUILD_APP,$MOZ_BUILD_APP)
4191 dnl ========================================================
4192 dnl Check android sdk version depending on mobile target
4193 dnl ========================================================
4195 if test -z "$gonkdir" ; then
4196     # Minimum Android SDK API Level we require.
4197     case "$MOZ_BUILD_APP" in
4198     mobile/android)
4199         android_min_api_level=16
4200         case "$target" in
4201         *-android*|*-linuxandroid*)
4202             :
4203             ;;
4204         *)
4205             AC_MSG_ERROR([You must specify --target=arm-linux-androideabi (or some other valid android target) when building with --enable-application=mobile/android. See https://wiki.mozilla.org/Mobile/Fennec/Android#Setup_Fennec_mozconfig for more information about the necessary options])
4206             ;;
4207         esac
4208         ;;
4209     esac
4211     MOZ_ANDROID_SDK($android_min_api_level)
4214 dnl ========================================================
4215 dnl =
4216 dnl = Toolkit Options
4217 dnl =
4218 dnl ========================================================
4219 MOZ_ARG_HEADER(Toolkit Options)
4221     dnl ========================================================
4222     dnl = Select the default toolkit
4223     dnl ========================================================
4224         MOZ_ARG_ENABLE_STRING(default-toolkit,
4225         [  --enable-default-toolkit=TK
4226                           Select default toolkit
4227                           Platform specific defaults:
4228                             Mac OS X - cairo-cocoa
4229                             OS/2 - cairo-os2
4230                             Win32 - cairo-windows
4231                             * - cairo-gtk2
4232                             * - cairo-gtk3
4233                             * - cairo-qt],
4234     [ _DEFAULT_TOOLKIT=$enableval ],
4235     [ _DEFAULT_TOOLKIT=$_PLATFORM_DEFAULT_TOOLKIT])
4237     if test "$_DEFAULT_TOOLKIT" = "cairo-windows" \
4238         -o "$_DEFAULT_TOOLKIT" = "cairo-gtk2" \
4239         -o "$_DEFAULT_TOOLKIT" = "cairo-gtk2-x11" \
4240         -o "$_DEFAULT_TOOLKIT" = "cairo-gtk3" \
4241         -o "$_DEFAULT_TOOLKIT" = "cairo-qt" \
4242         -o "$_DEFAULT_TOOLKIT" = "cairo-os2" \
4243         -o "$_DEFAULT_TOOLKIT" = "cairo-cocoa" \
4244         -o "$_DEFAULT_TOOLKIT" = "cairo-uikit" \
4245         -o "$_DEFAULT_TOOLKIT" = "cairo-android" \
4246         -o "$_DEFAULT_TOOLKIT" = "cairo-gonk"
4247     then
4248         dnl nglayout only supports building with one toolkit,
4249         dnl so ignore everything after the first comma (",").
4250         MOZ_WIDGET_TOOLKIT=`echo "$_DEFAULT_TOOLKIT" | sed -e "s/,.*$//"`
4251     else
4252         AC_MSG_ERROR([You must specify a default toolkit (perhaps $_PLATFORM_DEFAULT_TOOLKIT).])
4253     fi
4255 MOZ_ARG_WITHOUT_BOOL(x,
4256 [  --without-x              Build without X11],
4257     WITHOUT_X11=1)
4259 dnl ========================================================
4260 dnl = Enable the toolkit as needed                         =
4261 dnl ========================================================
4263 MOZ_WIDGET_GTK=
4265 case "$MOZ_WIDGET_TOOLKIT" in
4267 cairo-windows)
4268     MOZ_WIDGET_TOOLKIT=windows
4269     MOZ_WEBGL=1
4270     MOZ_PDF_PRINTING=1
4271     MOZ_INSTRUMENT_EVENT_LOOP=1
4272     if test -n "$GNU_CC"; then
4273         MOZ_FOLD_LIBS=
4274     fi
4275     ;;
4277 cairo-gtk3)
4278     MOZ_WIDGET_TOOLKIT=gtk3
4279     MOZ_ENABLE_GTK=1
4280     MOZ_ENABLE_GTK3=1
4281     MOZ_ENABLE_XREMOTE=1
4282     MOZ_WEBGL=1
4283     MOZ_GL_DEFAULT_PROVIDER=GLX
4285     AC_DEFINE(MOZ_X11)
4286     MOZ_X11=1
4287     USE_FC_FREETYPE=1
4289     TK_CFLAGS='$(MOZ_GTK3_CFLAGS)'
4290     TK_LIBS='$(MOZ_GTK3_LIBS)'
4291     MOZ_WIDGET_GTK=3
4292     AC_DEFINE_UNQUOTED(MOZ_WIDGET_GTK,$MOZ_WIDGET_GTK)
4293     MOZ_PDF_PRINTING=1
4294     MOZ_INSTRUMENT_EVENT_LOOP=1
4295     ;;
4297 cairo-gtk2|cairo-gtk2-x11)
4298     MOZ_WIDGET_TOOLKIT=gtk2
4299     MOZ_ENABLE_GTK=1
4300     MOZ_ENABLE_GTK2=1
4301     MOZ_ENABLE_XREMOTE=1
4302     MOZ_WEBGL=1
4303     MOZ_GL_DEFAULT_PROVIDER=GLX
4305     AC_DEFINE(MOZ_X11)
4306     MOZ_X11=1
4307     USE_FC_FREETYPE=1
4309     TK_CFLAGS='$(MOZ_GTK2_CFLAGS)'
4310     TK_LIBS='$(MOZ_GTK2_LIBS)'
4311     AC_DEFINE(MOZ_WIDGET_GTK2)
4312     MOZ_WIDGET_GTK=2
4313     AC_DEFINE_UNQUOTED(MOZ_WIDGET_GTK,$MOZ_WIDGET_GTK)
4314     MOZ_PDF_PRINTING=1
4315     MOZ_INSTRUMENT_EVENT_LOOP=1
4316     ;;
4318 cairo-qt)
4319     MOZ_WIDGET_TOOLKIT=qt
4320     MOZ_ENABLE_QT=1
4321     if test -z "$WITHOUT_X11"; then
4322       MOZ_ENABLE_XREMOTE=1
4323       MOZ_GL_DEFAULT_PROVIDER=GLX
4324       MOZ_X11=1
4325       AC_DEFINE(MOZ_X11)
4326       XT_LIBS=
4327     fi
4329     MOZ_WEBGL=1
4330     USE_ELF_DYNSTR_GC=
4331     USE_FC_FREETYPE=1
4332     TK_CFLAGS='$(MOZ_QT_CFLAGS)'
4333     TK_LIBS='$(MOZ_QT_LIBS)'
4334     AC_DEFINE(MOZ_WIDGET_QT)
4335     MOZ_PDF_PRINTING=1
4336     AC_DEFINE(QT_NO_KEYWORDS)
4337     ;;
4339 cairo-os2)
4340     MOZ_WIDGET_TOOLKIT=os2
4341     USE_FC_FREETYPE=1
4342     TK_CFLAGS='$(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)'
4343     TK_LIBS='$(MOZ_CAIRO_LIBS) $(MOZ_PIXMAN_LIBS)'
4344     MOZ_PDF_PRINTING=1
4345     ;;
4347 cairo-cocoa)
4348     MOZ_WIDGET_TOOLKIT=cocoa
4349     AC_DEFINE(MOZ_WIDGET_COCOA)
4350     LDFLAGS="$LDFLAGS -framework Cocoa -lobjc"
4351     TK_LIBS='-framework CoreLocation -framework QuartzCore -framework Carbon -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework AddressBook -framework OpenGL'
4352     TK_CFLAGS="-DNO_X11"
4353     CFLAGS="$CFLAGS $TK_CFLAGS"
4354     CXXFLAGS="$CXXFLAGS $TK_CFLAGS"
4355     XPCOM_FROZEN_LDOPTS='$(LIBXUL_DIST)/bin/XUL $(call EXPAND_LIBNAME_PATH,mozalloc,$(LIBXUL_DIST)/bin)'
4356     MOZ_USER_DIR="Mozilla"
4357     MOZ_FS_LAYOUT=bundle
4358     MOZ_WEBGL=1
4359     MOZ_INSTRUMENT_EVENT_LOOP=1
4360     ;;
4362 cairo-uikit)
4363     MOZ_WIDGET_TOOLKIT=uikit
4364     AC_DEFINE(MOZ_WIDGET_UIKIT)
4365     LDFLAGS="$LDFLAGS -framework UIKit -lobjc"
4366     TK_CFLAGS="-DNO_X11"
4367     TK_LIBS='-framework Foundation -framework CoreFoundation -framework CoreGraphics -framework CoreText'
4368     CFLAGS="$CFLAGS $TK_CFLAGS"
4369     CXXFLAGS="$CXXFLAGS $TK_CFLAGS"
4370     XPCOM_FROZEN_LDOPTS='$(LIBXUL_DIST)/bin/XUL $(call EXPAND_LIBNAME_PATH,mozalloc,$(LIBXUL_DIST)/bin)'
4371     MOZ_USER_DIR="Mozilla"
4372     MOZ_FS_LAYOUT=bundle
4373     ;;
4375 cairo-android)
4376     AC_DEFINE(MOZ_WIDGET_ANDROID)
4377     MOZ_WIDGET_TOOLKIT=android
4378     TK_CFLAGS='$(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)'
4379     TK_LIBS='$(MOZ_CAIRO_LIBS) $(MOZ_PIXMAN_LIBS)'
4380     MOZ_WEBGL=1
4381     MOZ_PDF_PRINTING=1
4382     MOZ_INSTRUMENT_EVENT_LOOP=1
4383     ;;
4385 cairo-gonk)
4386     XPCOM_FROZEN_LDOPTS='$(call EXPAND_LIBNAME_PATH,xul mozalloc,$(LIBXUL_DIST)/lib)'
4387     AC_DEFINE(MOZ_WIDGET_GONK)
4388     AC_DEFINE(MOZ_TOUCH)
4389     MOZ_WIDGET_TOOLKIT=gonk
4390     TK_CFLAGS='$(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)'
4391     TK_LIBS='$(MOZ_CAIRO_LIBS) $(MOZ_PIXMAN_LIBS)'
4392     MOZ_WEBGL=1
4393     MOZ_PDF_PRINTING=1
4394     MOZ_TOUCH=1
4395     ;;
4397 esac
4399 AC_SUBST(MOZ_PDF_PRINTING)
4400 if test "$MOZ_PDF_PRINTING"; then
4401    PDF_SURFACE_FEATURE="#define CAIRO_HAS_PDF_SURFACE 1"
4402    AC_DEFINE(MOZ_PDF_PRINTING)
4405 if test "$MOZ_ENABLE_XREMOTE"; then
4406     AC_DEFINE(MOZ_ENABLE_XREMOTE)
4409 if test "$MOZ_INSTRUMENT_EVENT_LOOP"; then
4410    AC_DEFINE(MOZ_INSTRUMENT_EVENT_LOOP)
4413 if test "$COMPILE_ENVIRONMENT"; then
4414   if test "$MOZ_ENABLE_GTK3"; then
4415     PKG_CHECK_MODULES(MOZ_GTK3, gtk+-3.0 >= $GTK3_VERSION gtk+-unix-print-3.0 glib-2.0 gobject-2.0 $GDK_PACKAGES)
4416   fi
4417   if test "$MOZ_ENABLE_GTK2"; then
4418     if test "$MOZ_X11"; then
4419       GDK_PACKAGES=gdk-x11-2.0
4420     fi
4422     PKG_CHECK_MODULES(MOZ_GTK2, gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 glib-2.0 gobject-2.0 $GDK_PACKAGES)
4423   fi
4425 fi # COMPILE_ENVIRONMENT
4427 AC_SUBST(MOZ_FS_LAYOUT)
4429 dnl ========================================================
4430 dnl Use ARM userspace kernel helpers; tell NSPR to enable
4431 dnl their usage and use them in spidermonkey.
4432 dnl ========================================================
4433 MOZ_ARG_WITH_BOOL(arm-kuser,
4434 [  --with-arm-kuser         Use kuser helpers (Linux/ARM only -- requires kernel 2.6.13 or later)],
4435     USE_ARM_KUSER=1,)
4436 if test -n "$USE_ARM_KUSER"; then
4437    AC_DEFINE(USE_ARM_KUSER)
4440 dnl ========================================================
4441 dnl = startup-notification support module
4442 dnl ========================================================
4444 if test "$MOZ_ENABLE_GTK"
4445 then
4446     MOZ_ENABLE_STARTUP_NOTIFICATION=
4448     MOZ_ARG_ENABLE_BOOL(startup-notification,
4449     [  --enable-startup-notification
4450                           Enable startup-notification support (default: disabled) ],
4451         MOZ_ENABLE_STARTUP_NOTIFICATION=force,
4452         MOZ_ENABLE_STARTUP_NOTIFICATION=)
4453     if test "$MOZ_ENABLE_STARTUP_NOTIFICATION"
4454     then
4455         PKG_CHECK_MODULES(MOZ_STARTUP_NOTIFICATION,
4456                           libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION,
4457         [MOZ_ENABLE_STARTUP_NOTIFICATION=1], [
4458             if test "$MOZ_ENABLE_STARTUP_NOTIFICATION" = "force"
4459             then
4460                 AC_MSG_ERROR([* * * Could not find startup-notification >= $STARTUP_NOTIFICATION_VERSION])
4461             fi
4462             MOZ_ENABLE_STARTUP_NOTIFICATION=
4463         ])
4464     fi
4466     if test "$MOZ_ENABLE_STARTUP_NOTIFICATION"; then
4467         AC_DEFINE(MOZ_ENABLE_STARTUP_NOTIFICATION)
4468     fi
4470     TK_LIBS="$TK_LIBS $MOZ_STARTUP_NOTIFICATION_LIBS"
4472 AC_SUBST(MOZ_ENABLE_STARTUP_NOTIFICATION)
4473 AC_SUBST(MOZ_STARTUP_NOTIFICATION_CFLAGS)
4474 AC_SUBST(MOZ_STARTUP_NOTIFICATION_LIBS)
4476 dnl ========================================================
4477 dnl = QT support
4478 dnl ========================================================
4479 if test "$MOZ_ENABLE_QT"
4480 then
4481     MOZ_ARG_WITH_STRING(qtdir,
4482     [  --with-qtdir=\$dir       Specify Qt directory ],
4483     [ QTDIR=$withval])
4485     if test -z "$QTDIR"; then
4486         AC_CHECK_PROGS(HOST_QMAKE, $HOST_QMAKE qmake, "")
4487     else
4488         HOST_QMAKE="$QTDIR/bin/qmake"
4489     fi
4490     QT_VERSION=`$HOST_QMAKE -v | grep 'Using Qt version' | egrep -o '[[0-9]]+\.[[0-9]]+\.[[0-9]]+'`
4492     if test -z "$QTDIR"; then
4493         case $QT_VERSION in
4494         5.*)
4495             AC_MSG_RESULT("Using qt5: $QT_VERSION")
4496             PKG_CHECK_MODULES(MOZ_QT, Qt5Gui Qt5Network Qt5Core Qt5OpenGL Qt5Widgets Qt5PrintSupport, ,
4497             [
4498               AC_MSG_ERROR([$MOZ_QT_PKG_ERRORS Need qtbase development packages, (On Ubuntu, you might try installing the packages qtbase5-dev libqt5opengl5-dev.)])
4499             ])
4500             QT5INCDIR=`pkg-config --variable=includedir Qt5Gui`
4501             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QT5INCDIR/QtGui/$QT_VERSION/QtGui"
4502             ;;
4503         4.*)
4504             AC_MSG_RESULT("Using qt4: $QT_VERSION")
4505             PKG_CHECK_MODULES(MOZ_QT, QtGui QtNetwork QtCore QtOpenGL, ,
4506             [
4507               AC_MSG_ERROR([$MOZ_QT_PKG_ERRORS Need qt4 development package, (On Ubuntu, you might try installing the packages libqt4-dev libqt4-opengl-dev.)])
4508             ])
4509             ;;
4510         *)
4511             AC_MSG_ERROR([* * * Unsupported Qt Version: $QT_VERSION])
4512             ;;
4513         esac
4515         AC_CHECK_PROGS(HOST_MOC, $MOC moc, "")
4516         AC_CHECK_PROGS(HOST_RCC, $RCC rcc, "")
4517     else
4518         MOZ_QT_CFLAGS="-DQT_SHARED"
4519         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include"
4520         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtGui"
4521         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtCore"
4522         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtNetwork"
4523         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtXml"
4524         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtDeclarative"
4526         case $QT_VERSION in
4527         5.*)
4528             AC_MSG_RESULT("Using qt5: $QT_VERSION")
4529             MOZ_QT_LIBS="-L$QTDIR/lib/ -lQt5Gui -lQt5Network -lQt5Core -lQt5Xml -lQt5OpenGL"
4530             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtGui/$QT_VERSION/QtGui"
4531             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtWidgets"
4532             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtPrintSupport"
4533             MOZ_QT_LIBS="$MOZ_QT_LIBS -lQt5Widgets -lQt5PrintSupport"
4534             ;;
4535         4.*)
4536             AC_MSG_RESULT("Using qt4: $QT_VERSION")
4537             MOZ_QT_LIBS="-L$QTDIR/lib/ -lQtGui -lQtNetwork -lQtCore -lQtXml -lQtOpenGL"
4538             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/Qt"
4539             ;;
4540         *)
4541             AC_MSG_ERROR([* * * Unsupported Qt Version: $QT_VERSION])
4542             ;;
4543         esac
4545         HOST_MOC="$QTDIR/bin/moc"
4546         HOST_RCC="$QTDIR/bin/rcc"
4547     fi
4548     if test -z "$HOST_MOC"; then
4549         AC_MSG_ERROR([No acceptable moc preprocessor found. Qt SDK is not installed or --with-qt is
4550 incorrect])
4551     fi
4552     if test -z "$HOST_RCC"; then
4553         AC_MSG_ERROR([No acceptable rcc preprocessor found. Qt SDK is not installed or --with-qt is
4554 incorrect])
4555     fi
4557     MOC=$HOST_MOC
4558     RCC=$HOST_RCC
4560     MOZ_ENABLE_QMSYSTEM2=
4561     PKG_CHECK_MODULES(_QMSYSTEM2, qmsystem2,
4562                       MOZ_ENABLE_QMSYSTEM2=1,
4563                       MOZ_ENABLE_QMSYSTEM2=)
4565     if test "$MOZ_ENABLE_QMSYSTEM2"; then
4566       MOZ_ENABLE_QMSYSTEM2=1
4567       MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS $_QMSYSTEM2_CFLAGS"
4568       MOZ_QT_LIBS="$MOZ_QT_LIBS $_QMSYSTEM2_LIBS"
4569       AC_DEFINE(MOZ_ENABLE_QMSYSTEM2)
4570     fi
4572     MOZ_ENABLE_QTNETWORK=
4573     PKG_CHECK_MODULES(_QTNETWORK, QtNetwork >= 4.7,
4574                       MOZ_ENABLE_QTNETWORK=1,
4575                       MOZ_ENABLE_QTNETWORK=)
4577     if test "$MOZ_ENABLE_QTNETWORK"; then
4578       MOZ_ENABLE_QTNETWORK=1
4579       AC_DEFINE(MOZ_ENABLE_QTNETWORK)
4580     fi
4582     MOZ_ENABLE_QTMOBILITY=
4583     PKG_CHECK_MODULES(_QTMOBILITY, QtSensors QtFeedback QtLocation,
4584                       MOZ_ENABLE_QTMOBILITY=1,
4585                       MOZ_ENABLE_QTMOBILITY=)
4586     if test "$MOZ_ENABLE_QTMOBILITY"; then
4587        MOZ_ENABLE_QTMOBILITY=1
4588        MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS $_QTMOBILITY_CFLAGS"
4589        MOZ_QT_LIBS="$MOZ_QT_LIBS $_QTMOBILITY_LIBS"
4590        AC_DEFINE(MOZ_ENABLE_QTMOBILITY)
4591        AC_SUBST(MOZ_ENABLE_QTMOBILITY)
4592     else
4593        AC_CHECK_LIB(QtSensors, main, [
4594           MOZ_ENABLE_QTMOBILITY=1
4595           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtMobility"
4596           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtSensors"
4597           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtFeedback"
4598           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtLocation"
4599           MOZ_QT_LIBS="$MOZ_QT_LIBS -lQtSensors -lQtFeedback -lQtLocation"
4600        ])
4601     fi
4603     if test "$MOZ_ENABLE_CONTENTACTION"; then
4604       MOZ_ENABLE_CONTENTACTION=1
4605       AC_DEFINE(MOZ_ENABLE_CONTENTACTION)
4606     fi
4608     MOZ_ENABLE_CONTENTACTION=
4609     PKG_CHECK_MODULES(LIBCONTENTACTION, contentaction-0.1, _LIB_FOUND=1, _LIB_FOUND=)
4610     if test "$MOZ_ENABLE_CONTENTACTION"; then
4611        MOZ_ENABLE_CONTENTACTION=1
4612        MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS $_CONTENTACTION_CFLAGS"
4613        MOZ_QT_LIBS="$MOZ_QT_LIBS $_CONTENTACTION_LIBS"
4614        AC_DEFINE(MOZ_ENABLE_CONTENTACTION)
4615        AC_SUBST(MOZ_ENABLE_CONTENTACTION)
4616     fi
4619 AC_SUBST(GTK_CONFIG)
4620 AC_SUBST(TK_CFLAGS)
4621 AC_SUBST(TK_LIBS)
4623 AC_SUBST(MOZ_ENABLE_GTK2)
4624 AC_SUBST(MOZ_ENABLE_GTK3)
4625 AC_SUBST(MOZ_ENABLE_GTK)
4626 AC_SUBST(MOZ_ENABLE_QT)
4627 AC_SUBST(MOZ_ENABLE_QTNETWORK)
4628 AC_SUBST(MOZ_ENABLE_QMSYSTEM2)
4629 AC_SUBST(MOZ_ENABLE_QTMOBILITY)
4630 AC_SUBST(MOZ_ENABLE_XREMOTE)
4631 AC_SUBST(MOZ_GTK2_CFLAGS)
4632 AC_SUBST(MOZ_GTK2_LIBS)
4633 AC_SUBST(MOZ_GTK3_CFLAGS)
4634 AC_SUBST(MOZ_GTK3_LIBS)
4635 AC_SUBST(MOZ_WIDGET_GTK)
4636 AC_SUBST(MOZ_QT_CFLAGS)
4637 AC_SUBST(MOZ_QT_LIBS)
4639 AC_SUBST(MOC)
4640 AC_SUBST(RCC)
4642 AC_SUBST(MOZ_X11)
4644 dnl ========================================================
4645 dnl =
4646 dnl = Components & Features
4647 dnl =
4648 dnl ========================================================
4649 MOZ_ARG_HEADER(Components and Features)
4651 dnl ========================================================
4652 dnl = Localization
4653 dnl ========================================================
4654 MOZ_ARG_ENABLE_STRING(ui-locale,
4655 [  --enable-ui-locale=ab-CD
4656                           Select the user interface locale (default: en-US)],
4657     MOZ_UI_LOCALE=$enableval )
4658 AC_SUBST(MOZ_UI_LOCALE)
4660 dnl ========================================================
4661 dnl = Trademarked Branding
4662 dnl ========================================================
4663 MOZ_ARG_ENABLE_BOOL(official-branding,
4664 [  --enable-official-branding
4665                           Enable Official mozilla.org Branding
4666                           Do not distribute builds with
4667                           --enable-official-branding unless you have
4668                           permission to use trademarks per
4669                           http://www.mozilla.org/foundation/trademarks/ .],
4671   if test -z "$MOZ_OFFICIAL_BRANDING_DIRECTORY"; then
4672     AC_MSG_ERROR([You must specify MOZ_OFFICIAL_BRANDING_DIRECTORY to use --enable-official-branding.])
4673   else
4674     MOZ_BRANDING_DIRECTORY=${MOZ_OFFICIAL_BRANDING_DIRECTORY}
4675     MOZ_OFFICIAL_BRANDING=1
4676   fi
4677 ], MOZ_OFFICIAL_BRANDING=)
4679 AC_SUBST(MOZ_OFFICIAL_BRANDING)
4680 if test -n "$MOZ_OFFICIAL_BRANDING"; then
4681   AC_DEFINE(MOZ_OFFICIAL_BRANDING)
4684 MOZ_ARG_WITH_STRING(branding,
4685 [  --with-branding=dir     Use branding from the specified directory.],
4686     MOZ_BRANDING_DIRECTORY=$withval)
4688 REAL_BRANDING_DIRECTORY="${MOZ_BRANDING_DIRECTORY}"
4689 if test -z "$REAL_BRANDING_DIRECTORY"; then
4690   REAL_BRANDING_DIRECTORY=${MOZ_BUILD_APP}/branding/nightly
4693 if test -f "${_topsrcdir}/$REAL_BRANDING_DIRECTORY/configure.sh"; then
4694   . "${_topsrcdir}/$REAL_BRANDING_DIRECTORY/configure.sh"
4697 AC_SUBST(MOZ_BRANDING_DIRECTORY)
4699 dnl ========================================================
4700 dnl = Distribution ID
4701 dnl ========================================================
4702 MOZ_ARG_WITH_STRING(distribution-id,
4703 [  --with-distribution-id=ID
4704                           Set distribution-specific id (default=org.mozilla)],
4705 [ val=`echo $withval`
4706     MOZ_DISTRIBUTION_ID="$val"])
4708 if test -z "$MOZ_DISTRIBUTION_ID"; then
4709    MOZ_DISTRIBUTION_ID="org.mozilla"
4712 AC_DEFINE_UNQUOTED(MOZ_DISTRIBUTION_ID,"$MOZ_DISTRIBUTION_ID")
4713 AC_SUBST(MOZ_DISTRIBUTION_ID)
4716 dnl ========================================================
4717 dnl complex text support off by default
4718 dnl ========================================================
4719 MOZ_ARG_DISABLE_BOOL(pango,
4720 [  --disable-pango         Disable usage of Pango ],
4721     MOZ_PANGO=,
4722     MOZ_PANGO=1)
4724 dnl ========================================================
4725 dnl = Pango
4726 dnl ========================================================
4727 if test "$MOZ_ENABLE_GTK" -o "$MOZ_ENABLE_QT"
4728 then
4729     AC_SUBST(MOZ_PANGO)
4731     if test "$MOZ_PANGO"
4732     then
4733         PKG_CHECK_MODULES(_PANGOCHK, pango >= $PANGO_VERSION)
4735         PKG_CHECK_MODULES(MOZ_PANGO, pango >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION pangocairo >= $PANGO_VERSION)
4736         AC_SUBST(MOZ_PANGO_CFLAGS)
4737         AC_SUBST(MOZ_PANGO_LIBS)
4738         AC_DEFINE(MOZ_PANGO)
4739     else
4740         PKG_CHECK_MODULES(FT2, freetype2 > 6.1.0)
4741         AC_SUBST(FT2_CFLAGS)
4742         AC_SUBST(FT2_LIBS)
4743     fi
4746 dnl ========================================================
4747 dnl = GnomeVFS, GIO and GConf support module
4748 dnl ========================================================
4750 if test "$MOZ_X11"
4751 then
4752     dnl build the GIO extension by default only when the
4753     dnl GTK2 toolkit is in use.
4754     if test "$MOZ_ENABLE_GTK"
4755     then
4756         MOZ_ENABLE_GIO=1
4757         MOZ_ENABLE_GCONF=1
4758     fi
4760     dnl ========================================================
4761     dnl = GnomeVFS support module
4762     dnl ========================================================
4763     MOZ_ARG_ENABLE_BOOL(gnomevfs,
4764     [  --enable-gnomevfs       Enable GnomeVFS support (default: disabled)],
4765         MOZ_ENABLE_GNOMEVFS=force,
4766         MOZ_ENABLE_GNOMEVFS=)
4768     if test "$MOZ_ENABLE_GNOMEVFS"
4769     then
4770         PKG_CHECK_MODULES(MOZ_GNOMEVFS, gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION,[
4771             MOZ_GNOMEVFS_LIBS=`echo $MOZ_GNOMEVFS_LIBS | sed 's/-llinc\>//'`
4772             MOZ_ENABLE_GNOMEVFS=1
4773             AC_DEFINE(MOZ_ENABLE_GNOMEVFS)
4774         ],[
4775             if test "$MOZ_ENABLE_GNOMEVFS" = "force"
4776             then
4777                 AC_MSG_ERROR([* * * Could not find gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION])
4778             fi
4779             MOZ_ENABLE_GNOMEVFS=
4780         ])
4781     fi
4783     AC_SUBST(MOZ_ENABLE_GNOMEVFS)
4784     AC_SUBST(MOZ_GNOMEVFS_CFLAGS)
4785     AC_SUBST(MOZ_GNOMEVFS_LIBS)
4787     dnl ========================================================
4788     dnl = GIO support module
4789     dnl ========================================================
4790     MOZ_ARG_DISABLE_BOOL(gio,
4791     [  --disable-gio           Disable GIO support],
4792         MOZ_ENABLE_GIO=,
4793         MOZ_ENABLE_GIO=force)
4795     if test "$MOZ_ENABLE_GIO" -a "$MOZ_ENABLE_GTK"
4796     then
4797         PKG_CHECK_MODULES(_GTKCHECK, gtk+-2.0 >= 2.14, ,
4798                           [AC_MSG_ERROR([* * * Could not find gtk+-2.0 > 2.14. Required for build with gio.])])
4799         PKG_CHECK_MODULES(MOZ_GIO, gio-2.0 >= $GIO_VERSION,[
4800             MOZ_GIO_LIBS=`echo $MOZ_GIO_LIBS | sed 's/-llinc\>//'`
4801             MOZ_ENABLE_GIO=1
4802             AC_DEFINE(MOZ_ENABLE_GIO)
4803         ],[
4804             if test "$MOZ_ENABLE_GIO" = "force"
4805             then
4806                 AC_MSG_ERROR([* * * Could not find gio-2.0 >= $GIO_VERSION])
4807             fi
4808             MOZ_ENABLE_GIO=
4809         ])
4810     fi
4812     AC_SUBST(MOZ_ENABLE_GIO)
4813     AC_SUBST(MOZ_GIO_CFLAGS)
4814     AC_SUBST(MOZ_GIO_LIBS)
4816     dnl ========================================================
4817     dnl = GConf support module
4818     dnl ========================================================
4819     MOZ_ARG_DISABLE_BOOL(gconf,
4820     [  --disable-gconf      Disable Gconf support ],
4821         MOZ_ENABLE_GCONF=,
4822         MOZ_ENABLE_GCONF=force)
4824     if test "$MOZ_ENABLE_GCONF"
4825     then
4826         PKG_CHECK_MODULES(MOZ_GCONF, gconf-2.0 >= $GCONF_VERSION gobject-2.0 ,[
4827             MOZ_GCONF_LIBS=`$PKG_CONFIG --libs gobject-2.0`
4828             MOZ_ENABLE_GCONF=1
4829         ],[
4830             if test "$MOZ_ENABLE_GCONF" = "force"
4831             then
4832                 AC_MSG_ERROR([* * * Could not find gconf-2.0 ])
4833             fi
4834             MOZ_ENABLE_GCONF=
4835         ])
4836     fi
4838     if test "$MOZ_ENABLE_GCONF"; then
4839         AC_DEFINE(MOZ_ENABLE_GCONF)
4840     fi
4842     AC_SUBST(MOZ_ENABLE_GCONF)
4843     AC_SUBST(MOZ_GCONF_CFLAGS)
4844     AC_SUBST(MOZ_GCONF_LIBS)
4847 dnl ========================================================
4848 dnl = libproxy support
4849 dnl ========================================================
4851 if test "$MOZ_ENABLE_GTK" -o "$MOZ_ENABLE_QT"
4852 then
4853     MOZ_ENABLE_LIBPROXY=
4855     MOZ_ARG_ENABLE_BOOL(libproxy,
4856     [  --enable-libproxy         Enable libproxy support ],
4857     MOZ_ENABLE_LIBPROXY=1,
4858     MOZ_ENABLE_LIBPROXY=)
4860     if test "$MOZ_ENABLE_LIBPROXY"
4861     then
4862         PKG_CHECK_MODULES(MOZ_LIBPROXY, libproxy-1.0)
4863         AC_DEFINE(MOZ_ENABLE_LIBPROXY)
4864     fi
4866 AC_SUBST(MOZ_ENABLE_LIBPROXY)
4867 AC_SUBST(MOZ_LIBPROXY_CFLAGS)
4868 AC_SUBST(MOZ_LIBPROXY_LIBS)
4870 dnl ========================================================
4871 dnl = GNOME component (mozgnome)
4872 dnl ========================================================
4874 if test "$MOZ_ENABLE_GTK2"
4875 then
4876     MOZ_ENABLE_GNOME_COMPONENT=1
4878 AC_SUBST(MOZ_ENABLE_GNOME_COMPONENT)
4880 dnl ========================================================
4881 dnl = libgnomeui support module
4882 dnl ========================================================
4884 if test "$MOZ_ENABLE_GTK"
4885 then
4886     MOZ_ARG_ENABLE_BOOL(gnomeui,
4887     [  --enable-gnomeui        Enable libgnomeui instead of GIO & GTK for icon theme support ],
4888         MOZ_ENABLE_GNOMEUI=force,
4889         MOZ_ENABLE_GNOMEUI=)
4891     if test "$MOZ_ENABLE_GNOMEUI"
4892     then
4893         PKG_CHECK_MODULES(MOZ_GNOMEUI, libgnomeui-2.0 >= $GNOMEUI_VERSION,
4894         [
4895             MOZ_ENABLE_GNOMEUI=1
4896         ],[
4897             if test "$MOZ_ENABLE_GNOMEUI" = "force"
4898             then
4899                 AC_MSG_ERROR([* * * Could not find libgnomeui-2.0 >= $GNOMEUI_VERSION])
4900             fi
4901             MOZ_ENABLE_GNOMEUI=
4902         ])
4903     fi
4905     if test "$MOZ_ENABLE_GNOMEUI"; then
4906         AC_DEFINE(MOZ_ENABLE_GNOMEUI)
4907     fi
4910 AC_SUBST(MOZ_ENABLE_GNOMEUI)
4911 AC_SUBST(MOZ_GNOMEUI_CFLAGS)
4913 dnl ========================================================
4914 dnl = dbus support
4915 dnl ========================================================
4917 if test "$MOZ_ENABLE_GTK" -o "$MOZ_ENABLE_QT"
4918 then
4919     MOZ_ENABLE_DBUS=1
4921     MOZ_ARG_DISABLE_BOOL(dbus,
4922     [  --disable-dbus          Disable dbus support ],
4923         MOZ_ENABLE_DBUS=,
4924         MOZ_ENABLE_DBUS=1)
4926     if test "$MOZ_ENABLE_DBUS"
4927     then
4928         PKG_CHECK_MODULES(MOZ_DBUS, dbus-1 >= $DBUS_VERSION)
4929         PKG_CHECK_MODULES(MOZ_DBUS_GLIB, dbus-glib-1 >= $DBUS_VERSION)
4930         AC_DEFINE(MOZ_ENABLE_DBUS)
4931     fi
4933 AC_SUBST(MOZ_ENABLE_DBUS)
4934 AC_SUBST(MOZ_DBUS_CFLAGS)
4935 AC_SUBST(MOZ_DBUS_LIBS)
4936 AC_SUBST(MOZ_DBUS_GLIB_CFLAGS)
4937 AC_SUBST(MOZ_DBUS_GLIB_LIBS)
4939 dnl ========================================================
4940 dnl = Enable Android History instead of Places
4941 dnl ========================================================
4942 if test -n "$MOZ_ANDROID_HISTORY"; then
4943     if test -z "$MOZ_PLACES"; then
4944         AC_DEFINE(MOZ_ANDROID_HISTORY)
4945     else
4946         AC_MSG_ERROR([Cannot use MOZ_ANDROID_HISTORY alongside MOZ_PLACES.])
4947     fi
4950 dnl ========================================================
4951 dnl = Build with the Android compositor
4952 dnl ========================================================
4953 if test -n "$MOZ_ANDROID_OMTC"; then
4954      dnl Do this if defined in confvars.sh
4955      AC_DEFINE(MOZ_ANDROID_OMTC)
4958 dnl ========================================================
4959 dnl = Disable WebSMS backend
4960 dnl ========================================================
4961 MOZ_ARG_DISABLE_BOOL(websms-backend,
4962 [  --disable-websms-backend
4963                            Disable WebSMS backend],
4964     MOZ_WEBSMS_BACKEND=,
4965     MOZ_WEBSMS_BACKEND=1)
4967 if test -n "$MOZ_WEBSMS_BACKEND"; then
4968     AC_DEFINE(MOZ_WEBSMS_BACKEND)
4971 dnl ========================================================
4972 dnl = Enable NFC permission on Android
4973 dnl ========================================================
4974 if test -n "$MOZ_ANDROID_BEAM"; then
4975     AC_DEFINE(MOZ_ANDROID_BEAM)
4978 dnl ========================================================
4979 dnl = JS Debugger XPCOM component (js/jsd)
4980 dnl ========================================================
4981 MOZ_ARG_DISABLE_BOOL(jsd,
4982 [  --disable-jsd           Disable JavaScript debug library],
4983     MOZ_JSDEBUGGER=,
4984     MOZ_JSDEBUGGER=1)
4987 dnl ========================================================
4988 dnl = Enable IPDL's "expensive" unit tests
4989 dnl ========================================================
4990 MOZ_IPDL_TESTS=
4992 MOZ_ARG_ENABLE_BOOL(ipdl-tests,
4993 [  --enable-ipdl-tests     Enable expensive IPDL tests],
4994     MOZ_IPDL_TESTS=1,
4995     MOZ_IPDL_TESTS=)
4997 if test -n "$MOZ_IPDL_TESTS"; then
4998     AC_DEFINE(MOZ_IPDL_TESTS)
5001 AC_SUBST(MOZ_IPDL_TESTS)
5003 dnl ========================================================
5004 dnl = Disable building dbm
5005 dnl ========================================================
5006 MOZ_ARG_DISABLE_BOOL(dbm,
5007 [  --disable-dbm           Disable building dbm],
5008     NSS_DISABLE_DBM=1,
5009     NSS_DISABLE_DBM=)
5011 dnl bi-directional support always on
5012 IBMBIDI=1
5013 AC_DEFINE(IBMBIDI)
5015 dnl ========================================================
5016 dnl accessibility support on by default on all platforms
5017 dnl ========================================================
5018 MOZ_ARG_DISABLE_BOOL(accessibility,
5019 [  --disable-accessibility Disable accessibility support],
5020     ACCESSIBILITY=,
5021     ACCESSIBILITY=1 )
5022 if test "$ACCESSIBILITY"; then
5023     case "$target" in
5024     *-mingw*)
5025         if test -z "$MIDL"; then
5026             if test "$GCC" != "yes"; then
5027                 AC_MSG_ERROR([MIDL could not be found. Building accessibility without MIDL is not supported.])
5028             else
5029                 AC_MSG_ERROR([You have accessibility enabled, but widl could not be found. Add --disable-accessibility to your mozconfig or install widl. See https://developer.mozilla.org/en-US/docs/Cross_Compile_Mozilla_for_Mingw32 for details.])
5030             fi
5031         fi
5032     esac
5033     AC_DEFINE(ACCESSIBILITY)
5036 dnl ========================================================
5037 dnl Accessibility is required for the linuxgl widget
5038 dnl backend
5039 dnl ========================================================
5040 if test "${MOZ_WIDGET_TOOLKIT}" = "linuxgl" -a "$ACCESSIBILITY" != "1"; then
5041     AC_MSG_ERROR(["Accessibility is required for the linuxgl widget backend"])
5044 dnl ========================================================
5045 dnl Disable printing
5046 dnl ========================================================
5047 MOZ_ARG_DISABLE_BOOL(printing,
5048 [  --disable-printing      Disable printing support],
5049     NS_PRINTING=,
5050     NS_PRINTING=1)
5052 if test "$NS_PRINTING"; then
5053     AC_DEFINE(NS_PRINTING)
5054     AC_DEFINE(NS_PRINT_PREVIEW)
5057 dnl Turn off webrtc for OS's we don't handle yet, but allow 
5058 dnl --enable-webrtc to override.  Can disable for everything in
5059 dnl the master list above.
5060 if test -n "$MOZ_WEBRTC"; then
5061     case "$target" in
5062     *-linux*|*-mingw*|*-darwin*|*-android*|*-linuxandroid*|*-dragonfly*|*-freebsd*|*-netbsd*|*-openbsd*)
5063         dnl Leave enabled
5064         ;;
5065     *)
5066         dnl default to disabled for all others
5067         MOZ_WEBRTC=
5068         ;;
5069     esac
5072 AC_TRY_COMPILE([#include <linux/ethtool.h>],
5073                [ struct ethtool_cmd cmd; cmd.speed_hi = 0; ],
5074                MOZ_WEBRTC_HAVE_ETHTOOL_SPEED_HI=1)
5076 # target_arch is from {ia32|x64|arm|ppc}
5077 case "$CPU_ARCH" in
5078 x86_64)
5079     WEBRTC_TARGET_ARCH=x64
5080     ;;
5082 arm*)
5083     WEBRTC_TARGET_ARCH=arm
5084     ;;
5086 x86)
5087     WEBRTC_TARGET_ARCH=ia32
5088     ;;
5090 ppc*)
5091     WEBRTC_TARGET_ARCH=ppc
5092     ;;
5093 ia64)
5094     WEBRTC_TARGET_ARCH=ia64
5095     ;;
5097 # unsupported arch for webrtc
5098     WEBRTC_TARGET_ARCH=unknown
5099     MOZ_WEBRTC=
5100     ;;
5102 esac
5104 dnl ========================================================
5105 dnl = Disable WebRTC code
5106 dnl ========================================================
5107 MOZ_ARG_DISABLE_BOOL(webrtc,
5108 [  --disable-webrtc        Disable support for WebRTC],
5109     MOZ_WEBRTC=,
5110     MOZ_WEBRTC=1)
5112 if test -n "$MOZ_WEBRTC"; then
5113     AC_DEFINE(MOZ_WEBRTC)
5114     dnl MOZ_WEBRTC_ASSERT_ALWAYS turns on a number of safety asserts in
5115     dnl opt/production builds (via MOZ_CRASH())
5116     AC_DEFINE(MOZ_WEBRTC_ASSERT_ALWAYS)
5117     MOZ_RAW=1
5118     MOZ_VP8=1
5119     MOZ_VP8_ENCODER=1
5120     MOZ_VP8_ERROR_CONCEALMENT=1
5122 dnl enable once Signaling lands
5123     MOZ_WEBRTC_SIGNALING=1
5124     AC_DEFINE(MOZ_WEBRTC_SIGNALING)
5125 dnl enable once PeerConnection lands
5126     MOZ_PEERCONNECTION=1
5127     AC_DEFINE(MOZ_PEERCONNECTION)
5128     MOZ_SCTP=1
5129     MOZ_SRTP=1
5130     AC_DEFINE(MOZ_SCTP)
5131     AC_DEFINE(MOZ_SRTP)
5134 AC_SUBST(MOZ_WEBRTC)
5135 AC_SUBST(MOZ_WEBRTC_LEAKING_TESTS)
5136 AC_SUBST(MOZ_WEBRTC_SIGNALING)
5137 AC_SUBST(MOZ_PEERCONNECTION)
5138 AC_SUBST(MOZ_WEBRTC_ASSERT_ALWAYS)
5139 AC_SUBST(MOZ_SCTP)
5140 AC_SUBST(MOZ_SRTP)
5142 dnl Use integers over floats for audio on B2G and Android, because audio
5143 dnl backends for those platforms don't support floats.
5144 if test "$OS_TARGET" = "Android"; then
5145     MOZ_SAMPLE_TYPE_S16=1
5146     AC_DEFINE(MOZ_SAMPLE_TYPE_S16)
5147     AC_SUBST(MOZ_SAMPLE_TYPE_S16)
5148 else
5149     MOZ_SAMPLE_TYPE_FLOAT32=1
5150     AC_DEFINE(MOZ_SAMPLE_TYPE_FLOAT32)
5151     AC_SUBST(MOZ_SAMPLE_TYPE_FLOAT32)
5154 dnl ========================================================
5155 dnl = Disable Speech API code
5156 dnl ========================================================
5157 MOZ_ARG_DISABLE_BOOL(webspeech,
5158 [  --disable-webspeech        Disable support for HTML Speech API],
5159     MOZ_WEBSPEECH=,
5160     MOZ_WEBSPEECH=1)
5162 if test -n "$MOZ_WEBSPEECH"; then
5163     AC_DEFINE(MOZ_WEBSPEECH)
5166 AC_SUBST(MOZ_WEBSPEECH)
5168 dnl ========================================================
5169 dnl = Enable Raw Codecs
5170 dnl ========================================================
5171 MOZ_ARG_ENABLE_BOOL(raw,
5172 [  --enable-raw           Enable support for RAW media],
5173     MOZ_RAW=1,
5174     MOZ_RAW=)
5176 if test -n "$MOZ_RAW"; then
5177     AC_DEFINE(MOZ_RAW)
5180 AC_SUBST(MOZ_RAW)
5182 dnl ========================================================
5183 dnl = Disable Ogg Codecs
5184 dnl ========================================================
5185 MOZ_ARG_DISABLE_BOOL(ogg,
5186 [  --disable-ogg           Disable support for OGG media (Theora video and Vorbis audio)],
5187     MOZ_OGG=,
5188     MOZ_OGG=1)
5190 if test -n "$MOZ_OGG"; then
5191     AC_DEFINE(MOZ_OGG)
5192     MOZ_CUBEB=1
5194     dnl Checks for __attribute__(aligned()) directive
5195     AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
5196         [ac_cv_c_attribute_aligned],
5197         [ac_cv_c_attribute_aligned=0
5198          CFLAGS_save="${CFLAGS}"
5199          CFLAGS="${CFLAGS} -Werror"
5200          for ac_cv_c_attr_align_try in 64 32 16 8; do
5201            echo "trying $ac_cv_c_attr_align_try"
5202            AC_TRY_COMPILE([],
5203                           [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
5204                           [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
5205            if test "$ac_cv_c_attribute_aligned" != 0; then
5206              break;
5207            fi
5208          done
5209            CFLAGS="${CFLAGS_save}"])
5210     if test "${ac_cv_c_attribute_aligned}" != "0"; then
5211       AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
5212                          [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
5213     fi
5216 dnl ========================================================
5217 dnl = Disable Opus audio codec support
5218 dnl ========================================================
5219 MOZ_ARG_DISABLE_BOOL(opus,
5220 [  --disable-opus          Disable support for Opus audio],
5221     MOZ_OPUS=,
5222     MOZ_OPUS=1)
5224 dnl ========================================================
5225 dnl = Disable VP8 decoder support
5226 dnl ========================================================
5227 MOZ_ARG_DISABLE_BOOL(webm,
5228 [  --disable-webm          Disable support for WebM media (VP8 video and Vorbis audio)],
5229     MOZ_WEBM=,
5230     MOZ_WEBM=1)
5232 if test -n "$MOZ_WEBM"; then
5233     AC_DEFINE(MOZ_WEBM)
5234     MOZ_VP8=1
5237 dnl ========================================================
5238 dnl = DirectShow support
5239 dnl ========================================================
5240 if test "$OS_ARCH" = "WINNT"; then
5241     dnl Enable DirectShow support by default.
5242     MOZ_DIRECTSHOW=1
5245 MOZ_ARG_DISABLE_BOOL(directshow,
5246 [  --disable-directshow  Disable support for DirectShow],
5247     MOZ_DIRECTSHOW=,
5248     MOZ_DIRECTSHOW=1)
5250 if test -n "$MOZ_DIRECTSHOW"; then
5251     AC_DEFINE(MOZ_DIRECTSHOW)
5252     MOZ_CUBEB=1
5255 dnl ========================================================
5256 dnl = Windows Media Foundation support
5257 dnl ========================================================
5258 if test "$OS_ARCH" = "WINNT"; then
5259     dnl Enable Windows Media Foundation support by default.
5260     dnl Note our minimum SDK version is Windows 7 SDK, so we are (currently)
5261     dnl guaranteed to have a recent-enough SDK to build WMF.
5262     MOZ_WMF=1
5265 MOZ_ARG_DISABLE_BOOL(wmf,
5266 [  --disable-wmf  Disable support for Windows Media Foundation],
5267     MOZ_WMF=,
5268     MOZ_WMF=1)
5270 if test -n "$MOZ_WMF"; then
5271     AC_DEFINE(MOZ_WMF)
5272     MOZ_CUBEB=1
5275 dnl ========================================================
5276 dnl = Enable media plugin support
5277 dnl ========================================================
5278 if test "$OS_TARGET" = Android -a x"$MOZ_WIDGET_TOOLKIT" != x"gonk"; then
5279   dnl Enable support on android by default
5280   MOZ_MEDIA_PLUGINS=1
5283 MOZ_ARG_ENABLE_BOOL(media-plugins,
5284 [  --enable-media-plugins  Enable support for media plugins],
5285     MOZ_MEDIA_PLUGINS=1,
5286     MOZ_MEDIA_PLUGINS=)
5288 if test -n "$MOZ_MEDIA_PLUGINS"; then
5289   AC_DEFINE(MOZ_MEDIA_PLUGINS)
5292 dnl ========================================================
5293 dnl = Disable platform MP3 decoder on OSX
5294 dnl ========================================================
5295 if test "$MOZ_WIDGET_TOOLKIT" = "cocoa"; then
5296   MOZ_APPLEMEDIA=1
5299 MOZ_ARG_DISABLE_BOOL(apple-media,
5300 [  --disable-apple-media  Disable support for Apple AudioToolbox/VideoToolbox],
5301     MOZ_APPLEMEDIA=,
5302     MOZ_APPLEMEDIA=1)
5304 if test -n "$MOZ_APPLEMEDIA"; then
5305   AC_DEFINE(MOZ_APPLEMEDIA)
5308 dnl ========================================================
5309 dnl = Enable getUserMedia support
5310 dnl ========================================================
5311 MOZ_ARG_ENABLE_BOOL(media-navigator,
5312 [  --enable-media-navigator  Enable support for getUserMedia],
5313     MOZ_MEDIA_NAVIGATOR=1,
5314     MOZ_MEDIA_NAVIGATOR=)
5316 if test -n "$MOZ_MEDIA_NAVIGATOR"; then
5317   AC_DEFINE(MOZ_MEDIA_NAVIGATOR)
5320 dnl ========================================================
5321 dnl = Enable building OMX media plugin (B2G or Android)
5322 dnl ========================================================
5323 if test "$OS_TARGET" = Android -a x"$MOZ_WIDGET_TOOLKIT" != x"gonk"; then
5324   dnl Enable support on android by default
5325   MOZ_OMX_PLUGIN=1
5328 MOZ_ARG_ENABLE_BOOL(omx-plugin,
5329 [  --enable-omx-plugin      Enable building OMX plugin (B2G)],
5330     MOZ_OMX_PLUGIN=1,
5331     MOZ_OMX_PLUGIN=)
5333 if test -n "$MOZ_OMX_PLUGIN"; then
5334     if test "$OS_TARGET" = "Android"; then
5335         dnl Only allow building OMX plugin on Gonk (B2G) or Android
5336         AC_DEFINE(MOZ_OMX_PLUGIN)
5337     else
5338        dnl fail if we're not building on Gonk or Android
5339        AC_MSG_ERROR([OMX media plugin can only be built on B2G or Android])
5340     fi
5343 dnl system libvpx Support
5344 dnl ========================================================
5345 MOZ_ARG_WITH_BOOL(system-libvpx,
5346 [  --with-system-libvpx    Use system libvpx (located with pkgconfig)],
5347     MOZ_NATIVE_LIBVPX=1)
5349 MOZ_LIBVPX_CFLAGS=
5350 MOZ_LIBVPX_LIBS=
5352 if test -n "$MOZ_VP8"; then
5353     AC_DEFINE(MOZ_VP8)
5354     if test -n "$MOZ_VP8_ERROR_CONCEALMENT" ; then
5355         AC_DEFINE(MOZ_VP8_ERROR_CONCEALMENT)
5356     fi
5357     if test -n "$MOZ_VP8_ENCODER" ; then
5358         AC_DEFINE(MOZ_VP8_ENCODER)
5359     fi
5361     if test -n "$MOZ_NATIVE_LIBVPX"; then
5362         dnl ============================
5363         dnl === libvpx Version check ===
5364         dnl ============================
5365         dnl Check to see if we have a system libvpx package.
5366         PKG_CHECK_MODULES(MOZ_LIBVPX, vpx >= 1.0.0)
5368         MOZ_CHECK_HEADER([vpx/vpx_decoder.h], [], 
5369          [AC_MSG_ERROR([Couldn't find vpx/vpx_decoder.h which is required for build with system libvpx. Use --without-system-libvpx to build with in-tree libvpx.])])
5371         _SAVE_LIBS=$LIBS
5372         AC_CHECK_LIB(vpx, vpx_codec_dec_init_ver, [], 
5373          [AC_MSG_ERROR([--with-system-libvpx requested but symbol vpx_codec_dec_init_ver not found])])
5374         LIBS=$_SAVE_LIBS
5375     fi
5378 AC_SUBST(MOZ_NATIVE_LIBVPX)
5379 AC_SUBST(MOZ_LIBVPX_CFLAGS)
5380 AC_SUBST(MOZ_LIBVPX_LIBS)
5382 if test "$MOZ_WEBM" -o "$MOZ_OGG"; then
5383     MOZ_CUBEB=1
5384     if test "$MOZ_SAMPLE_TYPE_FLOAT32"; then
5385         MOZ_VORBIS=1
5386     else
5387         MOZ_TREMOR=1
5388     fi
5391 if test -n "$MOZ_VP8" -a -z "$MOZ_NATIVE_LIBVPX"; then
5393     dnl Detect if we can use an assembler to compile optimized assembly for libvpx.
5394     dnl We currently require yasm on all x86 platforms and require yasm 1.1.0 on Win32.
5395     dnl We currently require gcc on all arm platforms.
5396     VPX_AS=$YASM
5397     VPX_ASM_SUFFIX=asm
5398     VPX_NEED_OBJ_INT_EXTRACT=
5400     dnl See if we have assembly on this platform.
5401     case "$OS_ARCH:$CPU_ARCH" in
5402     Darwin:x86)
5403       VPX_ASFLAGS="-f macho32 -rnasm -pnasm -DPIC"
5404       VPX_X86_ASM=1
5405     ;;
5406     Darwin:x86_64)
5407       VPX_ASFLAGS="-f macho64 -rnasm -pnasm -DPIC"
5408       VPX_X86_ASM=1
5409     ;;
5410     WINNT:x86_64)
5411       VPX_ASFLAGS="-f x64 -rnasm -pnasm"
5412       VPX_X86_ASM=1
5413     ;;
5414     WINNT:x86)
5415       dnl Check for yasm 1.1 or greater.
5416       if test -n "$COMPILE_ENVIRONMENT" -a -z "$YASM"; then
5417         AC_MSG_ERROR([yasm 1.1 or greater is required to build libvpx on Win32, but it appears not to be installed.  Install it (included in MozillaBuild 1.5.1 and newer) or configure with --disable-webm (which disables the WebM video format). See https://developer.mozilla.org/en/YASM for more details.])
5418       elif test -n "$COMPILE_ENVIRONMENT" -a "$_YASM_MAJOR_VERSION" -lt "1" -o \( "$_YASM_MAJOR_VERSION" -eq "1" -a "$_YASM_MINOR_VERSION" -lt "1" \) ; then
5419         AC_MSG_ERROR([yasm 1.1 or greater is required to build libvpx on Win32, but you appear to have version $_YASM_MAJOR_VERSION.$_YASM_MINOR_VERSION.  Upgrade to the newest version (included in MozillaBuild 1.5.1 and newer) or configure with --disable-webm (which disables the WebM video format). See https://developer.mozilla.org/en/YASM for more details.])
5420       else
5421         VPX_ASFLAGS="-f win32 -rnasm -pnasm -DPIC"
5422         VPX_X86_ASM=1
5423         dnl The encoder needs obj_int_extract to get asm offsets.
5424       fi
5425     ;;
5426     *:arm*)
5427       if test -n "$GNU_AS" ; then
5428         VPX_AS=$AS
5429         dnl These flags are a lie; they're just used to enable the requisite
5430         dnl opcodes; actual arch detection is done at runtime.
5431         VPX_ASFLAGS="-march=armv7-a -mfpu=neon"
5432         VPX_DASH_C_FLAG="-c"
5433         VPX_AS_CONVERSION='$(PERL) $(topsrcdir)/media/libvpx/build/make/ads2gas.pl'
5434         VPX_ASM_SUFFIX="$ASM_SUFFIX"
5435         VPX_ARM_ASM=1
5436       fi
5437     ;;
5438     *:x86)
5439       if $CC -E -dM -</dev/null | grep -q __ELF__; then
5440         VPX_ASFLAGS="-f elf32 -rnasm -pnasm"
5441         VPX_X86_ASM=1
5442       fi
5443     ;;
5444     *:x86_64)
5445       if $CC -E -dM -</dev/null | grep -q __ELF__; then
5446         VPX_ASFLAGS="-f elf64 -rnasm -pnasm -DPIC"
5447         VPX_X86_ASM=1
5448       fi
5449     ;;
5450     esac
5452     if test -n "$COMPILE_ENVIRONMENT" -a -n "$VPX_X86_ASM" -a -z "$VPX_AS"; then
5453       AC_MSG_ERROR([yasm is a required build tool for this architecture when webm is enabled. You may either install yasm or --disable-webm (which disables the WebM video format). See https://developer.mozilla.org/en/YASM for more details.])
5454     fi
5456     if test -n "$MOZ_VP8_ENCODER" -a \
5457             -z "$GNU_CC" -a -z "$INTEL_CC" -a -z "$CLANG_CC" ; then
5458       dnl We prefer to get asm offsets using inline assembler, which the above
5459       dnl compilers can do. When we're not using one of those, we have to fall
5460       dnl back to obj_int_extract, which reads them from a compiled object
5461       dnl file. Unfortunately, that only works if we're compiling on a system
5462       dnl with the header files for the appropriate object file format.
5463       VPX_NEED_OBJ_INT_EXTRACT=1
5464     fi
5466     if test -n "$VPX_X86_ASM"; then
5467       AC_DEFINE(VPX_X86_ASM)
5468     elif test -n "$VPX_ARM_ASM"; then
5469       AC_DEFINE(VPX_ARM_ASM)
5470     else
5471       AC_MSG_WARN([No assembler or assembly support for libvpx. Using unoptimized C routines.])
5472     fi
5475 dnl ========================================================
5476 dnl = Disable Wave decoder support
5477 dnl ========================================================
5478 MOZ_ARG_DISABLE_BOOL(wave,
5479 [  --disable-wave          Disable Wave decoder support],
5480     MOZ_WAVE=,
5481     MOZ_WAVE=1)
5483 if test -n "$MOZ_WAVE"; then
5484     AC_DEFINE(MOZ_WAVE)
5485     MOZ_CUBEB=1
5488 dnl ========================================================
5489 dnl = Handle dependent CUBEB and MEDIA defines
5490 dnl ========================================================
5492 if test -n "$MOZ_SPEEX_RESAMPLER"; then
5493     AC_DEFINE(MOZ_SPEEX_RESAMPLER)
5496 if test -n "$MOZ_SOUNDTOUCH"; then
5497     AC_DEFINE(MOZ_SOUNDTOUCH)
5500 if test -n "$MOZ_CUBEB"; then
5501     AC_DEFINE(MOZ_CUBEB)
5504 if test -n "$MOZ_OPUS" -a -z "$MOZ_OGG"; then
5505     AC_MSG_ERROR([MOZ_OPUS requires MOZ_OGG which is disabled.])
5508 if test -n "$MOZ_VORBIS" -a -z "$MOZ_OGG"; then
5509     AC_MSG_ERROR([MOZ_VORBIS requires MOZ_OGG which is disabled.
5510 Note that you need vorbis support for WebM playback.])
5513 if test -n "$MOZ_VORBIS" -a -n "$MOZ_TREMOR"; then
5514     AC_MSG_ERROR([MOZ_VORBIS and MOZ_TREMOR are mutually exclusive!  The build system should not allow them both to be set, but they are.  Please file a bug at https://bugzilla.mozilla.org/])
5517 if test -n "$MOZ_WEBRTC" -a -z "$MOZ_OPUS"; then
5518     AC_MSG_ERROR([MOZ_WEBRTC requires MOZ_OPUS which is disabled.])
5521 if test -n "$MOZ_VORBIS"; then
5522     AC_DEFINE(MOZ_VORBIS)
5525 if test -n "$MOZ_TREMOR"; then
5526     AC_DEFINE(MOZ_TREMOR)
5529 if test -n "$MOZ_OPUS"; then
5530     AC_DEFINE(MOZ_OPUS)
5533 dnl ====================================================
5534 dnl = Check alsa availability on Linux if using libcubeb
5535 dnl ====================================================
5537 dnl If using libcubeb with Linux, ensure that the alsa library is available
5538 if test -n "$MOZ_CUBEB" -a "$OS_TARGET" = "Linux"; then
5539     MOZ_ALSA=1
5542 MOZ_ARG_ENABLE_BOOL(alsa,
5543 [  --enable-alsa          Enable Alsa support (default on Linux)],
5544    MOZ_ALSA=1,
5545    MOZ_ALSA=)
5547 if test -n "$MOZ_ALSA"; then
5548     AC_DEFINE(MOZ_CUBEB)
5549     PKG_CHECK_MODULES(MOZ_ALSA, alsa, ,
5550          [echo "$MOZ_ALSA_PKG_ERRORS"
5551           AC_MSG_ERROR([Need alsa for Ogg, Wave or WebM decoding on Linux.  Disable with --disable-ogg --disable-wave --disable-webm.  (On Ubuntu, you might try installing the package libasound2-dev.)])])
5554 AC_SUBST(MOZ_ALSA)
5555 AC_SUBST(MOZ_ALSA_CFLAGS)
5556 AC_SUBST(MOZ_ALSA_LIBS)
5558 dnl ========================================================
5559 dnl = Disable PulseAudio
5560 dnl ========================================================
5562 dnl If using libcubeb with Linux, ensure that the PA library is available
5563 if test -n "$MOZ_CUBEB" -a "$OS_TARGET" = "Linux" -a -z "$MOZ_B2G"; then
5564     MOZ_PULSEAUDIO=1
5567 MOZ_ARG_DISABLE_BOOL(pulseaudio,
5568 [  --disable-pulseaudio          Disable PulseAudio support],
5569    MOZ_PULSEAUDIO=,
5570    MOZ_PULSEAUDIO=1)
5572 if test -n "$MOZ_PULSEAUDIO"; then
5573     AC_DEFINE(MOZ_CUBEB)
5574     if test -z "$gonkdir"; then
5575         PKG_CHECK_MODULES(MOZ_PULSEAUDIO, libpulse, ,
5576              [echo "$MOZ_PULSEAUDIO_PKG_ERRORS"
5577               AC_MSG_ERROR([pulseaudio audio backend requires libpulse development package])])
5578     else
5579         MOZ_PULSEAUDIO_CFLAGS="-I$gonkdir/external/pulseaudio/pulseaudio/src"
5580     fi
5583 AC_SUBST(MOZ_PULSEAUDIO)
5584 AC_SUBST(MOZ_PULSEAUDIO_CFLAGS)
5586 dnl ========================================================
5587 dnl = Enable GStreamer
5588 dnl ========================================================
5589 if test "$OS_TARGET" = "Linux"; then
5590   MOZ_GSTREAMER=1
5593 MOZ_ARG_ENABLE_BOOL(gstreamer,
5594 [  --enable-gstreamer           Enable GStreamer support],
5595 MOZ_GSTREAMER=1,
5596 MOZ_GSTREAMER=)
5598 if test "$MOZ_GSTREAMER"; then
5599     # API version, eg 0.10, 1.0 etc
5600     GST_API_VERSION=0.10
5601     # core/base release number
5602     GST_VERSION=0.10.25
5603     PKG_CHECK_MODULES(GSTREAMER,
5604                       gstreamer-$GST_API_VERSION >= $GST_VERSION
5605                       gstreamer-app-$GST_API_VERSION
5606                       gstreamer-plugins-base-$GST_API_VERSION, ,
5607                       AC_MSG_ERROR([gstreamer and gstreamer-plugins-base development packages are needed to build gstreamer backend. Install them or disable gstreamer support with --disable-gstreamer]))
5608     if test -n "$GSTREAMER_LIBS"; then
5609        _SAVE_LDFLAGS=$LDFLAGS
5610        LDFLAGS="$LDFLAGS $GSTREAMER_LIBS -lgstvideo-$GST_API_VERSION"
5611        AC_TRY_LINK(,[return 0;],_HAVE_LIBGSTVIDEO=1,_HAVE_LIBGSTVIDEO=)
5612        if test -n "$_HAVE_LIBGSTVIDEO" ; then
5613           GSTREAMER_LIBS="$GSTREAMER_LIBS -lgstvideo-$GST_API_VERSION"
5614        else
5615           AC_MSG_ERROR([gstreamer-plugins-base found, but no libgstvideo. Something has gone terribly wrong. Try reinstalling gstreamer-plugins-base; failing that, disable the gstreamer backend with --disable-gstreamer.])
5616        fi
5617        LDFLAGS=$_SAVE_LDFLAGS
5618     else
5619        AC_MSG_ERROR([gstreamer and gstreamer-plugins-base development packages are needed to build gstreamer backend. Install them or disable gstreamer support with --disable-gstreamer])
5620     fi
5622 AC_SUBST(GSTREAMER_CFLAGS)
5623 AC_SUBST(GSTREAMER_LIBS)
5624 AC_SUBST(MOZ_GSTREAMER)
5626 if test -n "$MOZ_GSTREAMER"; then
5627    AC_DEFINE(MOZ_GSTREAMER)
5631 dnl ========================================================
5632 dnl Permissions System
5633 dnl ========================================================
5634 MOZ_ARG_DISABLE_BOOL(permissions,
5635 [  --disable-permissions   Disable permissions (popup and cookie blocking)],
5636     MOZ_PERMISSIONS=,
5637     MOZ_PERMISSIONS=1
5640 dnl ========================================================
5641 dnl Child permissions, currently only used for b2g
5642 dnl ========================================================
5643 if test -n "$MOZ_B2G"; then
5644     if test -n "$MOZ_PERMISSIONS"; then
5645         MOZ_CHILD_PERMISSIONS=1
5646     else
5647         AC_MSG_ERROR([You need to enable MOZ_PERMISSIONS for MOZ_CHILD_PERMISSIONS])
5648     fi
5650 AC_SUBST(MOZ_CHILD_PERMISSIONS)
5652 dnl ========================================================
5653 dnl NegotiateAuth
5654 dnl ========================================================
5655 MOZ_ARG_DISABLE_BOOL(negotiateauth,
5656 [  --disable-negotiateauth Disable GSS-API negotiation ],
5657     MOZ_AUTH_EXTENSION=,
5658     MOZ_AUTH_EXTENSION=1 )
5660 dnl ========================================================
5661 dnl Pref extensions (autoconfig)
5662 dnl ========================================================
5663 MOZ_ARG_DISABLE_BOOL(pref-extensions,
5664 [  --disable-pref-extensions
5665                           Disable pref extensions such as autoconfig],
5666   MOZ_PREF_EXTENSIONS=,
5667   MOZ_PREF_EXTENSIONS=1 )
5669 dnl ========================================================
5670 dnl Searching of system directories for extensions.
5671 dnl Note: this switch is meant to be used for test builds
5672 dnl whose behavior should not depend on what happens to be
5673 dnl installed on the local machine.
5674 dnl ========================================================
5675 MOZ_ARG_DISABLE_BOOL(system-extension-dirs,
5676 [  --disable-system-extension-dirs
5677                           Disable searching system- and account-global
5678                           directories for extensions of any kind; use
5679                           only profile-specific extension directories],
5680   ENABLE_SYSTEM_EXTENSION_DIRS=,
5681   ENABLE_SYSTEM_EXTENSION_DIRS=1 )
5682 if test "$ENABLE_SYSTEM_EXTENSION_DIRS"; then
5683   AC_DEFINE(ENABLE_SYSTEM_EXTENSION_DIRS)
5686 dnl ========================================================
5687 dnl = Universalchardet
5688 dnl ========================================================
5689 MOZ_ARG_DISABLE_BOOL(universalchardet,
5690 [  --disable-universalchardet
5691                           Disable universal encoding detection],
5692   MOZ_UNIVERSALCHARDET=,
5693   MOZ_UNIVERSALCHARDET=1 )
5695 if test -n "${JAVA_BIN_PATH}"; then
5696   dnl Look for javac and jar in the specified path.
5697   JAVA_PATH="$JAVA_BIN_PATH"
5698 else
5699   dnl No path specified, so look for javac and jar in $JAVA_HOME & $PATH.
5700   JAVA_PATH="$JAVA_HOME/bin:$PATH"
5703 MOZ_PATH_PROG(JAVA, java, :, [$JAVA_PATH])
5704 MOZ_PATH_PROG(JAVAC, javac, :, [$JAVA_PATH])
5705 MOZ_PATH_PROG(JAVAH, javah, :, [$JAVA_PATH])
5706 MOZ_PATH_PROG(JAR, jar, :, [$JAVA_PATH])
5707 MOZ_PATH_PROG(JARSIGNER, jarsigner, :, [$JAVA_PATH])
5708 MOZ_PATH_PROG(KEYTOOL, keytool, :, [$JAVA_PATH])
5710 if test -n "${JAVA_BIN_PATH}" -o \
5711   \( "$OS_TARGET" = Android -a x"$MOZ_WIDGET_TOOLKIT" != x"gonk" \); then
5712   if test -z "$JAVA" -o "$JAVA" = ":"; then
5713     AC_MSG_ERROR([The program java was not found.  Set \$JAVA_HOME to your Java SDK directory or use --with-java-bin-path={java-bin-dir}])
5714   fi
5715   if test -z "$JAVAC" -o "$JAVAC" = ":"; then
5716     AC_MSG_ERROR([The program javac was not found.  Set \$JAVA_HOME to your Java SDK directory or use --with-java-bin-path={java-bin-dir}])
5717   fi
5718   if test -z "$JAVAH" -o "$JAVAH" = ":"; then
5719     AC_MSG_ERROR([The program javah was not found.  Set \$JAVA_HOME to your Java SDK directory or use --with-java-bin-path={java-bin-dir}])
5720   fi
5721   if test -z "$JAR" -o "$JAR" = ":"; then
5722     AC_MSG_ERROR([The program jar was not found.  Set \$JAVA_HOME to your Java SDK directory or use --with-java-bin-path={java-bin-dir}])
5723   fi
5724   if test -z "$JARSIGNER" -o "$JARSIGNER" = ":"; then
5725     AC_MSG_ERROR([The program jarsigner was not found.  Set \$JAVA_HOME to your Java SDK directory or use --with-java-bin-path={java-bin-dir}])
5726   fi
5727   if test -z "$KEYTOOL" -o "$KEYTOOL" = ":"; then
5728     AC_MSG_ERROR([The program keytool was not found.  Set \$JAVA_HOME to your Java SDK directory or use --with-java-bin-path={java-bin-dir}])
5729   fi
5732 dnl ========================================================
5733 dnl = ANGLE OpenGL->D3D translator for WebGL
5734 dnl = * only applies to win32
5735 dnl = * enabled by default (shipping build); requires explicit --disable to disable
5736 dnl ========================================================
5737 MOZ_ANGLE_RENDERER=
5738 MOZ_DIRECTX_SDK_PATH=
5739 MOZ_DIRECTX_SDK_CPU_SUFFIX=
5740 MOZ_D3DCOMPILER_CAB=
5741 MOZ_D3DCOMPILER_DLL=
5742 case "$target_os" in
5743 *mingw*)
5744     MOZ_ANGLE_RENDERER=1
5745     ;;
5746 esac
5748 # The DirectX SDK libraries are split into x86 and x64 sub-directories
5749 case "${target_cpu}" in
5750 i*86)
5751   MOZ_DIRECTX_SDK_CPU_SUFFIX=x86
5752   ;;
5753 x86_64)
5754   MOZ_DIRECTX_SDK_CPU_SUFFIX=x64
5755   ;;
5756 esac
5758 MOZ_ARG_DISABLE_BOOL(webgl,
5759 [  --disable-webgl     Disable building of the WebGL implementation],
5760     MOZ_WEBGL_DISABLED=1,
5761     MOZ_WEBGL_DISABLED=)
5763 if test -n "$MOZ_WEBGL_DISABLED"; then
5764   MOZ_WEBGL=
5765   MOZ_ANGLE_RENDERER=
5768 if test -n "$MOZ_WEBGL"; then
5769   AC_DEFINE(MOZ_WEBGL)
5772 if test -n "$MOZ_WEBGL_CONFORMANT"; then
5773   AC_DEFINE(MOZ_WEBGL_CONFORMANT)
5776 # Locate a DirectX SDK here so we can use it for both ANGLE and
5777 # Joystick support.
5778 if test "$OS_TARGET" = "WINNT" -a -z "$CROSS_COMPILE"; then
5779   # Get the SDK path from the registry.
5780   # First try to get the June 2010 SDK
5781   MOZ_DIRECTX_SDK_REG_KEY=`reg query 'HKLM\Software\Microsoft\DirectX' //s | grep 'Microsoft DirectX SDK (June 2010)' | head -n 1`
5782   if test -z "$MOZ_DIRECTX_SDK_REG_KEY" ; then
5783     # Otherwise just take whatever comes first
5784     MOZ_DIRECTX_SDK_REG_KEY=`reg query 'HKLM\Software\Microsoft\DirectX' //s | grep 'Microsoft DirectX SDK' | head -n 1`
5785   fi
5786   MOZ_DIRECTX_SDK_PATH=`reg query "$MOZ_DIRECTX_SDK_REG_KEY" //v InstallPath | grep REG_SZ | sed 's/.*\([[a-zA-Z]]\)\\:\\\\/\\1\\:\\\\/' | sed 's,\\\\,/,g'`
5789 if test -n "$MOZ_ANGLE_RENDERER" -a -z "$CROSS_COMPILE"; then
5790   if test -n "`echo $MOZ_DIRECTX_SDK_REG_KEY | grep 'February 2010'`" ; then
5791     AC_MSG_ERROR([Found the February 2010 DirectX SDK. Need the June 2010 DirectX SDK, or newer.  Upgrade your SDK or reconfigure with --disable-webgl.])
5792   fi
5794   if test -n "$MOZ_DIRECTX_SDK_PATH" &&
5795      test -f "$MOZ_DIRECTX_SDK_PATH"/include/d3dx9.h &&
5796          test -f "$MOZ_DIRECTX_SDK_PATH"/lib/$MOZ_DIRECTX_SDK_CPU_SUFFIX/dxguid.lib ; then
5797     AC_MSG_RESULT([Found DirectX SDK via registry, using $MOZ_DIRECTX_SDK_PATH])
5798   else
5799     AC_MSG_ERROR([Couldn't find the DirectX SDK, needed for WebGL. Either install it (June 2010 version or newer), or reconfigure with --disable-webgl.])
5800   fi
5802   # Get the SDK numeric version (e.g. 43) by looking at the dependencies of d3dx9.lib
5803   MOZ_D3DX9_VERSION=`dumpbin //headers "$MOZ_DIRECTX_SDK_PATH"/lib/$MOZ_DIRECTX_SDK_CPU_SUFFIX/d3dx9.lib | egrep d3dx9_[[0-9]][[0-9]]\.dll | head -n1 | sed 's/.*\([[0-9]][[0-9]]\).*/\\1/g'`
5805   if test -z "$MOZ_D3DX9_VERSION" ; then
5806         AC_MSG_ERROR([Couldn't determine the D3DX9 version, needed for WebGL. Either reinstall the DirectX SDK (June 2010 version or newer), or reconfigure with --disable-webgl.])
5807   fi
5809   MOZ_D3DCOMPILER_CAB=`find "$MOZ_DIRECTX_SDK_PATH"/Redist -name *D3DCompiler_${MOZ_D3DX9_VERSION}_${MOZ_DIRECTX_SDK_CPU_SUFFIX}.cab | head -n1`
5811   if test -z "$MOZ_D3DCOMPILER_CAB"; then
5812     AC_MSG_ERROR([Couldn't find the DirectX redistributable files. Either reinstall the DirectX SDK (making sure the "DirectX Redistributable Files" option is selected), or reconfigure with --disable-webgl.])
5813   fi
5815   MOZ_D3DCOMPILER_DLL=D3DCompiler_$MOZ_D3DX9_VERSION.dll
5818 dnl ========================================================
5819 dnl Gamepad support
5820 dnl ========================================================
5821 MOZ_GAMEPAD=
5822 MOZ_GAMEPAD_BACKEND=stub
5824 # Gamepad DOM is built on supported platforms by default.
5825 case "$OS_TARGET" in
5826      Darwin|WINNT|Linux)
5827        MOZ_GAMEPAD=1
5828        ;;
5829      *)
5830        ;;
5831 esac
5833 MOZ_ARG_DISABLE_BOOL(gamepad,
5834 [  --disable-gamepad   Disable gamepad support],
5835     MOZ_GAMEPAD=,
5836     MOZ_GAMEPAD=1)
5838 if test "$MOZ_GAMEPAD"; then
5839     case "$OS_TARGET" in
5840     Darwin)
5841         MOZ_GAMEPAD_BACKEND=cocoa
5842         ;;
5843     WINNT)
5844         if test -n "$MOZ_DIRECTX_SDK_PATH" ; then
5845             if ! test -f "$MOZ_DIRECTX_SDK_PATH"/lib/$MOZ_DIRECTX_SDK_CPU_SUFFIX/dxguid.lib ; then
5846                MOZ_GAMEPAD=
5847             fi
5848         elif test "$GCC" != "yes"; then
5849             MOZ_GAMEPAD=
5850         fi
5851         if test -z "$MOZ_GAMEPAD"; then
5852            AC_MSG_ERROR([Couldn't find the DirectX SDK, needed for gamepad support. Please install it or, reconfigure with --disable-gamepad to disable gamepad support.])
5853         fi
5854         MOZ_GAMEPAD_BACKEND=windows
5855         ;;
5856     Linux)
5857         MOZ_CHECK_HEADER([linux/joystick.h])
5858         if test "$ac_cv_header_linux_joystick_h" != "yes"; then
5859           AC_MSG_ERROR([Can't find header linux/joystick.h, needed for gamepad support. Please install Linux kernel headers or reconfigure with --disable-gamepad to disable gamepad support.])
5860         fi
5861         MOZ_GAMEPAD_BACKEND=linux
5862         ;;
5863     *)
5864         ;;
5865    esac
5867   AC_DEFINE(MOZ_GAMEPAD)
5869 AC_SUBST(MOZ_GAMEPAD)
5870 AC_SUBST(MOZ_GAMEPAD_BACKEND)
5872 dnl ========================================================
5873 dnl = Breakpad crash reporting (on by default on supported platforms)
5874 dnl ========================================================
5876 case $target in
5877 i?86-*-mingw*|x86_64-*-mingw*)
5878   MOZ_CRASHREPORTER=1
5879   ;;
5880 i?86-apple-darwin*|x86_64-apple-darwin*)
5881   MOZ_CRASHREPORTER=1
5882   ;;
5883 i?86-*-linux*|x86_64-*-linux*|arm-*-linux*)
5884   if test "$MOZ_ENABLE_GTK"; then
5885     MOZ_CRASHREPORTER=1
5886   fi
5887   ;;
5888 *-android*|*-linuxandroid*)
5889   MOZ_CRASHREPORTER=1
5890   ;;
5891 *solaris*)
5892   MOZ_CRASHREPORTER=1
5893   ;;
5894 esac
5896 MOZ_ARG_DISABLE_BOOL(crashreporter,
5897 [  --disable-crashreporter Disable breakpad crash reporting],
5898     [MOZ_CRASHREPORTER=],
5899     [MOZ_CRASHREPORTER=F # Force enable breakpad])
5901 if test "$OS_ARCH" != "$HOST_OS_ARCH" -a "$OS_ARCH" != "WINNT"; then
5902   if test "$MOZ_CRASHREPORTER" = F; then
5903     AC_MSG_ERROR([Cannot --enable-crashreporter, as breakpad tools do not support compiling on $HOST_OS_ARCH while targeting $OS_ARCH.])
5904   fi
5905   MOZ_CRASHREPORTER=
5908 if test -n "$MOZ_CRASHREPORTER"; then
5909    AC_DEFINE(MOZ_CRASHREPORTER)
5911   if test "$OS_TARGET" = "Linux" -o "$OS_ARCH" = "SunOS" && \
5912     test -z "$SKIP_LIBRARY_CHECKS"; then
5913     PKG_CHECK_MODULES(MOZ_GTHREAD, gthread-2.0)
5914     AC_SUBST(MOZ_GTHREAD_CFLAGS)
5915     AC_SUBST(MOZ_GTHREAD_LIBS)
5916   fi
5918   if test "$OS_ARCH" = "WINNT"; then
5919     if test -z "$HAVE_64BIT_OS"; then
5920       MOZ_CRASHREPORTER_INJECTOR=1
5921       AC_DEFINE(MOZ_CRASHREPORTER_INJECTOR)
5922     fi
5923   fi
5926 MOZ_ARG_WITH_STRING(crashreporter-enable-percent,
5927 [  --with-crashreporter-enable-percent=NN
5928                           Enable sending crash reports by default on NN% of users. (default=100)],
5929 [ val=`echo $withval | sed 's/[^0-9]//g'`
5930     MOZ_CRASHREPORTER_ENABLE_PERCENT="$val"])
5932 if test -z "$MOZ_CRASHREPORTER_ENABLE_PERCENT"; then
5933    MOZ_CRASHREPORTER_ENABLE_PERCENT=100
5935 AC_DEFINE_UNQUOTED(MOZ_CRASHREPORTER_ENABLE_PERCENT, $MOZ_CRASHREPORTER_ENABLE_PERCENT)
5937 dnl ========================================================
5938 dnl = libjpeg-turbo configuration
5939 dnl ========================================================
5940 MOZ_LIBJPEG_TURBO=
5941 if test -z "$MOZ_NATIVE_JPEG"; then
5942     MOZ_LIBJPEG_TURBO=1
5945 MOZ_ARG_DISABLE_BOOL(libjpeg_turbo,
5946 [ --disable-libjpeg-turbo  Disable optimized jpeg decoding routines],
5947     MOZ_LIBJPEG_TURBO=,
5948     MOZ_LIBJPEG_TURBO=1)
5950 if test "$MOZ_NATIVE_JPEG" = 1 -a "$MOZ_LIBJPEG_TURBO" = 1; then
5951     AC_MSG_ERROR([cannot use --with-system-jpeg with --enable-libjpeg-turbo.])
5954 dnl Detect if we can use yasm to compile libjpeg-turbo's optimized assembly
5955 dnl files.
5957 if test -n "$MOZ_LIBJPEG_TURBO"; then
5959   dnl Do we support libjpeg-turbo on this platform?
5960   case "$OS_ARCH:$OS_TEST" in
5961   Darwin:i?86)
5962     LIBJPEG_TURBO_ASFLAGS="-f macho32 -rnasm -pnasm -DPIC -DMACHO"
5963     LIBJPEG_TURBO_X86_ASM=1
5964   ;;
5965   Darwin:x86_64)
5966     LIBJPEG_TURBO_ASFLAGS="-f macho64 -rnasm -pnasm -D__x86_64__ -DPIC -DMACHO"
5967     LIBJPEG_TURBO_X64_ASM=1
5968   ;;
5969   WINNT:x86|WINNT:i?86)
5970     LIBJPEG_TURBO_ASFLAGS="-f win32 -rnasm -pnasm -DPIC -DWIN32"
5971     LIBJPEG_TURBO_X86_ASM=1
5972   ;;
5973   WINNT:x86_64)
5974     LIBJPEG_TURBO_ASFLAGS="-f win64 -rnasm -pnasm -D__x86_64__ -DPIC -DWIN64 -DMSVC"
5975     LIBJPEG_TURBO_X64_ASM=1
5976   ;;
5977   *:arm*)
5978     LIBJPEG_TURBO_ASFLAGS="-march=armv7-a -mfpu=neon"
5979     LIBJPEG_TURBO_ARM_ASM=1
5980   ;;
5981   *:x86|*:i?86)
5982     if $CC -E -dM -</dev/null | grep -q __ELF__; then
5983       LIBJPEG_TURBO_ASFLAGS="-f elf32 -rnasm -pnasm -DPIC -DELF"
5984       LIBJPEG_TURBO_X86_ASM=1
5985     fi
5986   ;;
5987   *:x86_64)
5988     if $CC -E -dM -</dev/null | grep -q __ELF__; then
5989       LIBJPEG_TURBO_ASFLAGS="-f elf64 -rnasm -pnasm -D__x86_64__ -DPIC -DELF"
5990       LIBJPEG_TURBO_X64_ASM=1
5991     fi
5992   ;;
5993   esac
5997 dnl If we're on an x86 or x64 system which supports libjpeg-turbo's asm routines
5998 dnl and --disable-libjpeg-turbo wasn't passed, check for Yasm, and error out if
5999 dnl it doesn't exist or we have too old of a version.
6000 if test -n "$LIBJPEG_TURBO_X86_ASM" -o -n "$LIBJPEG_TURBO_X64_ASM" ; then
6001     LIBJPEG_TURBO_AS=$YASM
6003     if test -z "$LIBJPEG_TURBO_AS" ; then
6004         AC_MSG_ERROR([Yasm is required to build with libjpeg-turbo's optimized JPEG decoding routines, but you do not appear to have Yasm installed.  Either install it or configure with --disable-libjpeg-turbo to use the pure C JPEG decoder.  See https://developer.mozilla.org/en/YASM for more details.])
6005     fi
6007     dnl Check that we have the right yasm version.  We require 1.0.1 or newer
6008     dnl on Linux and 1.1 or newer everywhere else.
6009     if test "$OS_ARCH" = "Linux" ; then
6010         if test "$_YASM_MAJOR_VERSION" -lt "1" -o \( "$_YASM_MAJOR_VERSION" -eq "1" -a "$_YASM_MINOR_VERSION" -eq "0" -a "$_YASM_RELEASE" -lt "1" \) ; then
6011             AC_MSG_ERROR([Yasm 1.0.1 or greater is required to build with libjpeg-turbo's optimized JPEG decoding routines, but you appear to have version $_YASM_MAJOR_VERSION.$_YASM_MINOR_VERSION.$_YASM_RELEASE.  Upgrade to the newest version or configure with --disable-libjpeg-turbo to use the pure C JPEG decoder.  See https://developer.mozilla.org/en/YASM for more details.])
6012         fi
6013     else
6014         if test "$_YASM_MAJOR_VERSION" -lt "1" -o \( "$_YASM_MAJOR_VERSION" -eq "1" -a "$_YASM_MINOR_VERSION" -lt "1" \) ; then
6015             AC_MSG_ERROR([Yasm 1.1 or greater is required to build with libjpeg-turbo's optimized JPEG decoding routines, but you appear to have version $_YASM_MAJOR_VERSION.$_YASM_MINOR_VERSION.  Upgrade to the newest version or configure with --disable-libjpeg-turbo to use the pure C JPEG decoder.  See https://developer.mozilla.org/en/YASM for more details.])
6016         fi
6017     fi
6020 dnl If we're on an ARM system which supports libjpeg-turbo's asm routines and
6021 dnl --disable-libjpeg-turbo wasn't passed, use the C compiler as the assembler.
6022 if test -n "$LIBJPEG_TURBO_ARM_ASM" ; then
6023     echo "Using $AS as the assembler for ARM code."
6024     LIBJPEG_TURBO_AS=$AS
6027 if test -n "$LIBJPEG_TURBO_X86_ASM"; then
6028     AC_DEFINE(LIBJPEG_TURBO_X86_ASM)
6029 elif test -n "$LIBJPEG_TURBO_X64_ASM"; then
6030     AC_DEFINE(LIBJPEG_TURBO_X64_ASM)
6031 elif test -n "$LIBJPEG_TURBO_ARM_ASM"; then
6032     AC_DEFINE(LIBJPEG_TURBO_ARM_ASM)
6033 elif test -n "$MOZ_LIBJPEG_TURBO"; then
6034     dnl Warn if we're not building the optimized routines, even though the user
6035     dnl didn't specify --disable-libjpeg-turbo.
6036     AC_MSG_WARN([No assembler or assembly support for libjpeg-turbo.  Using unoptimized C routines.])
6039 dnl ========================================================
6040 dnl = Enable compilation of specific extension modules
6041 dnl ========================================================
6043 MOZ_ARG_ENABLE_STRING(extensions,
6044 [  --enable-extensions     Enable extensions],
6045 [ for option in `echo $enableval | sed 's/,/ /g'`; do
6046     if test "$option" = "yes" -o "$option" = "all"; then
6047         AC_MSG_ERROR([--enable-extensions=$option is no longer supported.])
6048     elif test "$option" = "no" -o "$option" = "none"; then
6049         MOZ_EXTENSIONS=""
6050     elif test "$option" = "default"; then
6051         MOZ_EXTENSIONS="$MOZ_EXTENSIONS $MOZ_EXTENSIONS_DEFAULT"
6052     elif test `echo "$option" | grep -c \^-` != 0; then
6053         option=`echo $option | sed 's/^-//'`
6054         MOZ_EXTENSIONS=`echo "$MOZ_EXTENSIONS" | sed "s/ ${option}//"`
6055     else
6056         MOZ_EXTENSIONS="$MOZ_EXTENSIONS $option"
6057     fi
6058 done],
6059     MOZ_EXTENSIONS="$MOZ_EXTENSIONS_DEFAULT")
6061 if test -z "$MOZ_ENABLE_GNOMEVFS" -a `echo "$MOZ_EXTENSIONS" | grep -c gnomevfs` -ne 0; then
6062     # Suppress warning on non-X11 platforms
6063     if test -n "$MOZ_X11"; then
6064         AC_MSG_WARN([Removing gnomevfs from MOZ_EXTENSIONS due to no --enable-gnomevfs.])
6065     fi
6066     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gnomevfs||'`
6069 dnl Do not build gnomevfs with libxul based apps
6070 if test -n "$LIBXUL_SDK_DIR" -a `echo "$MOZ_EXTENSIONS" | grep -c gnomevfs` -ne 0; then
6071     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gnomevfs||'`
6074 if test -z "$MOZ_ENABLE_GIO" -a `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then
6075     # Suppress warning on non-X11 platforms
6076     if test -n "$MOZ_X11"; then
6077         AC_MSG_WARN([Removing gio from MOZ_EXTENSIONS due to --disable-gio.])
6078     fi
6079     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'`
6082 dnl Do not build gio with libxul based apps
6083 if test -n "$LIBXUL_SDK_DIR" -a `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then
6084     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'`
6087 if test `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then
6088     MOZ_GIO_COMPONENT=1
6089     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'`
6091 AC_SUBST(MOZ_GIO_COMPONENT)
6093 if test -z "$MOZ_JSDEBUGGER" -a `echo "$MOZ_EXTENSIONS" | grep -c venkman` -ne 0; then
6094     AC_MSG_WARN([Cannot build venkman without JavaScript debug library. Removing venkman from MOZ_EXTENSIONS.])
6095     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'`
6098 dnl Remove dupes
6099 MOZ_EXTENSIONS=`${PERL} ${srcdir}/build/unix/uniq.pl ${MOZ_EXTENSIONS}`
6101 dnl Ensure every extension exists, to avoid mostly-inscrutable error messages
6102 dnl when trying to build a nonexistent extension.
6103 for extension in $MOZ_EXTENSIONS; do
6104     if test ! -d "${srcdir}/extensions/${extension}"; then
6105         AC_MSG_ERROR([Unrecognized extension provided to --enable-extensions: ${extension}.])
6106     fi
6107 done
6109 if test -n "$MOZ_USE_NATIVE_POPUP_WINDOWS"; then
6110   AC_DEFINE(MOZ_USE_NATIVE_POPUP_WINDOWS)
6113 dnl ========================================================
6114 dnl Build Freetype in the tree
6115 dnl ========================================================
6116 MOZ_ARG_ENABLE_BOOL(tree-freetype,
6117 [  --enable-tree-freetype  Enable Tree FreeType],
6118     MOZ_TREE_FREETYPE=1,
6119     MOZ_TREE_FREETYPE= )
6120 if test -n "$MOZ_TREE_FREETYPE"; then
6121    if test -n "$_WIN32_MSVC"; then
6122       AC_ERROR("building with in-tree freetype is not supported on MSVC")
6123    fi
6124    AC_DEFINE(MOZ_TREE_FREETYPE)
6125    AC_SUBST(MOZ_TREE_FREETYPE)
6126    MOZ_ENABLE_CAIRO_FT=1
6127    FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
6128    FT2_CFLAGS='-I$(topsrcdir)/modules/freetype2/include'
6129    CAIRO_FT_CFLAGS='-I$(topsrcdir)/modules/freetype2/include'
6130    FT2_LIBS='$(call EXPAND_LIBNAME_PATH,freetype,$(DEPTH)/modules/freetype2/.libs)'
6131    CAIRO_FT_OSLIBS=''
6132    CAIRO_FT_LIBS='$(call EXPAND_LIBNAME_PATH,freetype,$(DEPTH)/modules/freetype2/.libs)'
6133    AC_DEFINE(HAVE_FT_BITMAP_SIZE_Y_PPEM)
6134    AC_DEFINE(HAVE_FT_GLYPHSLOT_EMBOLDEN)
6135    AC_DEFINE(HAVE_FT_LOAD_SFNT_TABLE)
6136    AC_SUBST(CAIRO_FT_CFLAGS)
6139 dnl ========================================================
6140 dnl Installer
6141 dnl ========================================================
6142 dnl Abort Windows build if the required major version and
6143 dnl minimum minor version of Unicode NSIS isn't in the path
6144 dnl (unless in case of cross compiling, for which Unicode
6145 dnl is not yet sufficient).
6146 if test "$OS_ARCH" = "WINNT"; then
6147     REQ_NSIS_MAJOR_VER=2
6148     MIN_NSIS_MINOR_VER=46
6149     MOZ_PATH_PROGS(MAKENSISU, $MAKENSISU makensisu-2.46 makensis)
6150     if test -n "$MAKENSISU" -a "$MAKENSISU" != ":"; then
6151       AC_MSG_RESULT([yes])
6152       changequote(,)
6153       MAKENSISU_VER=`"$MAKENSISU" -version 2>/dev/null | sed -e '/-Unicode/!s/.*//g' -e 's/^v\([0-9]\+\.[0-9]\+\).*\-Unicode$/\1/g'`
6154       changequote([,])
6155       if test ! "$MAKENSISU_VER" = ""; then
6156           MAKENSISU_MAJOR_VER=`echo $MAKENSISU_VER | $AWK -F\. '{ print $1 }'`
6157           MAKENSISU_MINOR_VER=`echo $MAKENSISU_VER | $AWK -F\. '{ print $2 }'`
6158       fi
6159       AC_MSG_CHECKING([for Unicode NSIS with major version == $REQ_NSIS_MAJOR_VER and minor version >= $MIN_NSIS_MINOR_VER])
6160       if test "$MAKENSISU_VER" = "" || \
6161          test ! "$MAKENSISU_MAJOR_VER" = "$REQ_NSIS_MAJOR_VER" -o \
6162               ! "$MAKENSISU_MINOR_VER" -ge $MIN_NSIS_MINOR_VER; then
6163           AC_MSG_RESULT([no])
6164           if test -z "$CROSS_COMPILE"; then
6165             AC_MSG_ERROR([To build the installer you must have the latest MozillaBuild or Unicode NSIS with a major version of $REQ_NSIS_MAJOR_VER and a minimum minor version of $MIN_NSIS_MINOR_VER in your path.])
6166           else
6167             MAKENSISU=
6168           fi
6169       fi
6170     elif test -z "$CROSS_COMPILE"; then
6171       AC_MSG_ERROR([To build the installer you must have the latest MozillaBuild or Unicode NSIS with a major version of $REQ_NSIS_MAJOR_VER and a minimum minor version of $MIN_NSIS_MINOR_VER in your path.])
6172     else
6173       MAKENSISU=
6174     fi
6177 dnl ========================================================
6178 dnl Web App Runtime
6179 dnl ========================================================
6180 MOZ_ARG_DISABLE_BOOL(webapp-runtime,
6181 [  --disable-webapp-runtime  Disable Web App Runtime],
6182     MOZ_WEBAPP_RUNTIME=,
6183     MOZ_WEBAPP_RUNTIME=1)
6184 if test "$MOZ_WIDGET_TOOLKIT" != "windows" -a "$MOZ_WIDGET_TOOLKIT" != "cocoa" -a "$MOZ_WIDGET_TOOLKIT" != "gtk2"; then
6185     MOZ_WEBAPP_RUNTIME=
6187 if test "$OS_ARCH" = "WINNT" -a -z "$MAKENSISU" -a -n "$CROSS_COMPILE"; then
6188     MOZ_WEBAPP_RUNTIME=
6190 AC_SUBST(MOZ_WEBAPP_RUNTIME)
6191 if test "$MOZ_WEBAPP_RUNTIME"; then
6192     AC_DEFINE(MOZ_WEBAPP_RUNTIME)
6195 AC_MSG_CHECKING([for tar archiver])
6196 AC_CHECK_PROGS(TAR, gnutar gtar tar, "")
6197 if test -z "$TAR"; then
6198     AC_MSG_ERROR([no tar archiver found in \$PATH])
6200 AC_MSG_RESULT([$TAR])
6201 AC_SUBST(TAR)
6203 AC_MSG_CHECKING([for wget])
6204 AC_CHECK_PROGS(WGET, wget, "")
6205 AC_MSG_RESULT([$WGET])
6206 AC_SUBST(WGET)
6208 dnl ========================================================
6209 dnl Signing
6210 dnl ========================================================
6212 if test -n "$MOZ_SIGN_CMD"; then
6213     AC_DEFINE(MOZ_SIGNING)
6216 dnl ========================================================
6217 dnl Maintenance Service
6218 dnl ========================================================
6220 MOZ_ARG_ENABLE_BOOL(maintenance-service,
6221 [  --enable-maintenance-service       Enable building of maintenanceservice],
6222     MOZ_MAINTENANCE_SERVICE=1,
6223     MOZ_MAINTENANCE_SERVICE= )
6225 if test -n "$MOZ_MAINTENANCE_SERVICE"; then
6226   if test "$OS_ARCH" = "WINNT"; then
6227     AC_DEFINE(MOZ_MAINTENANCE_SERVICE)
6228   else
6229     AC_MSG_ERROR([Can only build with --enable-maintenance-service with a Windows target])
6230   fi
6233 dnl ========================================================
6234 dnl Verify MAR signatures
6235 dnl ========================================================
6237 MOZ_ARG_ENABLE_BOOL(verify-mar,
6238 [  --enable-verify-mar     Enable verifying MAR signatures],
6239     MOZ_VERIFY_MAR_SIGNATURE=1,
6240     MOZ_VERIFY_MAR_SIGNATURE= )
6242 if test -n "$MOZ_VERIFY_MAR_SIGNATURE"; then
6243   if test "$OS_ARCH" = "WINNT"; then
6244     AC_DEFINE(MOZ_VERIFY_MAR_SIGNATURE)
6245   else
6246     AC_MSG_ERROR([Can only build with --enable-verify-mar with a Windows target])
6247   fi
6250 dnl ========================================================
6251 dnl Enable building the signmar program.
6252 dnl This option is much different than the --enable-verify-mar option.
6253 dnl --enable-verify-mar is for enabling the verification check on MAR
6254 dnl files in the updater.  The --enable-signmar option is for building
6255 dnl the signmar program.
6256 dnl ========================================================
6258 MOZ_ARG_ENABLE_BOOL(signmar,
6259 [  --enable-signmar     Enable building the signmar program],
6260     MOZ_ENABLE_SIGNMAR=1,
6261     MOZ_ENABLE_SIGNMAR= )
6263 if test -n "$MOZ_ENABLE_SIGNMAR"; then
6264   AC_DEFINE(MOZ_ENABLE_SIGNMAR)
6267 dnl ========================================================
6268 dnl Updater
6269 dnl ========================================================
6271 MOZ_ARG_DISABLE_BOOL(updater,
6272 [  --disable-updater       Disable building of updater],
6273     MOZ_UPDATER=,
6274     MOZ_UPDATER=1 )
6276 if test -n "$MOZ_UPDATER"; then
6277     AC_DEFINE(MOZ_UPDATER)
6280 # tools/update-packaging is not checked out by default.
6281 MOZ_ARG_ENABLE_BOOL(update-packaging,
6282 [  --enable-update-packaging
6283                           Enable tools/update-packaging],
6284     MOZ_UPDATE_PACKAGING=1,
6285     MOZ_UPDATE_PACKAGING= )
6286 AC_SUBST(MOZ_UPDATE_PACKAGING)
6288 dnl ========================================================
6289 dnl build the tests by default
6290 dnl ========================================================
6291 MOZ_ARG_DISABLE_BOOL(tests,
6292 [  --disable-tests         Do not build test libraries & programs],
6293     ENABLE_TESTS=,
6294     ENABLE_TESTS=1 )
6296 if test -n "$ENABLE_TESTS"; then
6297     MOZ_ENABLE_GTEST=1
6298     GTEST_HAS_RTTI=0
6299     AC_DEFINE(MOZ_ENABLE_GTEST)
6300     AC_DEFINE_UNQUOTED(GTEST_HAS_RTTI, 0)
6301     AC_SUBST(MOZ_ENABLE_GTEST)
6302     AC_SUBST(GTEST_HAS_RTTI)
6303     if test -n "$_WIN32_MSVC"; then
6304           AC_DEFINE_UNQUOTED(_VARIADIC_MAX, 10)
6305     fi
6306     if test "${OS_TARGET}" = "Android"; then
6307         AC_DEFINE(GTEST_OS_LINUX_ANDROID)
6308         AC_DEFINE(GTEST_USE_OWN_TR1_TUPLE)
6309         AC_DEFINE_UNQUOTED(GTEST_HAS_CLONE, 0)
6310         AC_SUBST(GTEST_OS_LINUX_ANDROID)
6311         AC_SUBST(GTEST_USE_OWN_TR1_TUPLE)
6312         AC_SUBST(GTEST_HAS_CLONE)
6313     fi
6316 dnl ========================================================
6317 dnl parental controls (for Windows Vista)
6318 dnl ========================================================
6319 MOZ_ARG_DISABLE_BOOL(parental-controls,
6320 [  --disable-parental-controls
6321                           Do not build parental controls],
6322    MOZ_DISABLE_PARENTAL_CONTROLS=1,
6323    MOZ_DISABLE_PARENTAL_CONTROLS=)
6324 if test -n "$MOZ_DISABLE_PARENTAL_CONTROLS"; then
6325     AC_DEFINE(MOZ_DISABLE_PARENTAL_CONTROLS)
6328 AC_SUBST(MOZ_DISABLE_PARENTAL_CONTROLS)
6330 dnl ========================================================
6331 dnl = Disable DOMCrypto
6332 dnl ========================================================
6333 if test -n "$MOZ_DISABLE_CRYPTOLEGACY"; then
6334     AC_DEFINE(MOZ_DISABLE_CRYPTOLEGACY)
6336 AC_SUBST(MOZ_DISABLE_CRYPTOLEGACY)
6338 dnl ========================================================
6339 dnl = Disable libpkix
6340 dnl ========================================================
6341 if test -n "$NSS_NO_LIBPKIX"; then
6342     AC_DEFINE(NSS_NO_LIBPKIX)
6344 AC_SUBST(NSS_NO_LIBPKIX)
6346 dnl ========================================================
6347 dnl = Content process sandboxing
6348 dnl ========================================================
6349 if test -n "$gonkdir"; then
6350     MOZ_CONTENT_SANDBOX=1
6353 MOZ_ARG_ENABLE_BOOL(content-sandbox,
6354 [  --enable-content-sandbox        Enable sandboxing support for content-processes],
6355     MOZ_CONTENT_SANDBOX=1,
6356     MOZ_CONTENT_SANDBOX=)
6358 if test -n "$MOZ_CONTENT_SANDBOX"; then
6359     AC_DEFINE(MOZ_CONTENT_SANDBOX)
6362 AC_SUBST(MOZ_CONTENT_SANDBOX)
6364 MOZ_ARG_ENABLE_BOOL(content-sandbox-reporter,
6365 [ --enable-content-sandbox-reporter        Enable syscall reporter to troubleshoot syscalls denied by the content-processes sandbox],
6366     MOZ_CONTENT_SANDBOX_REPORTER=1,
6367     MOZ_CONTENT_SANDBOX_REPORTER=)
6369 if test -n "$MOZ_CONTENT_SANDBOX_REPORTER"; then
6370     AC_DEFINE(MOZ_CONTENT_SANDBOX_REPORTER)
6373 AC_SUBST(MOZ_CONTENT_SANDBOX_REPORTER)
6375 dnl ========================================================
6376 dnl =
6377 dnl = Module specific options
6378 dnl =
6379 dnl ========================================================
6380 MOZ_ARG_HEADER(Individual module options)
6382 dnl ========================================================
6383 dnl = Disable feed handling components
6384 dnl ========================================================
6385 MOZ_ARG_DISABLE_BOOL(feeds,
6386 [  --disable-feeds         Disable feed handling and processing components],
6387     MOZ_FEEDS=,
6388     MOZ_FEEDS=1 )
6389 if test -n "$MOZ_FEEDS"; then
6390     AC_DEFINE(MOZ_FEEDS)
6391 else
6392     if test "$MOZ_BUILD_APP" = "browser"; then
6393         AC_MSG_ERROR([Cannot build Firefox with --disable-feeds.])
6394     fi
6397 dnl ========================================================
6398 dnl Check for sqlite
6399 dnl ========================================================
6401 MOZ_NATIVE_SQLITE=
6402 MOZ_ARG_ENABLE_BOOL(system-sqlite,
6403 [  --enable-system-sqlite  Use system sqlite (located with pkgconfig)],
6404 MOZ_NATIVE_SQLITE=1,
6405 MOZ_NATIVE_SQLITE= )
6407 if test -z "$MOZ_NATIVE_SQLITE"
6408 then
6409     SQLITE_CFLAGS=
6410     SQLITE_LIBS='$(call EXPAND_LIBNAME_PATH,mozsqlite3,$(DIST)/lib)'
6411 else
6412     dnl ============================
6413     dnl === SQLite Version check ===
6414     dnl ============================
6415     dnl Check to see if the system SQLite package is new enough.
6416     PKG_CHECK_MODULES(SQLITE, sqlite3 >= $SQLITE_VERSION)
6418     dnl ==================================
6419     dnl === SQLITE_SECURE_DELETE check ===
6420     dnl ==================================
6421     dnl Check to see if the system SQLite package is compiled with
6422     dnl SQLITE_SECURE_DELETE enabled.
6423     AC_MSG_CHECKING(for SQLITE_SECURE_DELETE support in system SQLite)
6424     _SAVE_CFLAGS="$CFLAGS"
6425     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6426     _SAVE_LIBS="$LIBS"
6427     LIBS="$LIBS $SQLITE_LIBS"
6428     AC_CACHE_VAL(ac_cv_sqlite_secure_delete,[
6429         AC_TRY_RUN([
6430             #include "sqlite3.h"
6432             int main(int argc, char **argv){
6433               return !sqlite3_compileoption_used("SQLITE_SECURE_DELETE");
6434             }],
6435             ac_cv_sqlite_secure_delete=yes,
6436             ac_cv_sqlite_secure_delete=no,
6437             ac_cv_sqlite_secure_delete=no
6438         )
6439     ])
6440     AC_MSG_RESULT($ac_cv_sqlite_secure_delete)
6441     CFLAGS="$_SAVE_CFLAGS"
6442     LIBS="$_SAVE_LIBS"
6443     if test "x$ac_cv_sqlite_secure_delete" = "xno"; then
6444         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_SECURE_DELETE.])
6445     fi
6447     dnl ===============================
6448     dnl === SQLITE_THREADSAFE check ===
6449     dnl ===============================
6450     dnl Check to see if the system SQLite package is compiled with
6451     dnl SQLITE_THREADSAFE enabled.
6452     AC_MSG_CHECKING(for SQLITE_THREADSAFE support in system SQLite)
6453     _SAVE_CFLAGS="$CFLAGS"
6454     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6455     _SAVE_LIBS="$LIBS"
6456     LIBS="$LIBS $SQLITE_LIBS"
6457     AC_CACHE_VAL(ac_cv_sqlite_threadsafe,[
6458         AC_TRY_RUN([
6459             #include "sqlite3.h"
6461             int main(int argc, char **argv){
6462               return !sqlite3_compileoption_used("SQLITE_THREADSAFE=1");
6463             }],
6464             ac_cv_sqlite_threadsafe=yes,
6465             ac_cv_sqlite_threadsafe=no,
6466             ac_cv_sqlite_threadsafe=no
6467         )
6468     ])
6469     AC_MSG_RESULT($ac_cv_sqlite_threadsafe)
6470     CFLAGS="$_SAVE_CFLAGS"
6471     LIBS="$_SAVE_LIBS"
6472     if test "x$ac_cv_sqlite_threadsafe" = "xno"; then
6473         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_THREADSAFE.])
6474     fi
6476     dnl ================================
6477     dnl === SQLITE_ENABLE_FTS3 check ===
6478     dnl ================================
6479     dnl check to see if the system SQLite package is compiled with
6480     dnl SQLITE_ENABLE_FTS3 enabled.
6481     AC_MSG_CHECKING(for SQLITE_ENABLE_FTS3 support in system SQLite)
6482     _SAVE_CFLAGS="$CFLAGS"
6483     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6484     _SAVE_LIBS="$LIBS"
6485     LIBS="$LIBS $SQLITE_LIBS"
6486     AC_CACHE_VAL(ac_cv_sqlite_enable_fts3,[
6487         AC_TRY_RUN([
6488             #include "sqlite3.h"
6490             int main(int argc, char **argv){
6491               return !sqlite3_compileoption_used("SQLITE_ENABLE_FTS3");
6492             }],
6493             ac_cv_sqlite_enable_fts3=yes,
6494             ac_cv_sqlite_enable_fts3=no,
6495             ac_cv_sqlite_enable_fts3=no
6496         )
6497     ])
6498     AC_MSG_RESULT($ac_cv_sqlite_enable_fts3)
6499     CFLAGS="$_SAVE_CFLAGS"
6500     LIBS="$_SAVE_LIBS"
6501     if test "x$ac_cv_sqlite_enable_fts3" = "xno"; then
6502         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_ENABLE_FTS3.])
6503     fi
6505     dnl =========================================
6506     dnl === SQLITE_ENABLE_UNLOCK_NOTIFY check ===
6507     dnl =========================================
6508     dnl check to see if the system SQLite package is compiled with
6509     dnl SQLITE_ENABLE_UNLOCK_NOTIFY enabled.
6510     AC_MSG_CHECKING(for SQLITE_ENABLE_UNLOCK_NOTIFY support in system SQLite)
6511     _SAVE_CFLAGS="$CFLAGS"
6512     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6513     _SAVE_LIBS="$LIBS"
6514     LIBS="$LIBS $SQLITE_LIBS"
6515     AC_CACHE_VAL(ac_cv_sqlite_enable_unlock_notify,[
6516         AC_TRY_RUN([
6517             #include "sqlite3.h"
6519             int main(int argc, char **argv){
6520               return !sqlite3_compileoption_used("SQLITE_ENABLE_UNLOCK_NOTIFY");
6521             }],
6522             ac_cv_sqlite_enable_unlock_notify=yes,
6523             ac_cv_sqlite_enable_unlock_notify=no,
6524             ac_cv_sqlite_enable_unlock_notify=no
6525         )
6526     ])
6527     AC_MSG_RESULT($ac_cv_sqlite_enable_unlock_notify)
6528     CFLAGS="$_SAVE_CFLAGS"
6529     LIBS="$_SAVE_LIBS"
6530     if test "x$ac_cv_sqlite_enable_unlock_notify" = "xno"; then
6531         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_ENABLE_UNLOCK_NOTIFY.])
6532     fi
6535 if test -n "$MOZ_NATIVE_SQLITE"; then
6536     AC_DEFINE(MOZ_NATIVE_SQLITE)
6538 AC_SUBST(MOZ_NATIVE_SQLITE)
6540 dnl ========================================================
6541 dnl = Enable help viewer (off by default)
6542 dnl ========================================================
6543 if test -n "$MOZ_HELP_VIEWER"; then
6544      dnl Do this if defined in confvars.sh
6545      AC_DEFINE(MOZ_HELP_VIEWER)
6548 dnl ========================================================
6549 dnl = Enable safe browsing (anti-phishing)
6550 dnl ========================================================
6551 MOZ_ARG_ENABLE_BOOL(safe-browsing,
6552 [  --enable-safe-browsing  Enable safe browsing (anti-phishing) implementation],
6553     MOZ_SAFE_BROWSING=1,
6554     MOZ_SAFE_BROWSING= )
6555 if test -n "$MOZ_SAFE_BROWSING"; then
6556     AC_DEFINE(MOZ_SAFE_BROWSING)
6558 AC_SUBST(MOZ_SAFE_BROWSING)
6560 dnl ========================================================
6561 dnl = Enable url-classifier
6562 dnl ========================================================
6563 dnl Implicitly enabled by default if building with safe-browsing
6564 if test -n "$MOZ_SAFE_BROWSING"; then
6565     MOZ_URL_CLASSIFIER=1
6567 MOZ_ARG_ENABLE_BOOL(url-classifier,
6568 [  --enable-url-classifier Enable url classifier module],
6569     MOZ_URL_CLASSIFIER=1,
6570     MOZ_URL_CLASSIFIER= )
6571 if test -n "$MOZ_URL_CLASSIFIER"; then
6572     AC_DEFINE(MOZ_URL_CLASSIFIER)
6574 AC_SUBST(MOZ_URL_CLASSIFIER)
6576 dnl ========================================================
6577 dnl = Disable zipwriter
6578 dnl ========================================================
6579 MOZ_ARG_DISABLE_BOOL(zipwriter,
6580 [  --disable-zipwriter     Disable zipwriter component],
6581     MOZ_ZIPWRITER=,
6582     MOZ_ZIPWRITER=1 )
6583 AC_SUBST(MOZ_ZIPWRITER)
6585 dnl ========================================================
6586 dnl GL provider
6587 dnl ========================================================
6588 MOZ_GL_PROVIDER=
6589 MOZ_ARG_WITH_STRING(gl-provider,
6590 [  --with-gl-provider=ID
6591                           Set GL provider backend type],
6592 [ val=`echo $withval`
6593     MOZ_GL_PROVIDER="$val"])
6595 if test -n "$MOZ_GL_PROVIDER"; then
6596 MOZ_GL_DEFAULT_PROVIDER=$MOZ_GL_PROVIDER
6597 AC_SUBST(MOZ_GL_PROVIDER)
6598 AC_DEFINE_UNQUOTED(MOZ_GL_PROVIDER, GLContextProvider$MOZ_GL_PROVIDER)
6600 AC_SUBST(MOZ_GL_DEFAULT_PROVIDER)
6601 AC_DEFINE_UNQUOTED(GL_PROVIDER_$MOZ_GL_DEFAULT_PROVIDER)
6603 dnl ========================================================
6604 dnl = faststripe theme
6605 dnl ========================================================
6606 MOZ_ARG_ENABLE_BOOL(faststripe,
6607 [  --enable-faststripe     Use faststripe theme],
6608     MOZ_THEME_FASTSTRIPE=1,
6609     MOZ_THEME_FASTSTRIPE= )
6610 AC_SUBST(MOZ_THEME_FASTSTRIPE)
6612 dnl ========================================================
6613 dnl =
6614 dnl = Feature options that require extra sources to be pulled
6615 dnl =
6616 dnl ========================================================
6617 dnl MOZ_ARG_HEADER(Features that require extra sources)
6619 dnl ========================================================
6620 dnl =
6621 dnl = Runtime debugging and Optimization Options
6622 dnl =
6623 dnl ========================================================
6624 MOZ_ARG_HEADER(Runtime debugging and Optimizations)
6626 dnl ========================================================
6627 dnl enable mobile optimizations
6628 dnl ========================================================
6629 MOZ_ARG_ENABLE_BOOL(mobile-optimize,
6630 [  --enable-mobile-optimize
6631                           Enable mobile optimizations],
6632     MOZ_GFX_OPTIMIZE_MOBILE=1)
6634 AC_SUBST(MOZ_GFX_OPTIMIZE_MOBILE)
6636 if test "$MOZ_GFX_OPTIMIZE_MOBILE"; then
6637     AC_DEFINE(MOZ_GFX_OPTIMIZE_MOBILE)
6640 dnl ========================================================
6641 dnl = Enable code optimization. ON by default.
6642 dnl ========================================================
6643 if test -z "$MOZ_OPTIMIZE_FLAGS"; then
6644         MOZ_OPTIMIZE_FLAGS="-O"
6647 MOZ_ARG_ENABLE_STRING(optimize,
6648 [  --disable-optimize      Disable compiler optimization
6649   --enable-optimize=[OPT] Specify compiler optimization flags [OPT=-O]],
6650 [ if test "$enableval" != "no"; then
6651     MOZ_OPTIMIZE=1
6652     if test -n "$enableval" -a "$enableval" != "yes"; then
6653         MOZ_OPTIMIZE_FLAGS=`echo "$enableval" | sed -e 's|\\\ | |g'`
6654         MOZ_OPTIMIZE=2
6655     fi
6656 else
6657     MOZ_OPTIMIZE=
6658 fi ], MOZ_OPTIMIZE=1)
6660 MOZ_SET_FRAMEPTR_FLAGS
6662 if test "$COMPILE_ENVIRONMENT"; then
6663 if test -n "$MOZ_OPTIMIZE"; then
6664     AC_MSG_CHECKING([for valid optimization flags])
6665     _SAVE_CFLAGS=$CFLAGS
6666     CFLAGS="$CFLAGS $MOZ_OPTIMIZE_FLAGS"
6667     AC_TRY_COMPILE([#include <stdio.h>],
6668         [printf("Hello World\n");],
6669         _results=yes,
6670         _results=no)
6671     AC_MSG_RESULT([$_results])
6672     if test "$_results" = "no"; then
6673         AC_MSG_ERROR([These compiler flags are invalid: $MOZ_OPTIMIZE_FLAGS])
6674     fi
6675     CFLAGS=$_SAVE_CFLAGS
6677 fi # COMPILE_ENVIRONMENT
6679 AC_SUBST(MOZ_OPTIMIZE)
6680 AC_SUBST(MOZ_FRAMEPTR_FLAGS)
6681 AC_SUBST(MOZ_OPTIMIZE_FLAGS)
6682 AC_SUBST(MOZ_OPTIMIZE_LDFLAGS)
6683 AC_SUBST(MOZ_ALLOW_HEAP_EXECUTE_FLAGS)
6684 AC_SUBST(MOZ_OPTIMIZE_SIZE_TWEAK)
6685 AC_SUBST(MOZ_PGO_OPTIMIZE_FLAGS)
6687 dnl ========================================================
6688 dnl = Enable any treating of compile warnings as errors
6689 dnl ========================================================
6690 MOZ_ARG_ENABLE_BOOL(warnings-as-errors,
6691 [  --enable-warnings-as-errors
6692                           Enable treating of warnings as errors],
6693     MOZ_ENABLE_WARNINGS_AS_ERRORS=1,
6694     MOZ_ENABLE_WARNINGS_AS_ERRORS=)
6695 if test -z "$MOZ_ENABLE_WARNINGS_AS_ERRORS"; then
6696    WARNINGS_AS_ERRORS=''
6697 elif test "$GNU_CC"; then
6698     # Prevent the following GCC warnings from being treated as errors:
6699     # -Wuninitialized - too many false positives
6700     # -Wmaybe-uninitialized - too many false positives
6701     # -Wdeprecated-declarations - we don't want our builds held hostage when a
6702     #   platform-specific API becomes deprecated.
6703     MOZ_C_SUPPORTS_WARNING(-W, no-error=uninitialized, ac_c_has_noerror_uninitialized)
6704     MOZ_CXX_SUPPORTS_WARNING(-W, no-error=uninitialized, ac_cxx_has_noerror_uninitialized)
6705     MOZ_C_SUPPORTS_WARNING(-W, no-error=maybe-uninitialized, ac_c_has_noerror_maybe_uninitialized)
6706     MOZ_CXX_SUPPORTS_WARNING(-W, no-error=maybe-uninitialized, ac_cxx_has_noerror_maybe_uninitialized)
6707     MOZ_C_SUPPORTS_WARNING(-W, no-error=deprecated-declarations, ac_c_has_noerror_deprecated_declarations)
6708     MOZ_CXX_SUPPORTS_WARNING(-W, no-error=deprecated-declarations, ac_cxx_has_noerror_deprecated_declarations)
6711 dnl ========================================================
6712 dnl = Disable runtime logging checks
6713 dnl ========================================================
6714 MOZ_ARG_DISABLE_BOOL(logging,
6715 [  --disable-logging       Disable logging facilities],
6716     NS_DISABLE_LOGGING=1,
6717     NS_DISABLE_LOGGING= )
6718 if test "$NS_DISABLE_LOGGING"; then
6719     AC_DEFINE(NS_DISABLE_LOGGING)
6720 else
6721     AC_DEFINE(MOZ_LOGGING)
6724 dnl ========================================================
6725 dnl = This will enable logging of addref, release, ctor, dtor.
6726 dnl ========================================================
6727 _ENABLE_LOGREFCNT=42
6728 MOZ_ARG_ENABLE_BOOL(logrefcnt,
6729 [  --enable-logrefcnt      Enable logging of refcounts (default=debug) ],
6730     _ENABLE_LOGREFCNT=1,
6731     _ENABLE_LOGREFCNT= )
6732 if test "$_ENABLE_LOGREFCNT" = "1"; then
6733     AC_DEFINE(FORCE_BUILD_REFCNT_LOGGING)
6734 elif test -z "$_ENABLE_LOGREFCNT"; then
6735     AC_DEFINE(NO_BUILD_REFCNT_LOGGING)
6738 dnl ========================================================
6739 dnl moz_dump_painting
6740 dnl ========================================================
6741 MOZ_ARG_ENABLE_BOOL(dump-painting,
6742 [  --enable-dump-painting          Enable paint debugging.],
6743     MOZ_DUMP_PAINTING=1,
6744     MOZ_DUMP_PAINTING= )
6745 if test -n "$MOZ_DUMP_PAINTING"; then
6746     AC_DEFINE(MOZ_DUMP_PAINTING)
6747     AC_DEFINE(MOZ_LAYERS_HAVE_LOG)
6749 if test -n "$MOZ_DEBUG"; then
6750     AC_DEFINE(MOZ_DUMP_PAINTING)
6753 dnl ========================================================
6754 dnl = Enable trace malloc
6755 dnl ========================================================
6756 NS_TRACE_MALLOC=${MOZ_TRACE_MALLOC}
6757 MOZ_ARG_ENABLE_BOOL(trace-malloc,
6758 [  --enable-trace-malloc   Enable malloc tracing; also disables DMD and jemalloc],
6759     NS_TRACE_MALLOC=1,
6760     NS_TRACE_MALLOC= )
6761 if test "$NS_TRACE_MALLOC"; then
6762   # Please, Mr. Linker Man, don't take away our symbol names
6763   MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS=
6764   USE_ELF_DYNSTR_GC=
6765   AC_DEFINE(NS_TRACE_MALLOC)
6767 AC_SUBST(NS_TRACE_MALLOC)
6769 dnl ========================================================
6770 dnl = Enable DMD
6771 dnl ========================================================
6773 MOZ_ARG_ENABLE_BOOL(dmd,
6774 [  --enable-dmd            Enable DMD; also enables jemalloc and replace-malloc],
6775     MOZ_DMD=1,
6776     MOZ_DMD= )
6778 if test "$NS_TRACE_MALLOC"; then        # trace-malloc disables DMD
6779     MOZ_DMD=
6781 if test "$MOZ_DMD"; then
6782     USE_ELF_DYNSTR_GC=
6783     AC_DEFINE(MOZ_DMD)
6785     if test "${CPU_ARCH}" = "arm"; then
6786         CFLAGS="$CFLAGS -funwind-tables"
6787         CXXFLAGS="$CXXFLAGS -funwind-tables"
6788     fi
6790     MOZ_MEMORY=1                        # DMD enables jemalloc
6791     MOZ_REPLACE_MALLOC=1                # DMD enables replace-malloc
6793 AC_SUBST(MOZ_DMD)
6795 dnl ========================================================
6796 dnl = Enable jemalloc
6797 dnl ========================================================
6798 MOZ_ARG_ENABLE_BOOL(jemalloc,
6799 [  --enable-jemalloc       Replace memory allocator with jemalloc],
6800     MOZ_MEMORY=1,
6801     MOZ_MEMORY=)
6803 if test "$NS_TRACE_MALLOC"; then
6804     MOZ_MEMORY=
6807 if test "${OS_TARGET}" = "Android"; then
6808   dnl On Android, we use WRAP_LDFLAGS to link everything to mozglue
6809   :
6810 elif test "${OS_TARGET}" = "WINNT" -o "${OS_TARGET}" = "Darwin" -o "${OS_TARGET}" = "OS2"; then
6811   dnl On Windows, OSX and OS2, we want to link all our binaries against mozglue
6812   if test -z "$GNU_CC"; then
6813     MOZ_GLUE_LDFLAGS='$(call EXPAND_LIBNAME_PATH,mozglue,$(LIBXUL_DIST)/lib)'
6814   else
6815     MOZ_GLUE_LDFLAGS='-L$(LIBXUL_DIST)/lib $(call EXPAND_LIBNAME,mozglue)'
6816   fi
6817 else
6818   dnl On other Unix systems, we only want to link executables against mozglue
6819   MOZ_GLUE_PROGRAM_LDFLAGS='$(MKSHLIB_FORCE_ALL) $(call EXPAND_LIBNAME_PATH,mozglue,$(LIBXUL_DIST)/lib)'
6820   dnl On other Unix systems, where mozglue is a static library, jemalloc is
6821   dnl separated for the SDK, so we need to add it here.
6822   if test "$MOZ_MEMORY" = 1 -o \( "$LIBXUL_SDK" -a -f "$LIBXUL_SDK/lib/${LIB_PREFIX}memory.${LIB_SUFFIX}" \); then
6823     MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS "'$(call EXPAND_LIBNAME_PATH,memory,$(LIBXUL_DIST)/lib)'
6824   fi
6825   MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS "'$(MKSHLIB_UNFORCE_ALL)'
6826   if test -n "$GNU_CC"; then
6827     dnl And we need mozglue symbols to be exported.
6828     MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS -rdynamic"
6829   fi
6830   if test "$MOZ_LINKER" = 1; then
6831     MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS $MOZ_ZLIB_LIBS"
6832   fi
6835 dnl ========================================================
6836 dnl = Enable dynamic replacement of malloc implementation
6837 dnl ========================================================
6838 MOZ_ARG_ENABLE_BOOL(replace-malloc,
6839 [  --enable-replace-malloc   Enable ability to dynamically replace the malloc implementation],
6840     MOZ_REPLACE_MALLOC=1,
6841     MOZ_REPLACE_MALLOC= )
6843 if test -n "$MOZ_REPLACE_MALLOC" -a -z "$MOZ_MEMORY"; then
6844     dnl We don't want to enable jemalloc unconditionally because it may be a
6845     dnl deliberate choice not to enable it (bug 702250, for instance)
6846     AC_MSG_ERROR([--enable-replace-malloc requires --enable-jemalloc])
6847 elif test -n "$MOZ_REPLACE_MALLOC"; then
6848     MOZ_NATIVE_JEMALLOC=
6850     dnl Replace-malloc Mac linkage quirks
6851     if test -n "$MACOSX_DEPLOYMENT_TARGET"; then
6852         AC_CACHE_CHECK([how to do weak dynamic linking],
6853             ac_cv_weak_dynamic_linking,
6854             [echo 'extern void foo() __attribute__((weak_import));int bar() { if (foo) foo(); return 0; }' > conftest.c
6855              if AC_TRY_COMMAND([${CC-cc} -o conftest${DLL_SUFFIX} $CFLAGS -dynamiclib $LDFLAGS -Wl,-U,_foo conftest.c $LIBS 1>&5]) &&
6856                 test -s conftest${DLL_SUFFIX}; then
6857                  dnl There are several ways the linker can put link edit rules in a binary:
6858                  dnl - classic info only (for OSX < 10.6)
6859                  dnl - dyld info only
6860                  dnl - both
6861                  if otool -l conftest${DLL_SUFFIX} 2> /dev/null | grep "LC_DYLD_INFO_ONLY" > /dev/null; then
6862                      _CLASSIC_INFO=
6863                  else
6864                      _CLASSIC_INFO=1
6865                  fi
6866                  if otool -l conftest${DLL_SUFFIX} 2> /dev/null | grep "LC_DYLD_INFO" > /dev/null; then
6867                      _DYLD_INFO=1
6868                  else
6869                      _DYLD_INFO=
6870                  fi
6871                  dnl With classic info, we need to build with -flat_namespace.
6872                  dnl With dyld info, Xcode 4.5 does the right thing without additional flags,
6873                  dnl but Xcode < 4.5 requires a dummy library and -flat_namespace because it
6874                  dnl forgets to set the weak flag in the dyld info.
6875                  dnl See http://glandium.org/blog/?p=2764 for more details.
6876                  dnl
6877                  dnl Values for ac_cv_weak_dynamic_linking, and subsequently
6878                  dnl MOZ_REPLACE_MALLOC_LINKAGE are thus:
6879                  dnl - "flat namespace" when -flat_namespace alone is needed
6880                  dnl - "dummy library" when a dummy library and -flat_namespace are needed
6881                  dnl - "compiler support" when nothing is needed
6882                  if test -n "$_DYLD_INFO" && dyldinfo -bind conftest${DLL_SUFFIX} 2> /dev/null | grep "_foo (weak import)" > /dev/null; then
6883                      if test -n "$_CLASSIC_INFO"; then
6884                          ac_cv_weak_dynamic_linking="flat namespace"
6885                      else
6886                          ac_cv_weak_dynamic_linking="compiler support"
6887                      fi
6888                  else
6889                      if test -n "$_DYLD_INFO"; then
6890                          ac_cv_weak_dynamic_linking="dummy library"
6891                      else
6892                          ac_cv_weak_dynamic_linking="flat namespace"
6893                      fi
6894                  fi
6895              else
6896                  AC_ERROR([couldn't compile a simple C file])
6897              fi
6898              rm -rf conftest*])
6899         MOZ_REPLACE_MALLOC_LINKAGE="$ac_cv_weak_dynamic_linking"
6900     fi
6902 AC_SUBST(MOZ_REPLACE_MALLOC)
6903 AC_SUBST(MOZ_REPLACE_MALLOC_LINKAGE)
6905 dnl ========================================================
6906 dnl = Jemalloc build setup
6907 dnl ========================================================
6908 if test -z "$MOZ_MEMORY"; then
6909   if test -n "$MOZ_JEMALLOC3" -a -z "$MOZ_REPLACE_MALLOC"; then
6910     MOZ_NATIVE_JEMALLOC=1
6911     AC_CHECK_FUNCS(mallctl nallocm,,
6912       [MOZ_NATIVE_JEMALLOC=
6913        break])
6914     if test -n "$MOZ_NATIVE_JEMALLOC"; then
6915       MOZ_MEMORY=1
6916       AC_DEFINE(MOZ_MEMORY)
6917       AC_DEFINE(MOZ_JEMALLOC3)
6918       AC_DEFINE(MOZ_NATIVE_JEMALLOC)
6919     fi
6920   fi
6921   case "${target}" in
6922     *-mingw*)
6923       if test -z "$WIN32_REDIST_DIR" -a -z "$MOZ_DEBUG"; then
6924         AC_MSG_WARN([When not building jemalloc, you need to set WIN32_REDIST_DIR to the path to the Visual C++ Redist (usually VCINSTALLDIR\redist\x86\Microsoft.VC80.CRT, for VC++ v8) if you intend to distribute your build.])
6925       fi
6926       ;;
6927   esac
6928 else
6929   AC_DEFINE(MOZ_MEMORY)
6930   if test -n "$MOZ_JEMALLOC3"; then
6931     AC_DEFINE(MOZ_JEMALLOC3)
6932   fi
6933   if test "x$MOZ_DEBUG" = "x1"; then
6934     AC_DEFINE(MOZ_MEMORY_DEBUG)
6935   fi
6936   dnl The generic feature tests that determine how to compute ncpus are long and
6937   dnl complicated.  Therefore, simply define special cpp variables for the
6938   dnl platforms we have special knowledge of.
6939   case "${target}" in
6940   *-darwin*)
6941     AC_DEFINE(MOZ_MEMORY_DARWIN)
6942     ;;
6943   *-*freebsd*)
6944     AC_DEFINE(MOZ_MEMORY_BSD)
6945     ;;
6946   *-android*|*-linuxandroid*)
6947     AC_DEFINE(MOZ_MEMORY_LINUX)
6948     AC_DEFINE(MOZ_MEMORY_ANDROID)
6949     if test -z "$gonkdir"; then
6950       _WRAP_MALLOC=1
6951     else
6952       AC_DEFINE(MOZ_MEMORY_GONK)
6953     fi
6954     MOZ_GLUE_LDFLAGS=
6955     ;;
6956   *-*linux*)
6957     AC_DEFINE(MOZ_MEMORY_LINUX)
6958     ;;
6959   *-netbsd*)
6960     AC_DEFINE(MOZ_MEMORY_BSD)
6961     ;;
6962   *-solaris*)
6963     AC_DEFINE(MOZ_MEMORY_SOLARIS)
6964     ;;
6965   *-mingw*)
6966     AC_DEFINE(MOZ_MEMORY_WINDOWS)
6967     if test -z "$MOZ_DEBUG"; then
6968       WIN32_CRT_LIBS="msvcrt.lib msvcprt.lib"
6969     else
6970       WIN32_CRT_LIBS="msvcrtd.lib msvcprtd.lib"
6971     fi
6972     dnl Look for a broken crtdll.obj
6973     WIN32_CRTDLL_FULLPATH=`lib -nologo -list $WIN32_CRT_LIBS | grep crtdll\\.obj`
6974     lib -NOLOGO -OUT:crtdll.obj $WIN32_CRT_LIBS -EXTRACT:$WIN32_CRTDLL_FULLPATH
6975     if grep -q '__imp__\{0,1\}free' crtdll.obj; then
6976       MOZ_GLUE_LDFLAGS='-LIBPATH:$(DIST)/lib -NODEFAULTLIB:msvcrt -NODEFAULTLIB:msvcrtd -NODEFAULTLIB:msvcprt -NODEFAULTLIB:msvcprtd -DEFAULTLIB:mozcrt'
6977       dnl Also pass this to NSPR/NSS
6978       DLLFLAGS="$DLLFLAGS $MOZ_GLUE_LDFLAGS"
6979     else
6980       DLLFLAGS="$DLLFLAGS -LIBPATH:\$(DIST)/lib -DEFAULTLIB:mozglue"
6981     fi
6982     rm crtdll.obj
6984     export DLLFLAGS
6985     ;;
6986   *)
6987     AC_MSG_ERROR([--enable-jemalloc not supported on ${target}])
6988     ;;
6989   esac
6990 fi # MOZ_MEMORY
6991 AC_SUBST(MOZ_MEMORY)
6992 AC_SUBST(MOZ_JEMALLOC3)
6993 AC_SUBST(MOZ_NATIVE_JEMALLOC)
6994 AC_SUBST(MOZ_GLUE_LDFLAGS)
6995 AC_SUBST(MOZ_GLUE_PROGRAM_LDFLAGS)
6996 AC_SUBST(WIN32_CRT_LIBS)
6997 dnl Need to set this for make because NSS doesn't have configure
6998 AC_SUBST(DLLFLAGS)
7000 dnl We need to wrap dlopen and related functions on Android because we use
7001 dnl our own linker.
7002 if test "$OS_TARGET" = Android; then
7003     WRAP_LDFLAGS="${WRAP_LDFLAGS} -L$_objdir/dist/lib -lmozglue"
7004     WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=getaddrinfo,--wrap=freeaddrinfo,--wrap=gai_strerror"
7005     WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=PR_GetEnv,--wrap=PR_SetEnv"
7006     if test -z "$gonkdir"; then
7007         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=fork,--wrap=pthread_atfork,--wrap=raise"
7008         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=memccpy,--wrap=memchr,--wrap=memrchr,--wrap=memcmp,--wrap=memcpy,--wrap=memmove,--wrap=memset,--wrap=memmem,--wrap=memswap,--wrap=index,--wrap=strchr,--wrap=strrchr,--wrap=strlen,--wrap=strcmp,--wrap=strcpy,--wrap=strcat,--wrap=strcasecmp,--wrap=strncasecmp,--wrap=strstr,--wrap=strcasestr,--wrap=strtok,--wrap=strtok_r,--wrap=strerror,--wrap=strerror_r,--wrap=strnlen,--wrap=strncat,--wrap=strncmp,--wrap=strncpy,--wrap=strlcat,--wrap=strlcpy,--wrap=strcspn,--wrap=strpbrk,--wrap=strsep,--wrap=strspn,--wrap=strcoll,--wrap=strxfrm"
7009     fi
7010     if test "$MOZ_WIDGET_TOOLKIT" = gonk -a -n "$MOZ_NUWA_PROCESS"; then
7011         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=pthread_create,--wrap=epoll_wait,--wrap=poll,--wrap=pthread_cond_timedwait,--wrap=__pthread_cond_timedwait,--wrap=pthread_cond_wait,--wrap=epoll_create,--wrap=epoll_ctl,--wrap=close,--wrap=pthread_key_create,--wrap=pthread_key_delete,--wrap=socketpair,--wrap=pthread_self,--wrap=pthread_mutex_lock,--wrap=pthread_join,--wrap=pipe,--wrap=pipe2"
7012     fi
7015 dnl ========================================================
7016 dnl = Use malloc wrapper lib
7017 dnl ========================================================
7018 MOZ_ARG_ENABLE_BOOL(wrap-malloc,
7019 [  --enable-wrap-malloc    Wrap malloc calls (gnu linker only)],
7020     _WRAP_MALLOC=1,
7021     _WRAP_MALLOC= )
7023 if test -n "$_WRAP_MALLOC"; then
7024     if test -n "$GNU_CC"; then
7025         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=malloc,--wrap=calloc,--wrap=valloc,--wrap=free,--wrap=realloc,--wrap=memalign"
7026         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=__builtin_new,--wrap=__builtin_vec_new,--wrap=__builtin_delete,--wrap=__builtin_vec_delete"
7027         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=strdup,--wrap=strndup"
7028         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=posix_memalign,--wrap=malloc_usable_size"
7029         dnl Wrap operator new and operator delete on Android.
7030         if test "$OS_TARGET" = "Android"; then
7031             WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=_Znwj,--wrap=_Znaj,--wrap=_ZdlPv,--wrap=_ZdaPv"
7032             dnl Wrap the nothrow variants too.
7033             WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=_ZnwjRKSt9nothrow_t,--wrap=_ZnajRKSt9nothrow_t,--wrap=_ZdlPvRKSt9nothrow_t,--wrap=_ZdaPvRKSt9nothrow_t"
7034         fi
7035     else
7036         AC_MSG_ERROR([--enable-wrap-malloc is not supported for non-GNU toolchains])
7037     fi
7040 dnl ========================================================
7041 dnl = Location of malloc wrapper lib
7042 dnl ========================================================
7043 MOZ_ARG_WITH_STRING(wrap-malloc,
7044 [  --with-wrap-malloc=DIR  Location of malloc wrapper library],
7045     WRAP_LDFLAGS="${WRAP_LDFLAGS} $withval")
7047 dnl ========================================================
7048 dnl = Use JS Call tracing
7049 dnl ========================================================
7050 MOZ_ARG_ENABLE_BOOL(trace-jscalls,
7051 [  --enable-trace-jscalls  Enable JS call enter/exit callback (default=no)],
7052     MOZ_TRACE_JSCALLS=1,
7053     MOZ_TRACE_JSCALLS= )
7054 if test -n "$MOZ_TRACE_JSCALLS"; then
7055     AC_DEFINE(MOZ_TRACE_JSCALLS)
7058 dnl ========================================================
7059 dnl = Use incremental GC
7060 dnl ========================================================
7061 JSGC_INCREMENTAL=1
7062 MOZ_ARG_DISABLE_BOOL(gcincremental,
7063 [  --disable-gcincremental Disable incremental GC],
7064     JSGC_INCREMENTAL= )
7065 if test -n "$JSGC_INCREMENTAL"; then
7066     AC_DEFINE(JSGC_INCREMENTAL)
7069 dnl ========================================================
7070 dnl Zealous JavaScript GC
7071 dnl ========================================================
7072 MOZ_ARG_ENABLE_BOOL(gczeal,
7073 [  --enable-gczeal         Enable zealous JavaScript GCing],
7074     JS_GC_ZEAL=1,
7075     JS_GC_ZEAL= )
7076 if test -n "$JS_GC_ZEAL" -o -n "$MOZ_DEBUG"; then
7077     AC_DEFINE(JS_GC_ZEAL)
7080 dnl ========================================================
7081 dnl JS opt-mode assertions and minidump instrumentation
7082 dnl ========================================================
7083 MOZ_ARG_ENABLE_BOOL(js-diagnostics,
7084 [  --enable-js-diagnostics
7085                           Enable JS diagnostic assertions and breakpad data],
7086     JS_CRASH_DIAGNOSTICS=1,
7087     JS_CRASH_DIAGNOSTICS= )
7088 if test -n "$JS_CRASH_DIAGNOSTICS"; then
7089     AC_DEFINE(JS_CRASH_DIAGNOSTICS)
7092 MOZ_CHECK_CCACHE
7093 MOZ_CHECK_COMPILER_WRAPPER
7095 dnl ========================================================
7096 dnl = Enable static checking using gcc-dehydra
7097 dnl ========================================================
7099 MOZ_ARG_WITH_STRING(static-checking,
7100 [  --with-static-checking=path/to/gcc_dehydra.so
7101                           Enable static checking of code using GCC-dehydra],
7102     DEHYDRA_PATH=$withval,
7103     DEHYDRA_PATH= )
7105 if test -n "$DEHYDRA_PATH"; then
7106     if test ! -f "$DEHYDRA_PATH"; then
7107         AC_MSG_ERROR([The dehydra plugin is not at the specified path.])
7108     fi
7109     AC_DEFINE(NS_STATIC_CHECKING)
7111 AC_SUBST(DEHYDRA_PATH)
7113 dnl ========================================================
7114 dnl = Enable using the clang plugin to build
7115 dnl ========================================================
7117 MOZ_ARG_ENABLE_BOOL(clang-plugin,
7118 [  --enable-clang-plugin   Enable building with the mozilla clang plugin ],
7119    ENABLE_CLANG_PLUGIN=1,
7120    ENABLE_CLANG_PLUGIN= )
7121 if test -n "$ENABLE_CLANG_PLUGIN"; then
7122     if test -z "$CLANG_CC"; then
7123         AC_MSG_ERROR([Can't use clang plugin without clang.])
7124     fi
7125     AC_DEFINE(MOZ_CLANG_PLUGIN)
7128 AC_SUBST(ENABLE_CLANG_PLUGIN)
7130 dnl ========================================================
7131 dnl = Enable stripping of libs & executables
7132 dnl ========================================================
7133 MOZ_ARG_ENABLE_BOOL(strip,
7134 [  --enable-strip          Enable stripping of libs & executables ],
7135     ENABLE_STRIP=1,
7136     ENABLE_STRIP= )
7138 dnl ========================================================
7139 dnl = Enable stripping of libs & executables when packaging
7140 dnl ========================================================
7141 MOZ_ARG_ENABLE_BOOL(install-strip,
7142 [  --enable-install-strip  Enable stripping of libs & executables when packaging ],
7143     PKG_SKIP_STRIP= ,
7144     PKG_SKIP_STRIP=1)
7146 dnl ========================================================
7147 dnl = --enable-elf-dynstr-gc
7148 dnl ========================================================
7149 MOZ_ARG_ENABLE_BOOL(elf-dynstr-gc,
7150 [  --enable-elf-dynstr-gc  Enable elf dynstr garbage collector (opt builds only)],
7151     USE_ELF_DYNSTR_GC=1,
7152     USE_ELF_DYNSTR_GC= )
7154 dnl ========================================================
7155 dnl = --disable-elf-hack
7156 dnl ========================================================
7158 USE_ELF_HACK=1
7159 MOZ_ARG_DISABLE_BOOL(elf-hack,
7160 [  --disable-elf-hack      Disable elf hacks],
7161     [USE_ELF_HACK=],
7162     [USE_ELF_HACK=F # Force enable elf-hack])
7164 # Disable elf hack for profiling because the built in profiler
7165 # doesn't read the segments properly with elf hack. This is
7166 # temporary and should be fixed soon in the profiler.
7167 if test "$MOZ_PROFILING" = 1; then
7168   if test "$USE_ELF_HACK" = F; then
7169     AC_ERROR([--enable-elf-hack is not compatible with --enable-profiling])
7170   fi
7171   USE_ELF_HACK=
7174 # Only enable elfhack where supported
7175 if test "$USE_ELF_HACK" = 1; then
7176     case "${HOST_OS_ARCH},${OS_ARCH}" in
7177     Linux,Linux)
7178         case "${CPU_ARCH}" in
7179         arm | x86 | x86_64)
7180             USE_ELF_HACK=1
7181             ;;
7182         *)
7183             USE_ELF_HACK=
7184             ;;
7185         esac
7186         ;;
7187     *)
7188         USE_ELF_HACK=
7189         ;;
7190     esac
7193 if test -n "$COMPILE_ENVIRONMENT" -a -n "$USE_ELF_HACK"; then
7194     dnl PT_GNU_RELRO segment makes the dynamic linker set a read-only flag on
7195     dnl memory addresses it maps to. The result is that by the time elfhack
7196     dnl kicks in, it is not possible to apply relocations because of that,
7197     dnl thus elfhack effectively skips relocations inside the PT_GNU_RELRO
7198     dnl segment. It makes elfhack mostly useless, so considering the problems
7199     dnl we have we PT_GNU_RELRO (e.g. bug 664366), and until elfhack can deal
7200     dnl with PT_GNU_RELRO segments, it's just simpler to disable elfhack when
7201     dnl the linker creates PT_GNU_RELRO segments. However, when we do want
7202     dnl elfhack enabled, disable PT_GNU_RELRO instead.
7203     AC_CACHE_CHECK([whether linker creates PT_GNU_RELRO segments],
7204         LINK_WITH_PT_GNU_RELRO,
7205         [echo "int main() {return 0;}" > conftest.${ac_ext}
7206          if AC_TRY_COMMAND(${CC-cc} -o conftest${ac_exeext} $LDFLAGS conftest.${ac_ext} $LIBS 1>&2) &&
7207             test -s conftest${ac_exeext}; then
7208             if ${TOOLCHAIN_PREFIX}readelf -l conftest${ac_exeext} | grep GNU_RELRO > /dev/null; then
7209                 LINK_WITH_PT_GNU_RELRO=yes
7210             else
7211                 LINK_WITH_PT_GNU_RELRO=no
7212             fi
7213          else
7214              dnl We really don't expect to get here, but just in case
7215              AC_ERROR([couldn't compile a simple C file])
7216          fi
7217          rm -rf conftest*])
7218     if test "$LINK_WITH_PT_GNU_RELRO" = yes; then
7219         if test "$USE_ELF_HACK" = F; then
7220             AC_MSG_CHECKING([for -z norelro option to ld])
7221             _SAVE_LDFLAGS=$LDFLAGS
7222             LDFLAGS="$LDFLAGS -Wl,-z,norelro"
7223             AC_TRY_LINK(,,AC_MSG_RESULT([yes])
7224                         [NSPR_LDFLAGS="$NSPR_LDFLAGS -Wl,-z,norelro"],
7225                         AC_ERROR([--enable-elf-hack is not compatible with a linker creating a PT_GNU_RELRO segment and that doesn't support the "-z norelro" option.]))
7226             USE_ELF_HACK=1
7227         else
7228             AC_MSG_WARN([Disabling elfhack])
7229             USE_ELF_HACK=
7230         fi
7231     fi
7234 dnl ========================================================
7235 dnl = libstdc++ compatibility hacks
7236 dnl ========================================================
7238 STDCXX_COMPAT=
7239 MOZ_ARG_ENABLE_BOOL(stdcxx-compat,
7240 [  --enable-stdcxx-compat  Enable compatibility with older libstdc++],
7241     STDCXX_COMPAT=1)
7243 if test -n "$STDCXX_COMPAT"; then
7244    eval $(CXX="$CXX" HOST_CXX="$HOST_CXX" $PYTHON $_topsrcdir/build/autoconf/libstdcxx.py)
7245    AC_SUBST(MOZ_LIBSTDCXX_TARGET_VERSION)
7246    AC_SUBST(MOZ_LIBSTDCXX_HOST_VERSION)
7249 dnl ========================================================
7250 dnl =
7251 dnl = Profiling and Instrumenting
7252 dnl =
7253 dnl ========================================================
7254 MOZ_ARG_HEADER(Profiling and Instrumenting)
7256 dnl ========================================================
7257 dnl = Enable runtime visual profiling logger
7258 dnl ========================================================
7259 MOZ_ARG_ENABLE_BOOL(visual-event-tracer,
7260 [  --enable-visual-event-tracer   Enable visual event tracer instrumentation],
7261     MOZ_VISUAL_EVENT_TRACER=1,
7262     MOZ_VISUAL_EVENT_TRACER=)
7263 if test -n "$MOZ_VISUAL_EVENT_TRACER"; then
7264     AC_DEFINE(MOZ_VISUAL_EVENT_TRACER)
7267 dnl ========================================================
7268 dnl Turn on reflow counting
7269 dnl ========================================================
7270 MOZ_ARG_ENABLE_BOOL(reflow-perf,
7271 [  --enable-reflow-perf    Enable reflow performance tracing],
7272     MOZ_REFLOW_PERF=1,
7273     MOZ_REFLOW_PERF= )
7274 if test -n "$MOZ_REFLOW_PERF"; then
7275     AC_DEFINE(MOZ_REFLOW_PERF)
7278 dnl ========================================================
7279 dnl = Enable Radio Interface for B2G (Gonk usually)
7280 dnl ========================================================
7281 MOZ_ARG_ENABLE_BOOL(b2g-ril,
7282 [  --enable-b2g-ril      Set compile flags necessary for testing B2G Radio Interface Layer via network sockets ],
7283     MOZ_B2G_RIL=1,
7284     MOZ_B2G_RIL=,
7285     MOZ_B2G_RIL=$_PLATFORM_HAVE_RIL )
7286 if test -n "$MOZ_B2G_RIL"; then
7287     if test -n "$_PLATFORM_HAVE_RIL"; then
7288         AC_DEFINE(MOZ_B2G_RIL)
7289     else
7290         AC_MSG_ERROR([b2g-ril cannot be enabled because target platform doesn't support it.])
7291     fi
7293 AC_SUBST(MOZ_B2G_RIL)
7295 dnl ========================================================
7296 dnl = Enable Radio FM for B2G (Gonk usually)
7297 dnl ========================================================
7298 if test -n "$MOZ_B2G_FM"; then
7299     AC_DEFINE(MOZ_B2G_FM)
7301 AC_SUBST(MOZ_B2G_FM)
7303 dnl ========================================================
7304 dnl = Enable Bluetooth Interface for B2G (Gonk usually)
7305 dnl ========================================================
7306 MOZ_ARG_ENABLE_BOOL(b2g-bt,
7307 [  --enable-b2g-bt      Set compile flags necessary for compiling Bluetooth API for B2G ],
7308     MOZ_B2G_BT=1,
7309     MOZ_B2G_BT= )
7310 if test -n "$MOZ_B2G_BT"; then
7311     AC_DEFINE(MOZ_B2G_BT)
7313 AC_SUBST(MOZ_B2G_BT)
7314 AC_SUBST(MOZ_B2G_BT_BLUEZ)
7315 AC_SUBST(MOZ_B2G_BT_BLUEDROID)
7317 dnl ========================================================
7318 dnl = Enable NFC Interface for B2G (Gonk usually)
7319 dnl ========================================================
7320 MOZ_ARG_ENABLE_BOOL(b2g-nfc,
7321 [  --enable-nfc         Set compile flags necessary for compiling NFC API ],
7322     MOZ_NFC=1,
7323     MOZ_NFC= )
7324 if test -n "$MOZ_NFC"; then
7325    AC_DEFINE(MOZ_NFC)
7327 AC_SUBST(MOZ_NFC)
7329 dnl ========================================================
7330 dnl = Enable Pico Speech Synthesis (Gonk usually)
7331 dnl ========================================================
7332 MOZ_ARG_ENABLE_BOOL(synth-pico,
7333 [  --enable-synth-pico  Set compile flags necessary for compiling Pico Web Speech API ],
7334     MOZ_SYNTH_PICO=1,
7335     MOZ_SYNTH_PICO= )
7336 if test -n "$MOZ_SYNTH_PICO"; then
7337     AC_DEFINE(MOZ_SYNTH_PICO)
7339 AC_SUBST(MOZ_SYNTH_PICO)
7341 dnl ========================================================
7342 dnl = Enable Support for Time Manager API
7343 dnl ========================================================
7344 if test -n "$MOZ_TIME_MANAGER"; then
7345     AC_DEFINE(MOZ_TIME_MANAGER)
7347 AC_SUBST(MOZ_TIME_MANAGER)
7349 dnl ========================================================
7350 dnl = Enable Camera Interface for B2G (Gonk usually)
7351 dnl ========================================================
7352 MOZ_ARG_ENABLE_BOOL(b2g-camera,
7353 [  --enable-b2g-camera      Set compile flags necessary for compiling camera API for B2G ],
7354     MOZ_B2G_CAMERA=1,
7355     MOZ_B2G_CAMERA= )
7356 if test -n "$MOZ_B2G_CAMERA"; then
7357    AC_DEFINE(MOZ_B2G_CAMERA)
7359 AC_SUBST(MOZ_B2G_CAMERA)
7361 dnl ========================================================
7362 dnl = Enable Support B2G-specific changes to the NSS
7363 dnl = certificate trust database.
7364 dnl ========================================================
7365 if test -n "$MOZ_B2G_CERTDATA"; then
7366     AC_DEFINE(MOZ_B2G_CERTDATA)
7368 AC_SUBST(MOZ_B2G_CERTDATA)
7370 dnl ========================================================
7371 dnl = Enable Support for Payment API
7372 dnl ========================================================
7373 if test -n "$MOZ_PAY"; then
7374     AC_DEFINE(MOZ_PAY)
7376 AC_SUBST(MOZ_PAY)
7378 dnl ========================================================
7379 dnl = Enable Browser Support for Activities
7380 dnl ========================================================
7381 if test -n "$MOZ_ACTIVITIES"; then
7382     AC_DEFINE(MOZ_ACTIVITIES)
7384 AC_SUBST(MOZ_ACTIVITIES)
7386 dnl ========================================================
7387 dnl = Enable Support for AudioChannelManager API
7388 dnl ========================================================
7389 if test -n "$MOZ_AUDIO_CHANNEL_MANAGER"; then
7390     AC_DEFINE(MOZ_AUDIO_CHANNEL_MANAGER)
7392 AC_SUBST(MOZ_AUDIO_CHANNEL_MANAGER)
7394 dnl ========================================================
7395 dnl = Support for demangling undefined symbols
7396 dnl ========================================================
7397 if test -z "$SKIP_LIBRARY_CHECKS"; then
7398     AC_LANG_SAVE
7399     AC_LANG_CPLUSPLUS
7400     AC_CHECK_FUNCS(__cxa_demangle, HAVE_DEMANGLE=1, HAVE_DEMANGLE=)
7401     AC_LANG_RESTORE
7404 # Demangle only for debug or trace-malloc or DMD builds
7405 MOZ_DEMANGLE_SYMBOLS=
7406 if test "$HAVE_DEMANGLE" && test "$MOZ_DEBUG" -o "$NS_TRACE_MALLOC" -o "$MOZ_DMD"; then
7407     MOZ_DEMANGLE_SYMBOLS=1
7408     AC_DEFINE(MOZ_DEMANGLE_SYMBOLS)
7410 AC_SUBST(MOZ_DEMANGLE_SYMBOLS)
7412 dnl ========================================================
7413 dnl = Support for gcc stack unwinding (from gcc 3.3)
7414 dnl ========================================================
7415 if test -z "$SKIP_LIBRARY_CHECKS"; then
7416     MOZ_CHECK_HEADER(unwind.h, AC_CHECK_FUNCS(_Unwind_Backtrace))
7419 dnl ========================================================
7420 dnl JIT observers
7421 dnl ========================================================
7423 MOZ_ARG_WITH_STRING(jitreport-granularity,
7424 [  --jitreport-granularity=N
7425                            Default granularity at which to report JIT code
7426                            to external tools
7427                              0 - no info
7428                              1 - code ranges for whole functions only
7429                              2 - per-line information
7430                              3 - per-op information],
7431   JITREPORT_GRANULARITY=$withval,
7432   JITREPORT_GRANULARITY=3)
7434 AC_DEFINE_UNQUOTED(JS_DEFAULT_JITREPORT_GRANULARITY, $JITREPORT_GRANULARITY)
7436 dnl ========================================================
7437 dnl =
7438 dnl = Misc. Options
7439 dnl =
7440 dnl ========================================================
7441 MOZ_ARG_HEADER(Misc. Options)
7443 dnl ========================================================
7444 dnl update xterm title
7445 dnl ========================================================
7446 MOZ_ARG_ENABLE_BOOL(xterm-updates,
7447 [  --enable-xterm-updates  Update XTERM titles with current command.],
7448     MOZ_UPDATE_XTERM=1,
7449     MOZ_UPDATE_XTERM= )
7451 dnl =========================================================
7452 dnl = Chrome format
7453 dnl =========================================================
7454 MOZ_ARG_ENABLE_STRING([chrome-format],
7455 [  --enable-chrome-format=jar|flat|omni
7456                           Select FORMAT of chrome files during packaging],
7457     MOZ_CHROME_FILE_FORMAT=`echo $enableval | tr A-Z a-z`)
7459 if test -z "$MOZ_CHROME_FILE_FORMAT"; then
7460     MOZ_CHROME_FILE_FORMAT=jar
7463 if test "$MOZ_CHROME_FILE_FORMAT" = "symlink"; then
7464     AC_MSG_ERROR([--enable-chrome-format=symlink has been deprecated. It is now used by default in $DIST/bin on platforms that support it])
7467 if test "$MOZ_CHROME_FILE_FORMAT" != "jar" &&
7468     test "$MOZ_CHROME_FILE_FORMAT" != "flat" &&
7469     test "$MOZ_CHROME_FILE_FORMAT" != "omni"; then
7470     AC_MSG_ERROR([--enable-chrome-format must be set to either jar, flat, or omni])
7473 dnl =========================================================
7474 dnl Omnijar packaging (bug 552121)
7475 dnl =========================================================
7476 dnl Omnijar packaging is compatible with flat packaging.
7477 dnl In unpackaged builds, omnijar looks for files as if
7478 dnl things were flat packaged. After packaging, all files
7479 dnl are loaded from a single jar. MOZ_CHROME_FILE_FORMAT
7480 dnl is set to flat since putting files into jars is only
7481 dnl done during packaging with omnijar.
7482 if test "$MOZ_CHROME_FILE_FORMAT" = "omni"; then
7483     MOZ_OMNIJAR=1
7484     AC_DEFINE(MOZ_OMNIJAR)
7486 MOZ_PACKAGER_FORMAT="$MOZ_CHROME_FILE_FORMAT"
7487 if test "$OS_ARCH" = "WINNT" -o "$OS_ARCH" = "OS2" -o "$MOZ_WIDGET_TOOLKIT" = "android"; then
7488     MOZ_CHROME_FILE_FORMAT=flat
7489 else
7490     MOZ_CHROME_FILE_FORMAT=symlink
7493 if test "$MOZ_WIDGET_TOOLKIT" = "android"; then
7494     dnl Fennec's static resources live in the assets/ folder of the
7495     dnl APK.  Adding a path to the name here works because we only
7496     dnl have one omnijar file in the final package (which is not the
7497     dnl case on desktop), and necessitates some contortions during
7498     dnl packaging so that the resources in the omnijar are considered
7499     dnl as rooted at / and not as rooted at assets/ (which again is
7500     dnl not the case on desktop: there are omnijars rooted at webrtc/,
7501     dnl etc). packager.mk handles changing the rooting of the single
7502     dnl omnijar.
7503     OMNIJAR_NAME=assets/omni.ja
7504 else
7505     OMNIJAR_NAME=omni.ja
7508 AC_SUBST(OMNIJAR_NAME)
7509 AC_SUBST(MOZ_OMNIJAR)
7510 AC_SUBST(MOZ_PACKAGER_FORMAT)
7512 dnl ========================================================
7513 dnl = Define default location for MOZILLA_FIVE_HOME
7514 dnl ========================================================
7515 MOZ_ARG_WITH_STRING(default-mozilla-five-home,
7516 [  --with-default-mozilla-five-home
7517                           Set the default value for MOZILLA_FIVE_HOME],
7518 [ val=`echo $withval`
7519   AC_DEFINE_UNQUOTED(MOZ_DEFAULT_MOZILLA_FIVE_HOME,"$val") ])
7521 dnl ========================================================
7522 dnl = Location of the mozilla user directory (default is ~/.mozilla).],
7523 dnl ========================================================
7524 MOZ_ARG_WITH_STRING(user-appdir,
7525 [  --with-user-appdir=DIR  Set user-specific appdir (default=.mozilla)],
7526 [ val=`echo $withval`
7527 if echo "$val" | grep "\/" >/dev/null; then
7528     AC_MSG_ERROR("Homedir must be single relative path.")
7529 else
7530     MOZ_USER_DIR="$val"
7531 fi])
7533 AC_DEFINE_UNQUOTED(MOZ_USER_DIR,"$MOZ_USER_DIR")
7535 dnl ========================================================
7536 dnl = Doxygen configuration
7537 dnl ========================================================
7538 dnl Use commas to specify multiple dirs to this arg
7539 MOZ_DOC_INPUT_DIRS='./dist/include ./dist/idl'
7540 MOZ_ARG_WITH_STRING(doc-input-dirs,
7541 [  --with-doc-input-dirs=DIRS
7542                           Header/idl dirs to create docs from],
7543 [ MOZ_DOC_INPUT_DIRS=`echo "$withval" | sed "s/,/ /g"` ] )
7544 AC_SUBST(MOZ_DOC_INPUT_DIRS)
7546 dnl Use commas to specify multiple dirs to this arg
7547 MOZ_DOC_INCLUDE_DIRS='./dist/include ./dist/include/nspr'
7548 MOZ_ARG_WITH_STRING(doc-include-dirs,
7549 [  --with-doc-include-dirs=DIRS
7550                           Include dirs to preprocess doc headers],
7551 [ MOZ_DOC_INCLUDE_DIRS=`echo "$withval" | sed "s/,/ /g"` ] )
7552 AC_SUBST(MOZ_DOC_INCLUDE_DIRS)
7554 MOZ_DOC_OUTPUT_DIR='./dist/docs'
7555 MOZ_ARG_WITH_STRING(doc-output-dir,
7556 [  --with-doc-output-dir=DIR
7557                           Dir to generate docs into],
7558 [ MOZ_DOC_OUTPUT_DIR=$withval ] )
7559 AC_SUBST(MOZ_DOC_OUTPUT_DIR)
7561 if test -z "$SKIP_COMPILER_CHECKS"; then
7562 dnl ========================================================
7563 dnl =
7564 dnl = Compiler Options
7565 dnl =
7566 dnl ========================================================
7567 MOZ_ARG_HEADER(Compiler Options)
7569 dnl ========================================================
7570 dnl Check for gcc -pipe support
7571 dnl ========================================================
7572 AC_MSG_CHECKING([for -pipe support])
7573 if test -n "$GNU_CC" -a -n "$GNU_CXX"; then
7574     dnl Any gcc that supports firefox supports -pipe.
7575     CFLAGS="$CFLAGS -pipe"
7576     CXXFLAGS="$CXXFLAGS -pipe"
7577     AC_MSG_RESULT([yes])
7578 else
7579     AC_MSG_RESULT([no])
7582 dnl ========================================================
7583 dnl Profile guided optimization (gcc checks)
7584 dnl ========================================================
7585 dnl Test for profiling options
7586 dnl Under gcc 3.4+, use -fprofile-generate/-fprofile-use
7588 _SAVE_CFLAGS="$CFLAGS"
7589 CFLAGS="$CFLAGS -fprofile-generate -fprofile-correction"
7591 AC_MSG_CHECKING([whether C compiler supports -fprofile-generate])
7592 AC_TRY_COMPILE([], [return 0;],
7593                [ PROFILE_GEN_CFLAGS="-fprofile-generate"
7594                  result="yes" ], result="no")
7595 AC_MSG_RESULT([$result])
7597 if test $result = "yes"; then
7598   PROFILE_GEN_LDFLAGS="-fprofile-generate"
7599   PROFILE_USE_CFLAGS="-fprofile-use -fprofile-correction -Wcoverage-mismatch"
7600   PROFILE_USE_LDFLAGS="-fprofile-use"
7603 CFLAGS="$_SAVE_CFLAGS"
7605 if test -n "$INTEL_CC"; then
7606   PROFILE_GEN_CFLAGS="-prof-gen -prof-dir ."
7607   PROFILE_GEN_LDFLAGS=
7608   PROFILE_USE_CFLAGS="-prof-use -prof-dir ."
7609   PROFILE_USE_LDFLAGS=
7612 dnl Sun Studio on Solaris
7613 if test "$SOLARIS_SUNPRO_CC"; then
7614   PROFILE_GEN_CFLAGS="-xprofile=collect:$_objdir/$enable_application"
7615   PROFILE_GEN_LDFLAGS="-xprofile=collect:$_objdir/$enable_application"
7616   PROFILE_USE_CFLAGS="-xprofile=use:$_objdir/$enable_application"
7617   PROFILE_USE_LDFLAGS="-xprofile=use:$_objdir/$enable_application"
7620 AC_SUBST(PROFILE_GEN_CFLAGS)
7621 AC_SUBST(PROFILE_GEN_LDFLAGS)
7622 AC_SUBST(PROFILE_USE_CFLAGS)
7623 AC_SUBST(PROFILE_USE_LDFLAGS)
7625 AC_LANG_CPLUSPLUS
7627 dnl ========================================================
7628 dnl Autoconf test for gcc 2.7.2.x (and maybe others?) so that we don't
7629 dnl provide non-const forms of the operator== for comparing nsCOMPtrs to
7630 dnl raw pointers in nsCOMPtr.h.  (VC++ has the same bug.)
7631 dnl ========================================================
7632 _SAVE_CXXFLAGS=$CXXFLAGS
7633 CXXFLAGS="$CXXFLAGS ${_WARNINGS_CXXFLAGS}"
7634 AC_CACHE_CHECK(for correct overload resolution with const and templates,
7635     ac_nscap_nonconst_opeq_bug,
7636     [AC_TRY_COMPILE([
7637                       template <class T>
7638                       class Pointer
7639                         {
7640                         public:
7641                           T* myPtr;
7642                         };
7644                       template <class T, class U>
7645                       int operator==(const Pointer<T>& rhs, U* lhs)
7646                         {
7647                           return rhs.myPtr == lhs;
7648                         }
7650                       template <class T, class U>
7651                       int operator==(const Pointer<T>& rhs, const U* lhs)
7652                         {
7653                           return rhs.myPtr == lhs;
7654                         }
7655                     ],
7656                     [
7657                       Pointer<int> foo;
7658                       const int* bar;
7659                       return foo == bar;
7660                     ],
7661                     ac_nscap_nonconst_opeq_bug="no",
7662                     ac_nscap_nonconst_opeq_bug="yes")])
7663 CXXFLAGS="$_SAVE_CXXFLAGS"
7665 if test "$ac_nscap_nonconst_opeq_bug" = "yes" ; then
7666     AC_DEFINE(NSCAP_DONT_PROVIDE_NONCONST_OPEQ)
7668 fi # ! SKIP_COMPILER_CHECKS
7670 AC_DEFINE(CPP_THROW_NEW, [throw()])
7671 AC_LANG_C
7673 if test "$COMPILE_ENVIRONMENT"; then
7674 MOZ_EXPAND_LIBS
7675 fi # COMPILE_ENVIRONMENT
7677 dnl ========================================================
7678 dnl =
7679 dnl = Build depencency options
7680 dnl =
7681 dnl ========================================================
7682 MOZ_ARG_HEADER(Build dependencies)
7684 if test "$GNU_CC" -a "$GNU_CXX"; then
7685   _DEPEND_CFLAGS='-MD -MP -MF $(MDDEPDIR)/$(@F).pp'
7686 dnl Sun Studio on Solaris use -xM instead of -MD, see config/rules.mk
7687 elif test "$SOLARIS_SUNPRO_CC"; then
7688   _DEPEND_CFLAGS=
7689 else
7690   dnl Don't override this for MSVC
7691   if test -z "$_WIN32_MSVC"; then
7692     _USE_CPP_INCLUDE_FLAG=
7693     _DEFINES_CFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
7694     _DEFINES_CXXFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
7695   else
7696     echo '#include <stdio.h>' > dummy-hello.c
7697     changequote(,)
7698     CL_INCLUDES_PREFIX=`${CC} -showIncludes -c -Fonul dummy-hello.c 2>&1 | sed -ne 's/^\([^:]*:[^:]*:\).*stdio.h$/\1/p'`
7699     changequote([,])
7700     if test -z "$CL_INCLUDES_PREFIX"; then
7701         AC_MSG_ERROR([Cannot find cl -showIncludes prefix.])
7702     fi
7703     AC_SUBST(CL_INCLUDES_PREFIX)
7704     rm -f dummy-hello.c
7705   fi
7708 dnl ========================================================
7709 dnl =
7710 dnl = Static Build Options
7711 dnl =
7712 dnl ========================================================
7713 MOZ_ARG_HEADER(Static build options)
7715 # split JS out by default to avoid VS2005 PGO crash (bug 591836).
7716 if test "$OS_ARCH" = "WINNT"; then
7717   ENABLE_SHARED_JS=1
7720 MOZ_ARG_ENABLE_BOOL(shared-js,
7721 [  --enable-shared-js
7722                           Create a shared JavaScript library.],
7723     ENABLE_SHARED_JS=1,
7724     ENABLE_SHARED_JS=)
7726 if test -n "$ENABLE_SHARED_JS"; then
7727   JS_SHARED_LIBRARY=1
7728   MOZ_JS_LIBS="$MOZ_JS_SHARED_LIBS"
7729 else
7730   MOZ_JS_LIBS="$MOZ_JS_STATIC_LIBS"
7731   AC_DEFINE(MOZ_STATIC_JS)
7733 AC_SUBST(JS_SHARED_LIBRARY)
7735 AC_SUBST(LIBXUL_LIBS)
7736 XPCOM_LIBS="$LIBXUL_LIBS"
7738 dnl ========================================================
7739 dnl =
7740 dnl = Standalone module options
7741 dnl =
7742 dnl ========================================================
7743 MOZ_ARG_HEADER(Standalone module options (Not for building Mozilla))
7745 dnl Check for GLib.
7746 dnl ========================================================
7748 if test -z "$SKIP_PATH_CHECKS"; then
7749 if test -z "${GLIB_CFLAGS}" -o -z "${GLIB_LIBS}" ; then
7750     if test "$MOZ_ENABLE_GTK2" -o "$USE_ELF_DYNSTR_GC" ; then
7751         PKG_CHECK_MODULES(GLIB, glib-2.0 >= 1.3.7 gobject-2.0)
7752     fi
7756 if test -z "${GLIB_GMODULE_LIBS}" \
7757    -a -n "${GLIB_CONFIG}"\
7758     -a "${GLIB_CONFIG}" != no\
7759 ; then
7760     GLIB_GMODULE_LIBS=`$GLIB_CONFIG gmodule --libs`
7763 AC_SUBST(GLIB_CFLAGS)
7764 AC_SUBST(GLIB_LIBS)
7765 AC_SUBST(GLIB_GMODULE_LIBS)
7767 dnl ========================================================
7768 dnl Graphics checks.
7769 dnl ========================================================
7771 if test "${OS_TARGET}" = "WINNT"; then
7772   if $PERL -e "exit($MOZ_WINSDK_MAXVER < 0x06020000)"; then
7773     MOZ_ENABLE_DIRECT2D1_1=1
7774     AC_SUBST(MOZ_ENABLE_DIRECT2D1_1)
7775   fi
7778 if test "${OS_TARGET}" = "WINNT" -o \
7779         "${OS_ARCH}" = "Darwin" -o \
7780         "${MOZ_WIDGET_TOOLKIT}" = "android" -o \
7781         "${MOZ_WIDGET_TOOLKIT}" = "gonk" -o \
7782         "${MOZ_WIDGET_TOOLKIT}" = "gtk2" -o \
7783         "${MOZ_WIDGET_TOOLKIT}" = "gtk3"; then
7784     case "${target_cpu}" in
7785     i*86*|x86_64|arm)
7786         MOZ_ENABLE_SKIA=1
7787         ;;
7788     *)
7789         MOZ_ENABLE_SKIA=
7790         ;;
7791     esac
7792 else
7793 MOZ_ENABLE_SKIA=
7796 MOZ_ARG_ENABLE_BOOL(skia,
7797 [  --enable-skia   Enable use of Skia],
7798 MOZ_ENABLE_SKIA=1,
7799 MOZ_ENABLE_SKIA=)
7801 if test "$USE_FC_FREETYPE"; then
7802     if test "$COMPILE_ENVIRONMENT"; then
7803         dnl ========================================================
7804         dnl = Check for freetype2 and its functionality
7805         dnl ========================================================
7806         PKG_CHECK_MODULES(FT2, freetype2 >= 6.1.0, _HAVE_FREETYPE2=1, _HAVE_FREETYPE2=)
7808         if test "$_HAVE_FREETYPE2"; then
7809             _SAVE_LIBS="$LIBS"
7810             _SAVE_CFLAGS="$CFLAGS"
7811             LIBS="$LIBS $FT2_LIBS"
7812             CFLAGS="$CFLAGS $FT2_CFLAGS"
7814             AC_CACHE_CHECK(for FT_Bitmap_Size.y_ppem,
7815                 ac_cv_member_FT_Bitmap_Size_y_ppem,
7816                 [AC_TRY_COMPILE([#include <ft2build.h>
7817                                  #include FT_FREETYPE_H],
7818                                 [FT_Bitmap_Size s;
7819                                  if (sizeof s.y_ppem) return 0;
7820                                  return 1],
7821                                 ac_cv_member_FT_Bitmap_Size_y_ppem=yes,
7822                                 ac_cv_member_FT_Bitmap_Size_y_ppem=no)])
7823             if test "$ac_cv_member_FT_Bitmap_Size_y_ppem" = yes; then
7824                 HAVE_FT_BITMAP_SIZE_Y_PPEM=1
7825             else
7826                 HAVE_FT_BITMAP_SIZE_Y_PPEM=0
7827             fi
7828             AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,
7829                                $HAVE_FT_BITMAP_SIZE_Y_PPEM,
7830                                [FT_Bitmap_Size structure includes y_ppem field])
7832             AC_CHECK_FUNCS(FT_GlyphSlot_Embolden FT_Load_Sfnt_Table FT_Select_Size)
7834             LIBS="$_SAVE_LIBS"
7835             CFLAGS="$_SAVE_CFLAGS"
7836         fi
7838         _SAVE_CPPFLAGS="$CPPFLAGS"
7839         CPPFLAGS="$CPPFLAGS $FT2_CFLAGS $XCFLAGS"
7840         MOZ_CHECK_HEADERS([fontconfig/fcfreetype.h], ,
7841             [AC_MSG_ERROR(Can't find header fontconfig/fcfreetype.h.)], [#include <fontconfig/fontconfig.h>])
7842         CPPFLAGS="$_SAVE_CPPFLAGS"
7843     else
7844         AC_DEFINE(HAVE_FONTCONFIG_FCFREETYPE_H)
7845     fi
7847     PKG_CHECK_MODULES(_FONTCONFIG, fontconfig,
7848     [
7849         if test "$MOZ_PANGO"; then
7850             MOZ_PANGO_CFLAGS="$MOZ_PANGO_CFLAGS $_FONTCONFIG_CFLAGS"
7851             MOZ_PANGO_LIBS="$MOZ_PANGO_LIBS $_FONTCONFIG_LIBS"
7852         else
7853             FT2_CFLAGS="$FT2_CFLAGS $_FONTCONFIG_CFLAGS"
7854             FT2_LIBS="$FT2_LIBS $_FONTCONFIG_LIBS"
7855         fi
7856     ])
7859 dnl ========================================================
7860 dnl Check for pixman and cairo
7861 dnl ========================================================
7863 MOZ_TREE_CAIRO=1
7864 MOZ_ARG_ENABLE_BOOL(system-cairo,
7865 [  --enable-system-cairo   Use system cairo (located with pkgconfig)],
7866 MOZ_TREE_CAIRO=,
7867 MOZ_TREE_CAIRO=1 )
7869 MOZ_TREE_PIXMAN=1
7870 MOZ_ARG_ENABLE_BOOL(system-pixman,
7871 [ --enable-system-pixman Use system pixman (located with pkgconfig)],
7872 MOZ_TREE_PIXMAN=,
7873 MOZ_TREE_PIXMAN=force,
7874 MOZ_TREE_PIXMAN=1 )
7876 # System cairo depends on system pixman
7877 if test "$MOZ_TREE_PIXMAN" = "force"; then
7878     if test -z "$MOZ_TREE_CAIRO"; then
7879         AC_MSG_ERROR([--disable-system-pixman is incompatible with --enable-system-cairo.])
7880     else
7881         MOZ_TREE_PIXMAN=1
7882     fi
7883 elif test -z "$MOZ_TREE_CAIRO"; then
7884     MOZ_TREE_PIXMAN=
7887 if test "$MOZ_TREE_PIXMAN"; then
7888     AC_DEFINE(MOZ_TREE_PIXMAN)
7889     MOZ_PIXMAN_CFLAGS=""
7890     MOZ_PIXMAN_LIBS='$(call EXPAND_LIBNAME_PATH,mozlibpixman,$(DEPTH)/gfx/cairo/libpixman/src)'
7891 else
7892     PKG_CHECK_MODULES(PIXMAN, pixman-1 >= 0.19.2)
7893     MOZ_PIXMAN_CFLAGS="$PIXMAN_CFLAGS"
7894     MOZ_PIXMAN_LIBS="$PIXMAN_LIBS"
7896 AC_SUBST(MOZ_PIXMAN_CFLAGS)
7897 AC_SUBST(MOZ_PIXMAN_LIBS)
7899 # Check for headers defining standard int types.
7900 if test -n "$COMPILE_ENVIRONMENT"; then
7901     MOZ_CHECK_HEADERS(stdint.h inttypes.h sys/int_types.h)
7904 if test "$MOZ_TREE_CAIRO"; then
7905     MOZ_CAIRO_CFLAGS='-I$(LIBXUL_DIST)/include/cairo'
7906     AC_DEFINE(MOZ_TREE_CAIRO)
7908     # For now we assume that we will have a uint64_t available through
7909     # one of the above headers or mozstdint.h.
7910     AC_DEFINE(HAVE_UINT64_T)
7912     # Define macros for cairo-features.h
7913     TEE_SURFACE_FEATURE="#define CAIRO_HAS_TEE_SURFACE 1"
7914     if test "$MOZ_X11"; then
7915         XLIB_SURFACE_FEATURE="#define CAIRO_HAS_XLIB_SURFACE 1"
7916         XLIB_XRENDER_SURFACE_FEATURE="#define CAIRO_HAS_XLIB_XRENDER_SURFACE 1"
7917         PS_SURFACE_FEATURE="#define CAIRO_HAS_PS_SURFACE 1"
7918         FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
7919         MOZ_ENABLE_CAIRO_FT=1
7920         CAIRO_FT_CFLAGS="$FT2_CFLAGS"
7921     fi
7922     case "$MOZ_WIDGET_TOOLKIT" in
7923       qt)
7924         QT_SURFACE_FEATURE="#define CAIRO_HAS_QT_SURFACE 1"
7925         ;;
7926       cocoa | uikit)
7927         QUARTZ_SURFACE_FEATURE="#define CAIRO_HAS_QUARTZ_SURFACE 1"
7928         QUARTZ_IMAGE_SURFACE_FEATURE="#define CAIRO_HAS_QUARTZ_IMAGE_SURFACE 1"
7929         QUARTZ_FONT_FEATURE="#define CAIRO_HAS_QUARTZ_FONT 1"
7930         ;;
7931       windows)
7932         WIN32_SURFACE_FEATURE="#define CAIRO_HAS_WIN32_SURFACE 1"
7933         WIN32_FONT_FEATURE="#define CAIRO_HAS_WIN32_FONT 1"
7934         if test "$MOZ_WINSDK_TARGETVER" -ge "06010000"; then
7935             WIN32_DWRITE_FONT_FEATURE="#define CAIRO_HAS_DWRITE_FONT 1"
7936             WIN32_D2D_SURFACE_FEATURE="#define CAIRO_HAS_D2D_SURFACE 1"
7937             MOZ_ENABLE_D2D_SURFACE=1
7938             MOZ_ENABLE_DWRITE_FONT=1
7939         else
7940             WIN32_DWRITE_FONT_FEATURE=
7941             WIN32_D2D_SURFACE_FEATURE=
7942         fi
7944         MOZ_CHECK_HEADER(d3d9.h, MOZ_ENABLE_D3D9_LAYER=1)
7946         dnl D3D10 Layers depend on D2D Surfaces.
7947         if test -n "$WIN32_D2D_SURFACE_FEATURE"; then
7948           MOZ_CHECK_HEADER(d3d10.h, MOZ_ENABLE_D3D10_LAYER=1)
7949         fi
7950         ;;
7951       os2)
7952         OS2_SURFACE_FEATURE="#define CAIRO_HAS_OS2_SURFACE 1"
7953         FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
7954         MOZ_ENABLE_CAIRO_FT=1
7955         CAIRO_FT_CFLAGS="-I${MZFTCFGFT2}/include"
7956         CAIRO_FT_OSLIBS="-L${MZFTCFGFT2}/lib -lmozft -lmzfntcfg"
7957         CAIRO_FT_LIBS=""
7958         ;;
7959     esac
7960     if test "$USE_FC_FREETYPE"; then
7961         FC_FONT_FEATURE="#define CAIRO_HAS_FC_FONT 1"
7962     fi
7963     AC_SUBST(MOZ_ENABLE_CAIRO_FT)
7964     AC_SUBST(MOZ_ENABLE_DWRITE_FONT)
7965     AC_SUBST(MOZ_ENABLE_D2D_SURFACE)
7966     AC_SUBST(MOZ_ENABLE_D3D9_LAYER)
7967     AC_SUBST(MOZ_ENABLE_D3D10_LAYER)
7968     AC_SUBST(CAIRO_FT_CFLAGS)
7970     AC_SUBST(PS_SURFACE_FEATURE)
7971     AC_SUBST(PDF_SURFACE_FEATURE)
7972     AC_SUBST(SVG_SURFACE_FEATURE)
7973     AC_SUBST(XLIB_SURFACE_FEATURE)
7974     AC_SUBST(XLIB_XRENDER_SURFACE_FEATURE)
7975     AC_SUBST(QUARTZ_SURFACE_FEATURE)
7976     AC_SUBST(QUARTZ_IMAGE_SURFACE_FEATURE)
7977     AC_SUBST(WIN32_SURFACE_FEATURE)
7978     AC_SUBST(OS2_SURFACE_FEATURE)
7979     AC_SUBST(DIRECTFB_SURFACE_FEATURE)
7980     AC_SUBST(FT_FONT_FEATURE)
7981     AC_SUBST(FC_FONT_FEATURE)
7982     AC_SUBST(WIN32_FONT_FEATURE)
7983     AC_SUBST(WIN32_DWRITE_FONT_FEATURE)
7984     AC_SUBST(WIN32_D2D_SURFACE_FEATURE)
7985     AC_SUBST(QUARTZ_FONT_FEATURE)
7986     AC_SUBST(PNG_FUNCTIONS_FEATURE)
7987     AC_SUBST(QT_SURFACE_FEATURE)
7988     AC_SUBST(TEE_SURFACE_FEATURE)
7990     MOZ_CAIRO_LIBS='$(call EXPAND_LIBNAME_PATH,mozcairo,$(DEPTH)/gfx/cairo/cairo/src)'" $CAIRO_FT_LIBS"
7991     MOZ_CAIRO_OSLIBS='${CAIRO_FT_OSLIBS}'
7993     if test "$MOZ_X11"; then
7994         MOZ_CAIRO_OSLIBS="$MOZ_CAIRO_OSLIBS $XLDFLAGS -lXrender"
7995     fi
7997     CAIRO_FEATURES_H=gfx/cairo/cairo/src/cairo-features.h
7998 else
7999     PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_VERSION)
8000     MOZ_CAIRO_CFLAGS="$CAIRO_CFLAGS"
8001     MOZ_CAIRO_LIBS="$CAIRO_LIBS"
8002     PKG_CHECK_MODULES(CAIRO_TEE, cairo-tee >= $CAIRO_VERSION)
8003     if test "$MOZ_X11"; then
8004         PKG_CHECK_MODULES(CAIRO_XRENDER, cairo-xlib-xrender >= $CAIRO_VERSION)
8005         MOZ_CAIRO_LIBS="$MOZ_CAIRO_LIBS $XLDFLAGS $CAIRO_XRENDER_LIBS"
8006         MOZ_CAIRO_OSLIBS="$MOZ_CAIRO_LIBS"
8007         MOZ_CAIRO_CFLAGS="$MOZ_CAIRO_CFLAGS $CAIRO_XRENDER_CFLAGS"
8008     fi
8011 AC_SUBST(MOZ_TREE_CAIRO)
8012 AC_SUBST(MOZ_CAIRO_CFLAGS)
8013 AC_SUBST(MOZ_CAIRO_LIBS)
8014 AC_SUBST(MOZ_CAIRO_OSLIBS)
8015 AC_SUBST(MOZ_TREE_PIXMAN)
8017 dnl ========================================================
8018 dnl qcms
8019 dnl ========================================================
8021 QCMS_LIBS='$(DEPTH)/gfx/qcms/$(LIB_PREFIX)mozqcms.$(LIB_SUFFIX)'
8022 AC_SUBST(QCMS_LIBS)
8024 dnl ========================================================
8025 dnl HarfBuzz
8026 dnl ========================================================
8027 MOZ_HARFBUZZ_LIBS='$(DEPTH)/gfx/harfbuzz/src/$(LIB_PREFIX)mozharfbuzz.$(LIB_SUFFIX)'
8028 AC_SUBST(MOZ_HARFBUZZ_LIBS)
8030 dnl ========================================================
8031 dnl SIL Graphite
8032 dnl ========================================================
8033 MOZ_GRAPHITE_LIBS='$(DEPTH)/gfx/graphite2/src/$(LIB_PREFIX)mozgraphite2.$(LIB_SUFFIX)'
8034 AC_SUBST(MOZ_GRAPHITE_LIBS)
8036 dnl ========================================================
8037 dnl OTS
8038 dnl ========================================================
8039 MOZ_OTS_LIBS='$(DEPTH)/gfx/ots/src/$(LIB_PREFIX)mozots.$(LIB_SUFFIX)'
8040 AC_SUBST(MOZ_OTS_LIBS)
8042 dnl ========================================================
8043 dnl Skia 
8044 dnl ========================================================
8045 if test "$MOZ_ENABLE_SKIA"; then
8046   MOZ_SKIA_LIBS='$(DEPTH)/gfx/skia/$(LIB_PREFIX)skia.$(LIB_SUFFIX)'
8047   AC_DEFINE(MOZ_ENABLE_SKIA)
8048   AC_DEFINE(USE_SKIA)
8049   if test "${MOZ_WIDGET_TOOLKIT}" = "android" -o x"$MOZ_WIDGET_TOOLKIT" = x"gonk"; then
8050     AC_DEFINE(SK_BUILD_FOR_ANDROID_NDK)
8051   elif test "$OS_ARCH" = "WINNT"; then
8052     AC_DEFINE(SKIA_DLL)
8053     AC_DEFINE(GR_DLL)
8054   fi
8056   if test "${CPU_ARCH}" != "ppc" -a "${CPU_ARCH}" != "ppc64"; then
8057     MOZ_ENABLE_SKIA_GPU=1
8058     AC_DEFINE(USE_SKIA_GPU)
8059     AC_SUBST(MOZ_ENABLE_SKIA_GPU)
8060   fi
8061 else
8062   MOZ_SKIA_LIBS=
8064 AC_SUBST(MOZ_ENABLE_SKIA)
8065 AC_SUBST(MOZ_SKIA_LIBS)
8067 dnl ========================================================
8068 dnl disable xul
8069 dnl ========================================================
8070 MOZ_ARG_DISABLE_BOOL(xul,
8071 [  --disable-xul           Disable XUL],
8072     MOZ_XUL= )
8073 if test "$MOZ_XUL"; then
8074   AC_DEFINE(MOZ_XUL)
8075 else
8076   dnl remove extensions that require XUL
8077   MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's/inspector//' -e 's/venkman//' -e 's/irc//' -e 's/tasks//'`
8080 AC_SUBST(MOZ_XUL)
8082 dnl ========================================================
8083 dnl disable profile locking
8084 dnl   do no use this in applications that can have more than
8085 dnl   one process accessing the profile directory.
8086 dnl ========================================================
8087 MOZ_ARG_DISABLE_BOOL(profilelocking,
8088 [  --disable-profilelocking
8089                           Disable profile locking],
8090     MOZ_PROFILELOCKING=,
8091     MOZ_PROFILELOCKING=1 )
8092 if test "$MOZ_PROFILELOCKING"; then
8093   AC_DEFINE(MOZ_PROFILELOCKING)
8096 dnl ========================================================
8097 dnl necko configuration options
8098 dnl ========================================================
8101 dnl option to disable various necko protocols
8103 MOZ_ARG_ENABLE_STRING(necko-protocols,
8104 [  --enable-necko-protocols[={http,ftp,default,all,none}]
8105                           Enable/disable specific protocol handlers],
8106 [ for option in `echo $enableval | sed 's/,/ /g'`; do
8107     if test "$option" = "yes" -o "$option" = "all"; then
8108         NECKO_PROTOCOLS="$NECKO_PROTOCOLS $NECKO_PROTOCOLS_DEFAULT"
8109     elif test "$option" = "no" -o "$option" = "none"; then
8110         NECKO_PROTOCOLS=""
8111     elif test "$option" = "default"; then
8112         NECKO_PROTOCOLS="$NECKO_PROTOCOLS $NECKO_PROTOCOLS_DEFAULT"
8113     elif test `echo "$option" | grep -c \^-` != 0; then
8114         option=`echo $option | sed 's/^-//'`
8115         NECKO_PROTOCOLS=`echo "$NECKO_PROTOCOLS" | sed "s/ ${option}//"`
8116     else
8117         NECKO_PROTOCOLS="$NECKO_PROTOCOLS $option"
8118     fi
8119 done],
8120     NECKO_PROTOCOLS="$NECKO_PROTOCOLS_DEFAULT")
8121 dnl Remove dupes
8122 NECKO_PROTOCOLS=`${PERL} ${srcdir}/build/unix/uniq.pl ${NECKO_PROTOCOLS}`
8123 AC_SUBST_SET(NECKO_PROTOCOLS)
8124 for p in $NECKO_PROTOCOLS; do
8125     AC_DEFINE_UNQUOTED(NECKO_PROTOCOL_$p)
8126     _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_PROTOCOL_$p"
8127 done
8130 dnl option to disable necko's wifi scanner
8133 case "$OS_TARGET" in
8134   Android)
8135     if test -n "$gonkdir"; then
8136       NECKO_WIFI=1
8137     fi
8138     ;;
8139   Darwin|SunOS|WINNT)
8140     NECKO_WIFI=1
8141     ;;
8142   Linux)
8143     NECKO_WIFI=1
8144     NECKO_WIFI_DBUS=1
8145     ;;
8146 esac
8148 MOZ_ARG_DISABLE_BOOL(necko-wifi,
8149 [  --disable-necko-wifi    Disable necko wifi scanner],
8150     NECKO_WIFI=,
8151     NECKO_WIFI=1)
8153 if test "$NECKO_WIFI"; then
8154   if test -z "$MOZ_ENABLE_DBUS" -a -n "$NECKO_WIFI_DBUS"; then
8155     AC_MSG_ERROR([Necko WiFi scanning needs DBus on your platform, remove --disable-dbus or use --disable-necko-wifi])
8156   fi
8157   AC_DEFINE(NECKO_WIFI)
8158   _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_WIFI"
8160 AC_SUBST(NECKO_WIFI)
8161 AC_SUBST(NECKO_WIFI_DBUS)
8164 dnl option to disable cookies
8166 MOZ_ARG_DISABLE_BOOL(cookies,
8167 [  --disable-cookies       Disable cookie support],
8168     NECKO_COOKIES=,
8169     NECKO_COOKIES=1)
8170 AC_SUBST(NECKO_COOKIES)
8171 if test "$NECKO_COOKIES"; then
8172     AC_DEFINE(NECKO_COOKIES)
8173     _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_COOKIES"
8177 dnl Build jsctypes on the platforms we can, unless it's explicitly disabled.
8179 MOZ_ARG_DISABLE_BOOL(ctypes,
8180 [  --disable-ctypes        Disable js-ctypes],
8181     BUILD_CTYPES=,
8182     BUILD_CTYPES=1)
8183 AC_SUBST(BUILD_CTYPES)
8184 if test "$BUILD_CTYPES"; then
8185     AC_DEFINE(BUILD_CTYPES)
8188 dnl Build Places if required
8189 if test "$MOZ_PLACES"; then
8190   AC_DEFINE(MOZ_PLACES)
8193 dnl Build SocialAPI if required
8194 if test "$MOZ_SOCIAL"; then
8195   AC_DEFINE(MOZ_SOCIAL)
8198 dnl Build Common JS modules provided by services.
8199 AC_SUBST(MOZ_SERVICES_COMMON)
8200 if test -n "$MOZ_SERVICES_COMMON"; then
8201   AC_DEFINE(MOZ_SERVICES_COMMON)
8204 dnl Build Services crypto component (used by Sync)
8205 AC_SUBST(MOZ_SERVICES_CRYPTO)
8206 if test -n "$MOZ_SERVICES_CRYPTO"; then
8207   AC_DEFINE(MOZ_SERVICES_CRYPTO)
8210 dnl Build Firefox Health Reporter Service
8211 AC_SUBST(MOZ_SERVICES_HEALTHREPORT)
8212 if test -n "$MOZ_SERVICES_HEALTHREPORT"; then
8213   AC_DEFINE(MOZ_SERVICES_HEALTHREPORT)
8216 dnl Build Services metrics component
8217 AC_SUBST(MOZ_SERVICES_METRICS)
8218 if test -n "$MOZ_SERVICES_METRICS"; then
8219   AC_DEFINE(MOZ_SERVICES_METRICS)
8222 dnl Build Notifications if required
8223 AC_SUBST(MOZ_SERVICES_NOTIFICATIONS)
8224 if test -n "$MOZ_SERVICES_NOTIFICATIONS"; then
8225   AC_DEFINE(MOZ_SERVICES_NOTIFICATIONS)
8228 dnl Build Sync Services if required
8229 AC_SUBST(MOZ_SERVICES_SYNC)
8230 if test -n "$MOZ_SERVICES_SYNC"; then
8231   AC_DEFINE(MOZ_SERVICES_SYNC)
8234 dnl Build Captive Portal Detector if required
8235 AC_SUBST(MOZ_CAPTIVEDETECT)
8236 if test -n "$MOZ_CAPTIVEDETECT"; then
8237   AC_DEFINE(MOZ_CAPTIVEDETECT)
8240 dnl ========================================================
8241 if test "$MOZ_DEBUG" -o "$NS_TRACE_MALLOC" -o "$MOZ_DMD"; then
8242     MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS=
8245 if test "$MOZ_APP_COMPONENT_INCLUDE"; then
8246   AC_DEFINE_UNQUOTED(MOZ_APP_COMPONENT_INCLUDE, "$MOZ_APP_COMPONENT_INCLUDE")
8249 if test "$MOZ_APP_COMPONENT_MODULES"; then
8250   AC_DEFINE_UNQUOTED(MOZ_APP_COMPONENT_MODULES, $MOZ_APP_COMPONENT_MODULES)
8253 dnl ========================================================
8254 dnl =
8255 dnl = Maintainer debug option (no --enable equivalent)
8256 dnl =
8257 dnl ========================================================
8259 AC_SUBST(AR)
8260 AC_SUBST(AR_FLAGS)
8261 AC_SUBST(AR_LIST)
8262 AC_SUBST(AR_EXTRACT)
8263 AC_SUBST(AR_DELETE)
8264 AC_SUBST(AS)
8265 AC_SUBST(ASFLAGS)
8266 AC_SUBST(AS_DASH_C_FLAG)
8267 AC_SUBST(LD)
8268 AC_SUBST(RC)
8269 AC_SUBST(RCFLAGS)
8270 AC_SUBST(MC)
8271 AC_SUBST(WINDRES)
8272 AC_SUBST(IMPLIB)
8273 AC_SUBST(FILTER)
8274 AC_SUBST(BIN_FLAGS)
8275 AC_SUBST(MOZ_WIDGET_TOOLKIT)
8276 AC_SUBST(MOZ_UPDATE_XTERM)
8277 AC_SUBST(MOZ_AUTH_EXTENSION)
8278 AC_SUBST(MOZ_PERMISSIONS)
8279 AC_SUBST(MOZ_PREF_EXTENSIONS)
8280 AC_SUBST(MOZ_JS_LIBS)
8281 AC_SUBST(MOZ_DEBUG)
8282 AC_SUBST(MOZ_DEBUG_SYMBOLS)
8283 AC_SUBST(MOZ_DEBUG_ENABLE_DEFS)
8284 AC_SUBST(MOZ_DEBUG_DISABLE_DEFS)
8285 AC_SUBST(MOZ_DEBUG_FLAGS)
8286 AC_SUBST(MOZ_DEBUG_LDFLAGS)
8287 AC_SUBST(WARNINGS_AS_ERRORS)
8288 AC_SUBST(MOZ_EXTENSIONS)
8289 AC_SUBST(MOZ_JSDEBUGGER)
8290 AC_SUBST(MOZ_ENABLE_PROFILER_SPS)
8291 AC_SUBST(MOZ_JPROF)
8292 AC_SUBST(MOZ_SHARK)
8293 AC_SUBST(MOZ_INSTRUMENTS)
8294 AC_SUBST(MOZ_CALLGRIND)
8295 AC_SUBST(MOZ_VTUNE)
8296 AC_SUBST(MOZ_PROFILING)
8297 AC_SUBST(LIBICONV)
8298 AC_SUBST(MOZ_PLACES)
8299 AC_SUBST(MOZ_SOCIAL)
8300 AC_SUBST(MOZ_TOOLKIT_SEARCH)
8301 AC_SUBST(MOZ_FEEDS)
8302 AC_SUBST(NS_PRINTING)
8303 AC_SUBST(MOZ_WEBGL)
8304 AC_SUBST(MOZ_HELP_VIEWER)
8305 AC_SUBST(TOOLCHAIN_PREFIX)
8307 AC_SUBST(JAVA)
8308 AC_SUBST(JAVAC)
8309 AC_SUBST(JAVAH)
8310 AC_SUBST(JAR)
8311 AC_SUBST(JARSIGNER)
8312 AC_SUBST(KEYTOOL)
8314 AC_SUBST(MOZ_PROFILELOCKING)
8316 AC_SUBST(ENABLE_TESTS)
8317 AC_SUBST(ENABLE_MARIONETTE)
8318 AC_SUBST(IBMBIDI)
8319 AC_SUBST(MOZ_UNIVERSALCHARDET)
8320 AC_SUBST(ACCESSIBILITY)
8321 AC_SUBST(MOZ_SPELLCHECK)
8322 AC_SUBST(MOZ_ANDROID_OMTC)
8323 AC_SUBST(MOZ_ANDROID_ANR_REPORTER)
8324 AC_SUBST(MOZ_CRASHREPORTER)
8325 AC_SUBST(MOZ_CRASHREPORTER_INJECTOR)
8326 AC_SUBST(MOZ_CRASHREPORTER_UPLOAD_FULL_SYMBOLS)
8327 AC_SUBST(MOZ_MAINTENANCE_SERVICE)
8328 AC_SUBST(MOZ_STUB_INSTALLER)
8329 AC_SUBST(MOZ_VERIFY_MAR_SIGNATURE)
8330 AC_SUBST(MOZ_ENABLE_SIGNMAR)
8331 AC_SUBST(MOZ_UPDATER)
8332 AC_SUBST(MOZ_ANGLE_RENDERER)
8333 AC_SUBST(MOZ_DIRECTX_SDK_PATH)
8334 AC_SUBST(MOZ_DIRECTX_SDK_CPU_SUFFIX)
8335 AC_SUBST(MOZ_D3DX9_VERSION)
8336 AC_SUBST(MOZ_D3DCOMPILER_CAB)
8337 AC_SUBST(MOZ_D3DCOMPILER_DLL)
8338 AC_SUBST(MOZ_METRO)
8340 AC_SUBST(MOZ_ANDROID_HISTORY)
8341 AC_SUBST(MOZ_WEBSMS_BACKEND)
8342 AC_SUBST(MOZ_ANDROID_BEAM)
8343 AC_SUBST(MOZ_DISABLE_GECKOVIEW)
8344 AC_SUBST(ENABLE_STRIP)
8345 AC_SUBST(PKG_SKIP_STRIP)
8346 AC_SUBST(STRIP_FLAGS)
8347 AC_SUBST(USE_ELF_DYNSTR_GC)
8348 AC_SUBST(USE_ELF_HACK)
8349 AC_SUBST(INCREMENTAL_LINKER)
8350 AC_SUBST(MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS)
8351 AC_SUBST(MOZ_COMPONENT_NSPR_LIBS)
8353 AC_SUBST(MOZ_FIX_LINK_PATHS)
8354 AC_SUBST(XPCOM_LIBS)
8355 AC_SUBST(XPCOM_FROZEN_LDOPTS)
8356 AC_SUBST(XPCOM_GLUE_LDOPTS)
8357 AC_SUBST(XPCOM_STANDALONE_GLUE_LDOPTS)
8358 AC_SUBST(XPCOM_STATICRUNTIME_GLUE_LDOPTS)
8359 AC_SUBST(XPCOM_STANDALONE_STATICRUNTIME_GLUE_LDOPTS)
8361 AC_SUBST(USE_DEPENDENT_LIBS)
8363 AC_SUBST(MOZ_BUILD_ROOT)
8364 AC_SUBST(MOZ_OS2_TOOLS)
8366 AC_SUBST(MOZ_POST_DSO_LIB_COMMAND)
8367 AC_SUBST(MOZ_POST_PROGRAM_COMMAND)
8368 AC_SUBST(MOZ_LINKER_EXTRACT)
8370 AC_SUBST(MOZ_JSDOWNLOADS)
8371 if test -n "$MOZ_JSDOWNLOADS"; then
8372   AC_DEFINE(MOZ_JSDOWNLOADS)
8375 dnl ========================================================
8376 dnl = Mac bundle name prefix
8377 dnl ========================================================
8378 MOZ_ARG_WITH_STRING(macbundlename-prefix,
8379 [  --with-macbundlename-prefix=prefix
8380                           Prefix for MOZ_MACBUNDLE_NAME],
8381 [ MOZ_MACBUNDLE_NAME_PREFIX="$withval"])
8383 MOZ_MACBUNDLE_NAME=`echo $MOZ_APP_DISPLAYNAME | tr -d ' '`
8384 if test "$MOZ_MACBUNDLE_NAME_PREFIX"; then
8385   MOZ_MACBUNDLE_NAME="${MOZ_MACBUNDLE_NAME_PREFIX}${MOZ_MACBUNDLE_NAME}"
8388 if test "$MOZ_DEBUG"; then
8389   MOZ_MACBUNDLE_NAME=${MOZ_MACBUNDLE_NAME}Debug.app
8390 else
8391   MOZ_MACBUNDLE_NAME=${MOZ_MACBUNDLE_NAME}.app
8393 AC_SUBST(MOZ_MACBUNDLE_NAME)
8395 dnl Mac bundle identifier (based on MOZ_APP_DISPLAYNAME)
8396 MOZ_MACBUNDLE_ID=`echo $MOZ_APP_DISPLAYNAME | tr '[A-Z]' '[a-z]'`
8397 MOZ_MACBUNDLE_ID=${MOZ_DISTRIBUTION_ID}.${MOZ_MACBUNDLE_ID}
8398 if test "$MOZ_DEBUG"; then
8399   MOZ_MACBUNDLE_ID=${MOZ_MACBUNDLE_ID}debug
8402 AC_DEFINE_UNQUOTED(MOZ_MACBUNDLE_ID,$MOZ_MACBUNDLE_ID)
8403 AC_SUBST(MOZ_MACBUNDLE_ID)
8405 dnl ========================================================
8406 dnl = Child Process Name for IPC
8407 dnl ========================================================
8408 if test "$MOZ_WIDGET_TOOLKIT" != "android"; then
8409   MOZ_CHILD_PROCESS_NAME="plugin-container${BIN_SUFFIX}"
8410 else
8411   # We want to let Android unpack the file at install time, but it only does
8412   # so if the file is named libsomething.so. The lib/ path is also required
8413   # because the unpacked file will be under the lib/ subdirectory and will
8414   # need to be executed from that path.
8415   MOZ_CHILD_PROCESS_NAME="lib/libplugin-container.so"
8417 MOZ_CHILD_PROCESS_BUNDLE="plugin-container.app/Contents/MacOS/"
8419 AC_SUBST(MOZ_CHILD_PROCESS_NAME)
8420 AC_SUBST(MOZ_CHILD_PROCESS_BUNDLE)
8422 # The following variables are available to branding and application
8423 # configuration ($BRANDING/configure.sh and $APPLICATION/confvars.sh):
8424 # - MOZ_APP_VENDOR: Used for application.ini's "Vendor" field, which also
8425 # impacts profile location and user-visible fields.
8426 # - MOZ_APP_BASENAME: Typically stays consistent for multiple branded
8427 # versions of a given application (e.g. Aurora and Firefox both use
8428 # "Firefox"), but may vary for full rebrandings (e.g. Iceweasel). Used
8429 # for application.ini's "Name" field, which controls profile location in
8430 # the absence of a "Profile" field (see below), and various system
8431 # integration hooks (Unix remoting, Windows MessageWindow name, etc.)
8432 # - MOZ_APP_DISPLAYNAME: Used in user-visible fields (DLL properties,
8433 # Mac Bundle name, Updater, Installer), it is typically used for nightly
8434 # builds (e.g. Aurora for Firefox).
8435 # - MOZ_APP_VERSION: Defines the application version number.
8436 # - MOZ_APP_NAME: Used for e.g. the binary program file name. If not set,
8437 # defaults to a lowercase form of MOZ_APP_BASENAME.
8438 # - MOZ_APP_PROFILE: When set, used for application.ini's
8439 # "Profile" field, which controls profile location.
8440 # - MOZ_APP_ID: When set, used for application.ini's "ID" field, and
8441 # crash reporter server url.
8442 # - MOZ_PROFILE_MIGRATOR: When set, enables profile migrator.
8443 # - MOZ_EXTENSION_MANAGER: When set, enabled extension manager.
8445 if test -z "$MOZ_APP_NAME"; then
8446    MOZ_APP_NAME=`echo $MOZ_APP_BASENAME | tr A-Z a-z`
8449 # For extensions and langpacks, we require a max version that is compatible
8450 # across security releases. MOZ_APP_MAXVERSION is our method for doing that.
8451 # 10.0a1 and 10.0a2 aren't affected
8452 # 10.0 becomes 10.0.*
8453 # 10.0.1 becomes 10.0.*
8454 IS_ALPHA=`echo $MOZ_APP_VERSION | grep a`
8455 if test -z "$IS_ALPHA"; then
8456   changequote(,)
8457   MOZ_APP_MAXVERSION=`echo $MOZ_APP_VERSION | sed "s|\(^[0-9]*.[0-9]*\).*|\1|"`.*
8458   changequote([,])
8459 else
8460   MOZ_APP_MAXVERSION=$MOZ_APP_VERSION
8463 MOZ_B2G_VERSION=${MOZ_B2G_VERSION:-"1.0.0"}
8464 AC_DEFINE_UNQUOTED(MOZ_B2G_VERSION,"$MOZ_B2G_VERSION")
8465 AC_DEFINE_UNQUOTED(MOZ_B2G_OS_NAME,"$MOZ_B2G_OS_NAME")
8467 AC_SUBST(MOZ_APP_NAME)
8468 AC_SUBST(MOZ_APP_DISPLAYNAME)
8469 AC_SUBST(MOZ_APP_BASENAME)
8470 AC_SUBST(MOZ_APP_VENDOR)
8471 AC_SUBST(MOZ_APP_PROFILE)
8472 AC_SUBST(MOZ_APP_ID)
8473 AC_SUBST(MAR_CHANNEL_ID)
8474 AC_SUBST(ACCEPTED_MAR_CHANNEL_IDS)
8475 AC_SUBST(MOZ_PROFILE_MIGRATOR)
8476 AC_SUBST(MOZ_EXTENSION_MANAGER)
8477 AC_DEFINE_UNQUOTED(MOZ_APP_UA_NAME, "$MOZ_APP_UA_NAME")
8478 AC_SUBST(MOZ_APP_UA_NAME)
8479 AC_DEFINE_UNQUOTED(MOZ_APP_UA_VERSION, "$MOZ_APP_VERSION")
8480 AC_SUBST(MOZ_APP_VERSION)
8481 AC_SUBST(MOZ_APP_MAXVERSION)
8482 AC_DEFINE_UNQUOTED(FIREFOX_VERSION,$FIREFOX_VERSION)
8483 AC_SUBST(FIREFOX_VERSION)
8484 AC_SUBST(MOZ_UA_OS_AGNOSTIC)
8485 if test -n "$MOZ_UA_OS_AGNOSTIC"; then
8486   AC_DEFINE(MOZ_UA_OS_AGNOSTIC)
8489 AC_SUBST(MOZ_APP_STATIC_INI)
8491 AC_SUBST(MOZ_PKG_SPECIAL)
8493 AC_SUBST(MOZILLA_OFFICIAL)
8495 AC_DEFINE_UNQUOTED(MOZ_TELEMETRY_DISPLAY_REV, 2)
8496 AC_SUBST(MOZ_TELEMETRY_DISPLAY_REV)
8498 if test "$MOZ_TELEMETRY_REPORTING"; then
8499     AC_DEFINE(MOZ_TELEMETRY_REPORTING)
8501     # Enable Telemetry by default for nightly and aurora channels
8502     if test -z "$RELEASE_BUILD"; then
8503       AC_DEFINE(MOZ_TELEMETRY_ON_BY_DEFAULT)
8504     fi
8507 dnl If we have any service that uploads data (and requires data submission
8508 dnl policy alert), set MOZ_DATA_REPORTING.
8509 dnl We need SUBST for build system and DEFINE for xul preprocessor.
8510 if test -n "$MOZ_TELEMETRY_REPORTING" || test -n "$MOZ_SERVICES_HEALTHREPORT" || test -n "$MOZ_CRASHREPORTER"; then
8511   MOZ_DATA_REPORTING=1
8512   AC_DEFINE(MOZ_DATA_REPORTING)
8513   AC_SUBST(MOZ_DATA_REPORTING)
8516 dnl win32 options
8517 AC_SUBST(MOZ_BROWSE_INFO)
8518 AC_SUBST(MOZ_TOOLS_DIR)
8519 AC_SUBST(WIN32_REDIST_DIR)
8520 AC_SUBST(MAKENSISU)
8522 dnl Echo the CFLAGS to remove extra whitespace.
8523 CFLAGS=`echo \
8524         $_WARNINGS_CFLAGS \
8525         $CFLAGS`
8527 CXXFLAGS=`echo \
8528         $_WARNINGS_CXXFLAGS \
8529         $CXXFLAGS`
8531 COMPILE_CFLAGS=`echo \
8532     $_DEFINES_CFLAGS \
8533         $_DEPEND_CFLAGS \
8534     $COMPILE_CFLAGS`
8536 COMPILE_CXXFLAGS=`echo \
8537     $_DEFINES_CXXFLAGS \
8538         $_DEPEND_CFLAGS \
8539     $COMPILE_CXXFLAGS`
8541 HOST_CFLAGS=`echo \
8542     $HOST_CFLAGS \
8543     $_DEPEND_CFLAGS`
8545 HOST_CXXFLAGS=`echo \
8546     $HOST_CXXFLAGS \
8547     $_DEPEND_CFLAGS`
8549 AC_SUBST(SYSTEM_LIBXUL)
8550 AC_SUBST(MOZ_NATIVE_JPEG)
8551 AC_SUBST(MOZ_NATIVE_PNG)
8552 AC_SUBST(MOZ_NATIVE_BZ2)
8554 AC_SUBST(MOZ_JPEG_CFLAGS)
8555 AC_SUBST(MOZ_JPEG_LIBS)
8556 AC_SUBST(MOZ_BZ2_CFLAGS)
8557 AC_SUBST(MOZ_BZ2_LIBS)
8558 AC_SUBST(MOZ_PNG_CFLAGS)
8559 AC_SUBST(MOZ_PNG_LIBS)
8561 if test "$MOZ_WIDGET_TOOLKIT" = gonk -a -n "$MOZ_NUWA_PROCESS"; then
8562     export MOZ_NUWA_PROCESS
8563     AC_DEFINE(MOZ_NUWA_PROCESS)
8565 AC_SUBST(MOZ_NUWA_PROCESS)
8567 AC_SUBST(NSPR_CFLAGS)
8568 AC_SUBST(NSPR_LIBS)
8569 AC_SUBST(MOZ_NATIVE_NSPR)
8571 AC_SUBST(NSS_CFLAGS)
8572 AC_SUBST(NSS_LIBS)
8573 AC_SUBST(MOZ_NATIVE_NSS)
8574 AC_SUBST(NSS_DISABLE_DBM)
8576 OS_CFLAGS="$CFLAGS"
8577 OS_CXXFLAGS="$CXXFLAGS"
8578 OS_CPPFLAGS="$CPPFLAGS"
8579 OS_COMPILE_CFLAGS="$COMPILE_CFLAGS"
8580 OS_COMPILE_CXXFLAGS="$COMPILE_CXXFLAGS"
8581 OS_LDFLAGS="$LDFLAGS"
8582 OS_LIBS="$LIBS"
8583 AC_SUBST(OS_CFLAGS)
8584 AC_SUBST(OS_CXXFLAGS)
8585 AC_SUBST(OS_CPPFLAGS)
8586 AC_SUBST(OS_COMPILE_CFLAGS)
8587 AC_SUBST(OS_COMPILE_CXXFLAGS)
8588 AC_SUBST(OS_LDFLAGS)
8589 AC_SUBST(OS_LIBS)
8590 AC_SUBST(CROSS_COMPILE)
8591 AC_SUBST(WCHAR_CFLAGS)
8593 AC_SUBST(HOST_CC)
8594 AC_SUBST(HOST_CXX)
8595 AC_SUBST(HOST_CFLAGS)
8596 AC_SUBST(HOST_CXXFLAGS)
8597 AC_SUBST(HOST_LDFLAGS)
8598 AC_SUBST(HOST_OPTIMIZE_FLAGS)
8599 AC_SUBST(HOST_AR)
8600 AC_SUBST(HOST_AR_FLAGS)
8601 AC_SUBST(HOST_LD)
8602 AC_SUBST(HOST_RANLIB)
8603 AC_SUBST(HOST_NSPR_MDCPUCFG)
8604 AC_SUBST(HOST_BIN_SUFFIX)
8605 AC_SUBST(HOST_OS_ARCH)
8607 AC_SUBST(TARGET_CPU)
8608 AC_SUBST(TARGET_VENDOR)
8609 AC_SUBST(TARGET_OS)
8610 AC_SUBST(TARGET_NSPR_MDCPUCFG)
8611 AC_SUBST(TARGET_MD_ARCH)
8612 AC_SUBST(TARGET_XPCOM_ABI)
8613 AC_SUBST(OS_TARGET)
8614 AC_SUBST(OS_ARCH)
8615 AC_SUBST(OS_RELEASE)
8616 AC_SUBST(OS_TEST)
8617 AC_SUBST(CPU_ARCH)
8618 AC_SUBST(INTEL_ARCHITECTURE)
8619 AC_SUBST(HAVE_TOOLCHAIN_SUPPORT_MSSSE3)
8620 AC_SUBST(HAVE_TOOLCHAIN_SUPPORT_MSSE4_1)
8622 AC_SUBST(MOZ_CHROME_FILE_FORMAT)
8624 AC_SUBST(WRAP_LDFLAGS)
8625 AC_SUBST(MKSHLIB)
8626 AC_SUBST(MKCSHLIB)
8627 AC_SUBST(MKSHLIB_FORCE_ALL)
8628 AC_SUBST(MKSHLIB_UNFORCE_ALL)
8629 AC_SUBST(DSO_CFLAGS)
8630 AC_SUBST(DSO_PIC_CFLAGS)
8631 AC_SUBST(DSO_LDOPTS)
8632 AC_SUBST(LIB_PREFIX)
8633 AC_SUBST(DLL_PREFIX)
8634 AC_SUBST(DLL_SUFFIX)
8635 AC_DEFINE_UNQUOTED(MOZ_DLL_SUFFIX, "$DLL_SUFFIX")
8636 AC_SUBST(LIB_SUFFIX)
8637 AC_SUBST(OBJ_SUFFIX)
8638 AC_SUBST(BIN_SUFFIX)
8639 AC_SUBST(ASM_SUFFIX)
8640 AC_SUBST(IMPORT_LIB_SUFFIX)
8641 AC_SUBST(USE_N32)
8642 AC_SUBST(CC_VERSION)
8643 AC_SUBST(CXX_VERSION)
8644 AC_SUBST(MSMANIFEST_TOOL)
8645 AC_SUBST(NS_ENABLE_TSF)
8646 AC_SUBST(MOZ_NSS_PATCH)
8647 AC_SUBST(MOZ_APP_COMPONENT_LIBS)
8648 AC_SUBST(MOZ_APP_EXTRA_LIBS)
8650 AC_SUBST(MOZ_SPEEX_RESAMPLER)
8651 AC_SUBST(MOZ_SOUNDTOUCH)
8652 AC_SUBST(MOZ_CUBEB)
8653 AC_SUBST(MOZ_WAVE)
8654 AC_SUBST(MOZ_VORBIS)
8655 AC_SUBST(MOZ_TREMOR)
8656 AC_SUBST(MOZ_OPUS)
8657 AC_SUBST(MOZ_WEBM)
8658 AC_SUBST(MOZ_WMF)
8659 AC_SUBST(MOZ_DIRECTSHOW)
8660 AC_SUBST(MOZ_MEDIA_PLUGINS)
8661 AC_SUBST(MOZ_APPLEMEDIA)
8662 AC_SUBST(MOZ_OMX_PLUGIN)
8663 AC_SUBST(MOZ_VP8_ERROR_CONCEALMENT)
8664 AC_SUBST(MOZ_VP8_ENCODER)
8665 AC_SUBST(MOZ_VP8)
8666 AC_SUBST(MOZ_OGG)
8667 AC_SUBST(VPX_AS)
8668 AC_SUBST(VPX_ASFLAGS)
8669 AC_SUBST(VPX_DASH_C_FLAG)
8670 AC_SUBST(VPX_AS_CONVERSION)
8671 AC_SUBST(VPX_ASM_SUFFIX)
8672 AC_SUBST(VPX_X86_ASM)
8673 AC_SUBST(VPX_ARM_ASM)
8674 AC_SUBST(VPX_NEED_OBJ_INT_EXTRACT)
8675 AC_SUBST(MOZ_INSTRUMENT_EVENT_LOOP)
8676 AC_SUBST(LIBJPEG_TURBO_AS)
8677 AC_SUBST(LIBJPEG_TURBO_ASFLAGS)
8678 AC_SUBST(LIBJPEG_TURBO_X86_ASM)
8679 AC_SUBST(LIBJPEG_TURBO_X64_ASM)
8680 AC_SUBST(LIBJPEG_TURBO_ARM_ASM)
8682 AC_SUBST(MOZ_PACKAGE_JSSHELL)
8683 AC_SUBST(MOZ_FOLD_LIBS)
8685 AC_SUBST(MOZ_ENABLE_SZIP)
8686 AC_SUBST(MOZ_SZIP_FLAGS)
8688 if test -n "$COMPILE_ENVIRONMENT"; then
8689 AC_MSG_CHECKING([for posix_fallocate])
8690 AC_TRY_LINK([#define _XOPEN_SOURCE 600
8691   #include <fcntl.h>],
8692                  [posix_fallocate(0, 0, 0);],
8693                  [ac_cv___posix_fallocate=true],
8694                  [ac_cv___posix_fallocate=false])
8696 if test "$ac_cv___posix_fallocate" = true ; then
8697   AC_DEFINE(HAVE_POSIX_FALLOCATE)
8698   AC_MSG_RESULT(yes)
8699 else
8700   AC_MSG_RESULT(no)
8703 dnl Check for missing components
8704 if test "$MOZ_X11"; then
8705     if test "$WITHOUT_X11"; then
8706         AC_MSG_ERROR([--without-x specified and MOZ_X11 still defined])
8707     fi
8708     dnl ====================================================
8709     dnl = Check if X headers exist
8710     dnl ====================================================
8711     _SAVE_CFLAGS=$CFLAGS
8712     CFLAGS="$CFLAGS $XCFLAGS"
8713     AC_TRY_COMPILE([
8714         #include <stdio.h>
8715         #include <stdlib.h>
8716         #include <X11/Xlib.h>
8717         #include <X11/Intrinsic.h>
8718         #include <X11/extensions/XShm.h>
8719     ],
8720     [
8721         Display *dpy = 0;
8722         if ((dpy = XOpenDisplay(NULL)) == NULL) {
8723             fprintf(stderr, ": can't open %s\n", XDisplayName(NULL));
8724             exit(1);
8725         }
8726     ], [],
8727     [ AC_MSG_ERROR([Could not compile basic X program.]) ])
8728     CFLAGS="$_SAVE_CFLAGS"
8730     if test -n "$MISSING_X"; then
8731         AC_MSG_ERROR([ Could not find the following X libraries: $MISSING_X ]);
8732     fi
8734 fi # MOZ_X11
8736 fi # COMPILE_ENVIRONMENT
8738 dnl Set various defines and substitutions
8739 dnl ========================================================
8741 if test "$OS_ARCH" = "Darwin"; then
8742   AC_DEFINE(XP_UNIX)
8743 elif test "$OS_ARCH" != "WINNT" -a "$OS_ARCH" != "OS2"; then
8744   AC_DEFINE(XP_UNIX)
8747 if test "$MOZ_DEBUG"; then
8748     AC_DEFINE(MOZ_REFLOW_PERF)
8749     AC_DEFINE(MOZ_REFLOW_PERF_DSP)
8752 if test "$ACCESSIBILITY" -a "$MOZ_ENABLE_GTK" ; then
8753     AC_DEFINE(MOZ_ACCESSIBILITY_ATK)
8754     ATK_FULL_VERSION=`$PKG_CONFIG --modversion atk`
8755     ATK_MAJOR_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $1 }'`
8756     ATK_MINOR_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $2 }'`
8757     ATK_REV_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $3 }'`
8758     AC_DEFINE_UNQUOTED(ATK_MAJOR_VERSION, $ATK_MAJOR_VERSION)
8759     AC_DEFINE_UNQUOTED(ATK_MINOR_VERSION, $ATK_MINOR_VERSION)
8760     AC_DEFINE_UNQUOTED(ATK_REV_VERSION, $ATK_REV_VERSION)
8763 AC_SUBST(MOZILLA_VERSION)
8765 AC_SUBST(ac_configure_args)
8767 dnl Spit out some output
8768 dnl ========================================================
8770 dnl The following defines are used by xpcom
8771 _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES
8772 CPP_THROW_NEW
8773 HAVE_CPP_AMBIGUITY_RESOLVING_USING
8774 HAVE_CPP_DYNAMIC_CAST_TO_VOID_PTR
8775 HAVE_CPP_PARTIAL_SPECIALIZATION
8776 HAVE_CPP_TROUBLE_COMPARING_TO_ZERO
8777 NEED_CPP_UNUSED_IMPLEMENTATIONS
8778 HAVE_GETPAGESIZE
8779 HAVE_ICONV
8780 HAVE_ICONV_WITH_CONST_INPUT
8781 HAVE_MBRTOWC
8782 HAVE_WCRTOMB
8783 HAVE_STATVFS64
8784 HAVE_STATVFS
8785 HAVE_STATFS64
8786 HAVE_STATFS
8787 HAVE_SYS_STATVFS_H
8788 HAVE_SYS_STATFS_H
8789 HAVE_SYS_VFS_H
8790 HAVE_SYS_MOUNT_H
8793 AC_SUBST(STLPORT_LIBS)
8795 export WRITE_MOZINFO=1
8796 AC_OUTPUT()
8797 unset WRITE_MOZINFO
8799 # Hack around an Apple bug that affects the egrep that comes with OS X 10.7.
8800 # "env ARCHPREFERENCE=i386,x86_64 arch egrep" first tries to use the 32-bit
8801 # Intel part of the egrep fat binary, even on 64-bit systems, and falls back on
8802 # the 64-bit part if it's not a fat binary, as can happen with MacPorts. We
8803 # (apparently) only need this hack when egrep's "pattern" is particularly long
8804 # (as in the following code) and the first egrep on our $PATH is Apple's.  See
8805 # bug 655339.
8806 case "$host" in
8807 *-apple-darwin11*)
8808     FIXED_EGREP="env ARCHPREFERENCE=i386,x86_64 arch egrep"
8809     ;;
8811     FIXED_EGREP="egrep"
8812     ;;
8813 esac
8815 # Generate Makefiles for WebRTC directly from .gyp files
8816 if test "${OS_TARGET}" = "WINNT"; then
8817    if test "$HAVE_64BIT_OS"; then
8818       OS_BITS=64
8819    else
8820       OS_BITS=32
8821    fi
8822    EXTRA_GYP_DEFINES="-D MSVS_VERSION=${_MSVS_VERSION} -D MSVS_OS_BITS=${OS_BITS}"
8824 elif test "${OS_TARGET}" = "Android"; then
8825    if test "${MOZ_WIDGET_TOOLKIT}" = "gonk"; then
8826       EXTRA_GYP_DEFINES="-G os=linux "
8827    else
8828       EXTRA_GYP_DEFINES="-D gtest_target_type=executable -D android_toolchain=${android_toolchain} -G os=android "
8829    fi
8832 if test -n "$ARM_ARCH"; then
8833     if test "$ARM_ARCH" -lt 7; then
8834         EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=0 "
8835     else
8836         if test "${OS_TARGET}" = "Android"; then
8837             EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=1 "
8838         else
8839             dnl CPU detection for ARM works on Android only.  armv7 always uses CPU detection, so
8840             dnl we have to set armv7=0 for non-Android target
8841             EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=0 "
8842         fi
8843     fi
8846 # Keep libcubeb and audio_device backends in sync
8847 if test -n "$MOZ_ALSA"; then
8848    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_alsa_audio=1"
8849 else
8850    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_alsa_audio=0"
8852 if test -n "$MOZ_PULSEAUDIO"; then
8853    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_pulse_audio=1"
8854 else
8855    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_pulse_audio=0"
8858 # Don't try to compile ssse3/sse4.1 code if toolchain doesn't support
8859 if test -n "$INTEL_ARCHITECTURE"; then
8860   if test -z "$HAVE_TOOLCHAIN_SUPPORT_MSSSE3" -o -z "$HAVE_TOOLCHAIN_SUPPORT_MSSE4_1"; then
8861     EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D yuv_disable_asm=1"
8862   fi
8865 if test -n "$MOZ_WEBRTC"; then
8866    AC_MSG_RESULT("generating WebRTC Makefiles...")
8868    if test "${MOZ_WIDGET_TOOLKIT}" = "gonk"; then
8869       EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D build_with_gonk=1"
8870    fi
8872 dnl Any --include files must also appear in -D FORCED_INCLUDE_FILE= entries
8873 dnl so that regeneration via dependencies works correctly
8874    WEBRTC_CONFIG="-D build_with_mozilla=1 -D build_with_chromium=0 --include ${srcdir}/media/webrtc/webrtc_config.gypi -D FORCED_INCLUDE_FILE=${srcdir}/media/webrtc/webrtc_config.gypi"
8876    if test -n HAVE_CLOCK_MONOTONIC; then
8877       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_clock_monotonic=1"
8878    else
8879       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_clock_monotonic=0"
8880    fi
8882    if test -n "$MOZ_WEBRTC_HAVE_ETHTOOL_SPEED_HI"; then
8883       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_ethtool_cmd_speed_hi=1"
8884    else
8885       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_ethtool_cmd_speed_hi=0"
8886    fi
8888    if test -n "$CROSS_COMPILE"; then
8889       case "$target" in
8890       *-mingw*)
8891         GYP_MOZMAKE_OPTIONS="-G os=win"
8892         ;;
8893       *-darwin*)
8894         GYP_MOZMAKE_OPTIONS="-G os=mac"
8895         if test "$MACOS_SDK_DIR"; then
8896            GYP_MOZMAKE_OPTIONS="${GYP_MOZMAKE_OPTIONS} -D mac_sdk_path=$MACOS_SDK_DIR"
8897         fi
8898         ;;
8899       *-*linux*)
8900         GYP_MOZMAKE_OPTIONS="-G os=linux"
8901         ;;
8902       *)
8903         AC_MSG_ERROR([Don't know what options to give to WebRTC for cross-compilation])
8904         ;;
8905       esac
8906    fi
8908    GYP_WEBRTC_OPTIONS="--format=mozmake ${GYP_MOZMAKE_OPTIONS} ${WEBRTC_CONFIG} -D target_arch=${WEBRTC_TARGET_ARCH} ${EXTRA_GYP_DEFINES} --depth=${srcdir}/media/webrtc/trunk --toplevel-dir=${srcdir} -G OBJDIR=${_objdir}"
8910    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium \
8911      $GYP_WEBRTC_OPTIONS \
8912      --generator-output=${_objdir}/media/webrtc/trunk \
8913      ${srcdir}/media/webrtc/trunk/peerconnection.gyp
8914    if test "$?" != 0; then
8915       AC_MSG_ERROR([failed to generate WebRTC Makefiles])
8916    fi
8918    # XXX disable until we land the tranche with signaling
8919    if test -n "$MOZ_WEBRTC_SIGNALING"; then
8920      AC_MSG_RESULT("generating WebRTC/Signaling Makefiles...")
8921      $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium \
8922        $GYP_WEBRTC_OPTIONS \
8923        -D build_for_test=0 \
8924        --generator-output=${_objdir}/media/webrtc/signaling \
8925        ${srcdir}/media/webrtc/signaling/signaling.gyp
8926      if test "$?" != 0; then
8927         AC_MSG_ERROR([failed to generate WebRTC/Signaling Makefiles])
8928      fi
8930      AC_MSG_RESULT("generating WebRTC/SignalingTest Makefiles...")
8931      $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium --format=mozmake \
8932        $GYP_WEBRTC_OPTIONS \
8933        -D build_for_test=1 \
8934        --generator-output=${_objdir}/media/webrtc/signalingtest \
8935        ${srcdir}/media/webrtc/signaling/signaling.gyp
8936      if test "$?" != 0; then
8937        AC_MSG_ERROR([failed to generate WebRTC/SignalingTest Makefiles])
8938      fi
8939    fi
8941    AC_MSG_RESULT("generating gtest Makefiles...")
8942    # Ok to pass some extra -D's that are ignored here
8943    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium \
8944      $GYP_WEBRTC_OPTIONS \
8945      --generator-output=${_objdir}/media/webrtc/trunk/testing/ \
8946      ${srcdir}/media/webrtc/trunk/testing/gtest.gyp
8947    if test "$?" != 0; then
8948       AC_MSG_ERROR([failed to generate gtest Makefiles])
8949    fi
8951    AC_MSG_RESULT("generating nrappkit Makefiles...")
8952    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium --format=mozmake \
8953      $GYP_WEBRTC_OPTIONS \
8954      --generator-output=${_objdir}/media/mtransport/third_party/nrappkit \
8955      ${srcdir}/media/mtransport/third_party/nrappkit/nrappkit.gyp
8956    if test "$?" != 0; then
8957       AC_MSG_ERROR([failed to generate nrappkit Makefiles])
8958    fi
8960    AC_MSG_RESULT("generating nICEr Makefiles...")
8961    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium --format=mozmake \
8962      $GYP_WEBRTC_OPTIONS \
8963      --generator-output=${_objdir}/media/mtransport/third_party/nICEr \
8964      ${srcdir}/media/mtransport/third_party/nICEr/nicer.gyp
8965    if test "$?" != 0; then
8966       AC_MSG_ERROR([failed to generate nICEr Makefiles])
8967    fi
8970 # Run jemalloc configure script
8972 if test -z "$MOZ_NATIVE_JEMALLOC" -a "$MOZ_MEMORY" && test -n "$MOZ_JEMALLOC3" -o -n "$MOZ_REPLACE_MALLOC"; then
8973   ac_configure_args="$_SUBDIR_CONFIG_ARGS --build=$build --host=$target --enable-stats --with-jemalloc-prefix=je_"
8974   if test -n "$MOZ_REPLACE_MALLOC"; then
8975     # When using replace_malloc, we always want memalign and valloc exported from jemalloc.
8976     ac_configure_args="$ac_configure_args ac_cv_func_memalign=yes"
8977     ac_configure_args="$ac_configure_args ac_cv_func_valloc=yes"
8978   fi
8979   if test -n "$MOZ_JEMALLOC3"; then
8980     case "${OS_ARCH}" in
8981       WINNT|Darwin)
8982         # We want jemalloc functions to be kept hidden on both Mac and Windows
8983         # See memory/build/mozmemory_wrap.h for details.
8984         ac_configure_args="$ac_configure_args --without-export"
8985         ;;
8986     esac
8987   elif test "${OS_ARCH}" = Darwin; then
8988     # When building as a replace-malloc lib, disabling the zone allocator
8989     # forces to use pthread_atfork.
8990     ac_configure_args="$ac_configure_args --disable-zone-allocator"
8991   fi
8992   _MANGLE="malloc posix_memalign aligned_alloc calloc realloc free memalign valloc malloc_usable_size"
8993   JEMALLOC_WRAPPER=
8994   if test -z "$MOZ_REPLACE_MALLOC"; then
8995     case "$OS_ARCH" in
8996       Linux|DragonFly|FreeBSD|NetBSD|OpenBSD)
8997         MANGLE=$_MANGLE
8998         ;;
8999     esac
9000   elif test -z "$MOZ_JEMALLOC3"; then
9001     MANGLE=$_MANGLE
9002     JEMALLOC_WRAPPER=replace_
9003   fi
9004   if test -n "$MANGLE"; then
9005     MANGLED=
9006     if test -n "$_WRAP_MALLOC" -a -z "$JEMALLOC_WRAPPER"; then
9007       JEMALLOC_WRAPPER=__wrap_
9008     fi
9009     for mangle in ${MANGLE}; do
9010       if test -n "$MANGLED"; then
9011         MANGLED="$mangle:$JEMALLOC_WRAPPER$mangle,$MANGLED"
9012       else
9013         MANGLED="$mangle:$JEMALLOC_WRAPPER$mangle"
9014       fi
9015     done
9016     ac_configure_args="$ac_configure_args --with-mangling=$MANGLED"
9017   fi
9018   unset CONFIG_FILES
9019   if test -z "$MOZ_TLS"; then
9020     ac_configure_args="$ac_configure_args --disable-tls"
9021   fi
9022   EXTRA_CFLAGS="$CFLAGS"
9023   for var in AS CC CXX CPP LD AR RANLIB STRIP CPPFLAGS EXTRA_CFLAGS LDFLAGS; do
9024     ac_configure_args="$ac_configure_args $var='`eval echo \\${${var}}`'"
9025   done
9026   if test "$CROSS_COMPILE"; then
9027     ac_configure_args="$ac_configure_args je_cv_static_page_shift=12"
9028   fi
9029   _save_cache_file="$cache_file"
9030   cache_file=$_objdir/memory/jemalloc/src/config.cache
9032   if ! test -e memory/jemalloc; then
9033     mkdir -p memory/jemalloc
9034   fi
9036   AC_OUTPUT_SUBDIRS(memory/jemalloc/src)
9037   cache_file="$_save_cache_file"
9038   ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9041 # Run freetype configure script
9043 if test "$MOZ_TREE_FREETYPE"; then
9044    export CFLAGS="$CFLAGS $MOZ_DEBUG_FLAGS -std=c99"
9045    export CPPFLAGS="$CPPFLAGS $MOZ_DEBUG_FLAGS"
9046    export CXXFLAGS="$CXXFLAGS $MOZ_DEBUG_FLAGS"
9047    export LDFLAGS="$LDFLAGS $MOZ_DEBUG_LDFLAGS"
9048    export CONFIG_FILES="unix-cc.mk:unix-cc.in unix-def.mk:unix-def.in freetype-config freetype2.pc:freetype2.in"
9049    ac_configure_args="$ac_configure_args --host=$target --disable-shared --with-pic=yes --without-png"
9051    if ! test -e modules; then
9052      mkdir modules
9053    fi
9055    AC_OUTPUT_SUBDIRS(modules/freetype2)
9058 if test -z "$direct_nspr_config"; then
9059     dnl ========================================================
9060     dnl = Setup a nice relatively clean build environment for
9061     dnl = sub-configures.
9062     dnl ========================================================
9063     CC="$_SUBDIR_CC"
9064     CXX="$_SUBDIR_CXX"
9065     CFLAGS="$_SUBDIR_CFLAGS"
9066     CPPFLAGS="$_SUBDIR_CPPFLAGS"
9067     CXXFLAGS="$_SUBDIR_CXXFLAGS"
9068     LDFLAGS="$_SUBDIR_LDFLAGS"
9069     HOST_CC="$_SUBDIR_HOST_CC"
9070     HOST_CFLAGS="$_SUBDIR_HOST_CFLAGS"
9071     HOST_LDFLAGS="$_SUBDIR_HOST_LDFLAGS"
9072     RC=
9075 unset MAKEFILES
9076 unset CONFIG_FILES
9078 # Run all configure scripts specified by a subconfigure
9079 if test -n "$_subconfigure_subdir"; then
9080   _save_ac_configure_args="$ac_configure_args"
9081   ac_configure_args="$_subconfigure_config_args"
9082   AC_OUTPUT_SUBDIRS("$_subconfigure_subdir")
9083   ac_configure_args="$_save_ac_configure_args"
9086 # No need to run subconfigures when building with LIBXUL_SDK_DIR
9087 if test "$COMPILE_ENVIRONMENT" -a -z "$LIBXUL_SDK_DIR"; then
9089 export WRAP_LDFLAGS
9091 if test -n "$_WRAP_MALLOC"; then
9092     # Avoid doubling wrap malloc arguments
9093     _SUBDIR_CONFIG_ARGS="`echo $_SUBDIR_CONFIG_ARGS | sed -e 's/--enable-wrap-malloc *//'`"
9096 if test -z "$MOZ_NATIVE_NSPR"; then
9097     ac_configure_args="$_SUBDIR_CONFIG_ARGS --with-dist-prefix=$MOZ_BUILD_ROOT/dist --with-mozilla"
9098     if test -z "$MOZ_DEBUG"; then
9099         ac_configure_args="$ac_configure_args --disable-debug"
9100     else
9101         ac_configure_args="$ac_configure_args --enable-debug"
9102     fi
9103     if test "$MOZ_OPTIMIZE" = "1"; then
9104         ac_configure_args="$ac_configure_args --enable-optimize"
9105     elif test -z "$MOZ_OPTIMIZE"; then
9106         ac_configure_args="$ac_configure_args --disable-optimize"
9107     fi
9108     if test -n "$HAVE_64BIT_OS"; then
9109         ac_configure_args="$ac_configure_args --enable-64bit"
9110     fi
9111     if test -n "$USE_ARM_KUSER"; then
9112         ac_configure_args="$ac_configure_args --with-arm-kuser"
9113     fi
9114     ac_configure_args="$ac_configure_args $NSPR_CONFIGURE_ARGS"
9116     # Save these, so we can mess with them for the subconfigure ..
9117     _SAVE_CFLAGS="$CFLAGS"
9118     _SAVE_CPPFLAGS="$CPPFLAGS"
9119     _SAVE_LDFLAGS="$LDFLAGS"
9121     if test -n "$MOZ_LINKER" -a "$ac_cv_func_dladdr" = no ; then
9122       # dladdr is supported by the new linker, even when the system linker doesn't
9123       # support it. Trick nspr into using dladdr when it's not supported.
9124       export CPPFLAGS="-include $_topsrcdir/mozglue/linker/dladdr.h $CPPFLAGS"
9125     fi
9126     export LDFLAGS="$LDFLAGS $NSPR_LDFLAGS"
9127     export CFLAGS="$CFLAGS $MOZ_FRAMEPTR_FLAGS"
9129     AC_OUTPUT_SUBDIRS(nsprpub)
9131     # .. and restore them
9132     unset CFLAGS
9133     unset CPPFLAGS
9134     unset LDFLAGS
9135     CFLAGS="$_SAVE_CFLAGS"
9136     CPPFLAGS="$_SAVE_CPPFLAGS"
9137     LDFLAGS="$_SAVE_LDFLAGS"
9139     ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9142 dnl ========================================================
9143 dnl = Setup a nice relatively clean build environment for
9144 dnl = sub-configures.
9145 dnl ========================================================
9146 CC="$_SUBDIR_CC"
9147 CXX="$_SUBDIR_CXX"
9148 CFLAGS="$_SUBDIR_CFLAGS"
9149 CPPFLAGS="$_SUBDIR_CPPFLAGS"
9150 CXXFLAGS="$_SUBDIR_CXXFLAGS"
9151 LDFLAGS="$_SUBDIR_LDFLAGS"
9152 HOST_CC="$_SUBDIR_HOST_CC"
9153 HOST_CFLAGS="$_SUBDIR_HOST_CFLAGS"
9154 HOST_LDFLAGS="$_SUBDIR_HOST_LDFLAGS"
9157 if test -n "$ENABLE_CLANG_PLUGIN"; then
9158     ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9159     AC_OUTPUT_SUBDIRS(build/clang-plugin)
9163 # Run the SpiderMonkey 'configure' script.
9164 dist=$MOZ_BUILD_ROOT/dist
9165 ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9166 ac_configure_args="$ac_configure_args --enable-threadsafe"
9168 MOZ_ARG_WITH_STRING(intl-api,
9169 [  --with-intl-api, --with-intl-api=build, --without-intl-api
9170     Determine the status of the ECMAScript Internationalization API.  The first
9171     (or lack of any of these) builds and exposes the API.  The second builds it
9172     but doesn't use ICU or expose the API to script.  The third doesn't build
9173     ICU at all.],
9174     WITH_INTL="--with-intl-api=$withval"
9176 if test -z "$WITH_INTL"; then
9177 if test "$MOZ_BUILD_APP" = "browser"; then
9178     WITH_INTL="--with-intl-api"
9179 else
9180     # Internationalization isn't built or exposed by default in non-desktop
9181     # builds.  Bugs to enable:
9182     #
9183     #   Android:  bug 864843
9184     #   B2G:      bug 866301
9185     WITH_INTL="--without-intl-api"
9188 ac_configure_args="$ac_configure_args $WITH_INTL"
9190 if test "$BUILD_CTYPES"; then
9191     # Build js-ctypes on the platforms we can.
9192     ac_configure_args="$ac_configure_args --enable-ctypes"
9194 if test -z "$JS_SHARED_LIBRARY" ; then
9195     ac_configure_args="$ac_configure_args --disable-shared-js"
9196     if test -n "$MOZ_DISABLE_EXPORT_JS"; then
9197         ac_configure_args="$ac_configure_args --disable-export-js"
9198     fi
9200 if test -z "$MOZ_NATIVE_NSPR"; then
9201     ac_configure_args="$ac_configure_args --with-nspr-cflags='$NSPR_CFLAGS'"
9202     ac_configure_args="$ac_configure_args --with-nspr-libs='$NSPR_LIBS'"
9204 ac_configure_args="$ac_configure_args --with-dist-dir=../../dist"
9205 ac_configure_args="$ac_configure_args --prefix=$dist"
9206 if test "$MOZ_MEMORY"; then
9207    ac_configure_args="$ac_configure_args --enable-jemalloc"
9209 if test -n "$MOZ_GLUE_LDFLAGS"; then
9210    export MOZ_GLUE_LDFLAGS
9212 if test -n "$MOZ_GLUE_PROGRAM_LDFLAGS"; then
9213    export MOZ_GLUE_PROGRAM_LDFLAGS
9215 if test "$MOZ_NATIVE_ZLIB" != 1 -a "$OS_ARCH" = "WINNT"; then
9216    MOZ_ZLIB_LIBS=
9218 export MOZ_NATIVE_ZLIB
9219 export MOZ_ZLIB_CFLAGS
9220 export MOZ_ZLIB_LIBS
9221 export MOZ_APP_NAME
9222 export DONT_POPULATE_VIRTUALENV=1
9223 export PYTHON
9224 export MOZILLA_CENTRAL_PATH=$_topsrcdir
9225 export STLPORT_CPPFLAGS
9226 export STLPORT_LDFLAGS
9227 export STLPORT_LIBS
9228 export JS_STANDALONE=no
9229 export MOZ_LINKER
9231 if ! test -e js; then
9232     mkdir js
9235 AC_OUTPUT_SUBDIRS(js/src)
9236 ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9238 fi # COMPILE_ENVIRONMENT && !LIBXUL_SDK_DIR