Merge b2g-inbound to m-c.
[gecko.git] / configure.in
blob247ffd69b06be5884bdbd94e877f68ec34060e15
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 MOZ_ARG_WITH_STRING(macos-sdk,
812 [  --with-macos-sdk=dir    Location of platform SDK to use (Mac OS X only)],
813     MACOS_SDK_DIR=$withval)
815 MACOS_PRIVATE_FRAMEWORKS_DIR_DEFAULTED=
816 MOZ_ARG_WITH_STRING(macos-private-frameworks,
817 [  --with-macos-private-frameworks=dir    Location of private frameworks to use (Mac OS X only)],
818     MACOS_PRIVATE_FRAMEWORKS_DIR=$withval,
819     MACOS_PRIVATE_FRAMEWORKS_DIR=/System/Library/PrivateFrameworks
820     MACOS_PRIVATE_FRAMEWORKS_DEFAULTED=1)
822 if test -z "${MACOS_PRIVATE_FRAMEWORKS_DEFAULTED}"; then
823   if test -z "$CROSS_COMPILE"; then
824     AC_MSG_WARN([You should only be using --with-macos-private-frameworks when cross-compiling.])
825   fi
826   if test ! -d "$MACOS_PRIVATE_FRAMEWORKS_DIR"; then
827     AC_MSG_ERROR([PrivateFrameworks directory not found.])
828   fi
831 dnl MACOS_SDK_DIR will be set to the SDK location whenever one is in use.
832 AC_SUBST(MACOS_SDK_DIR)
833 AC_SUBST(MACOS_PRIVATE_FRAMEWORKS_DIR)
835 if test "$MACOS_SDK_DIR"; then
836   dnl Sync this section with the ones in NSPR and NSS.
837   dnl Changes to the cross environment here need to be accounted for in
838   dnl the libIDL checks (below) and xpidl build.
840   if test ! -d "$MACOS_SDK_DIR"; then
841     AC_MSG_ERROR([SDK not found.  When using --with-macos-sdk, you must
842 specify a valid SDK.  SDKs are installed when the optional cross-development
843 tools are selected during the Xcode/Developer Tools installation.])
844   fi
846   CFLAGS="$CFLAGS -isysroot ${MACOS_SDK_DIR}"
847   CXXFLAGS="$CXXFLAGS -isysroot ${MACOS_SDK_DIR}"
849   dnl CPP/CXXCPP needs to be set for MOZ_CHECK_HEADER.
850   CPP="$CPP -isysroot ${MACOS_SDK_DIR}"
851   CXXCPP="$CXXCPP -isysroot ${MACOS_SDK_DIR}"
853   AC_LANG_SAVE
854   AC_MSG_CHECKING([for valid compiler/Mac OS X SDK combination])
855   AC_LANG_CPLUSPLUS
856   AC_TRY_COMPILE([#include <new>],[],
857    result=yes,
858    result=no)
859   AC_LANG_RESTORE
860   AC_MSG_RESULT($result)
862   if test "$result" = "no" ; then
863     AC_MSG_ERROR([The selected compiler and Mac OS X SDK are incompatible.])
864   fi
867 fi # COMPILE_ENVIRONMENT
869 AC_MSG_CHECKING([compiler version])
870 # Just print it so it shows up in the logs.
871 cc_version=$($CC --version)
872 AC_MSG_RESULT([$cc_version])
874 if test -n "$MAKE"; then
875   if test `echo $MAKE | grep -c make.py` != 1; then
876      NOT_PYMAKE=$MAKE
877   fi
880 case "$host_os" in
881 mingw*)
882     MOZ_PATH_PROGS(GMAKE, $GMAKE $NOT_PYMAKE make gmake, :)
883     ;;
885     MOZ_PATH_PROGS(GMAKE, $GMAKE $NOT_PYMAKE gmake make, :)
886     ;;
887 esac
888 if test "$GMAKE" = ":"; then
889    AC_MSG_ERROR([GNU make not found])
891 AC_SUBST(GMAKE)
893 if test -z "$MAKE"; then
894   MAKE=$GMAKE
897 if test "$COMPILE_ENVIRONMENT"; then
899 AC_PATH_XTRA
901 XCFLAGS="$X_CFLAGS"
903 fi # COMPILE_ENVIRONMENT
905 dnl ========================================================
906 dnl set the defaults first
907 dnl ========================================================
908 AS_BIN=$AS
909 AR_LIST='$(AR) t'
910 AR_EXTRACT='$(AR) x'
911 AR_DELETE='$(AR) d'
912 AS='$(CC)'
913 AS_DASH_C_FLAG='-c'
914 DLL_PREFIX=lib
915 LIB_PREFIX=lib
916 DLL_SUFFIX=.so
917 OBJ_SUFFIX=o
918 LIB_SUFFIX=a
919 ASM_SUFFIX=s
920 IMPORT_LIB_SUFFIX=
921 TARGET_MD_ARCH=unix
922 DIRENT_INO=d_ino
923 MOZ_USER_DIR=".mozilla"
925 MOZ_JPEG_CFLAGS=
926 MOZ_JPEG_LIBS='$(call EXPAND_LIBNAME_PATH,mozjpeg,$(DEPTH)/media/libjpeg)'
927 MOZ_BZ2_CFLAGS=
928 MOZ_BZ2_LIBS='$(call EXPAND_LIBNAME_PATH,bz2,$(DEPTH)/modules/libbz2/src)'
929 MOZ_PNG_CFLAGS=
930 MOZ_PNG_LIBS='$(call EXPAND_LIBNAME_PATH,mozpng,$(DEPTH)/media/libpng)'
932 MOZ_JS_STATIC_LIBS='$(call EXPAND_LIBNAME_PATH,js_static,$(LIBXUL_DIST)/lib)'
933 MOZ_JS_SHARED_LIBS='$(call EXPAND_LIBNAME_PATH,mozjs,$(LIBXUL_DIST)/lib)'
934 MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib'
935 XPCOM_FROZEN_LDOPTS='$(call EXPAND_LIBNAME_PATH,xul mozalloc,$(LIBXUL_DIST)/bin)'
936 LIBXUL_LIBS='$(XPCOM_FROZEN_LDOPTS)'
937 XPCOM_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) $(XPCOM_FROZEN_LDOPTS)'
938 XPCOM_STANDALONE_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue.$(LIB_SUFFIX)'
940 # These are specially defined on Windows only
941 case "$target" in
942 *-mingw*)
943   XPCOM_STATICRUNTIME_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_staticruntime_s.$(LIB_SUFFIX) $(XPCOM_FROZEN_LDOPTS)'
944   XPCOM_STANDALONE_STATICRUNTIME_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_staticruntime.$(LIB_SUFFIX)'
945   ;;
947   XPCOM_STATICRUNTIME_GLUE_LDOPTS=$XPCOM_GLUE_LDOPTS
948   XPCOM_STANDALONE_STATICRUNTIME_GLUE_LDOPTS=$XPCOM_STANDALONE_GLUE_LDOPTS
949   ;;
950 esac
952 MOZ_FS_LAYOUT=unix
954 MOZ_COMPONENT_NSPR_LIBS='-L$(LIBXUL_DIST)/bin $(NSPR_LIBS)'
956 USE_DEPENDENT_LIBS=1
958 _PLATFORM_DEFAULT_TOOLKIT=cairo-gtk2
960 if test -n "$CROSS_COMPILE"; then
961     OS_TARGET="${target_os}"
962     OS_ARCH=`echo $target_os | sed -e 's|/|_|g'`
963     OS_RELEASE=
964     case "${target_os}" in
965         linux*)       OS_ARCH=Linux OS_TARGET=Linux ;;
966         kfreebsd*-gnu) OS_ARCH=GNU_kFreeBSD OS_TARGET=GNU_kFreeBSD ;;
967         gnu*)         OS_ARCH=GNU ;;
968         solaris*)     OS_ARCH=SunOS OS_RELEASE=5 ;;
969         mingw*)       OS_ARCH=WINNT OS_TARGET=WINNT ;;
970         darwin*)      OS_ARCH=Darwin OS_TARGET=Darwin ;;
971     esac
972     case "${target}" in
973         *-android*|*-linuxandroid*) OS_ARCH=Linux OS_TARGET=Android ;;
974     esac
975 else
976     OS_TARGET=`uname -s`
977     OS_ARCH=`uname -s | sed -e 's|/|_|g'`
978     OS_RELEASE=`uname -r`
981 # Before this used `uname -m` when not cross compiling
982 # but that breaks when you have a 64 bit kernel with a 32 bit userland.
983 OS_TEST="${target_cpu}"
985 HOST_OS_ARCH=`echo $host_os | sed -e 's|/|_|g'`
987 #######################################################################
988 # Master "Core Components" macros for getting the OS target           #
989 #######################################################################
992 # If OS_TARGET is not specified, it defaults to $(OS_ARCH), i.e., no
993 # cross-compilation.
997 # Define and override various archtecture-specific variables, including
998 # HOST_OS_ARCH
999 # OS_ARCH
1000 # OS_TEST
1001 # OS_TARGET
1002 # OS_RELEASE
1003 # OS_MINOR_RELEASE
1006 case "$HOST_OS_ARCH" in
1007 mingw*)
1008     HOST_OS_ARCH=WINNT
1009     ;;
1010 darwin*)
1011     HOST_OS_ARCH=Darwin
1012     ;;
1013 linux*)
1014     HOST_OS_ARCH=Linux
1015     ;;
1016 solaris*)
1017     HOST_OS_ARCH=SunOS
1018     SOLARIS_SUNPRO_CC=
1019     SOLARIS_SUNPRO_CXX=
1020     if test -z "$GNU_CC"; then
1021         if test "`$CC -V 2>&1 | egrep -c 'Sun.*C '`" != "0"; then
1022             SOLARIS_SUNPRO_CC=1
1023        fi
1024     fi
1026     if test -z "$GNU_CXX"; then
1027        if test "`$CXX -V 2>&1 | egrep -c 'Sun.*C\+\+ '`" != "0"; then
1028            SOLARIS_SUNPRO_CXX=1
1029        fi
1030     fi
1031     AC_SUBST(SOLARIS_SUNPRO_CC)
1032     AC_SUBST(SOLARIS_SUNPRO_CXX)
1033     ;;
1034 OS_2)
1035     HOST_OS_ARCH=OS2
1036     ;;
1037 esac
1039 case "$OS_ARCH" in
1040 WINNT)
1041     if test -z "$CROSS_COMPILE" ; then
1042         OS_TEST=`uname -p`
1043     fi
1044     ;;
1045 Windows_NT)
1047 # If uname -s returns "Windows_NT", we assume that we are using
1048 # the uname.exe in MKS toolkit.
1050 # The -r option of MKS uname only returns the major version number.
1051 # So we need to use its -v option to get the minor version number.
1052 # Moreover, it doesn't have the -p option, so we need to use uname -m.
1054     OS_ARCH=WINNT
1055     OS_TARGET=WINNT
1056     OS_MINOR_RELEASE=`uname -v`
1057     if test "$OS_MINOR_RELEASE" = "00"; then
1058         OS_MINOR_RELEASE=0
1059     fi
1060     OS_RELEASE="${OS_RELEASE}.${OS_MINOR_RELEASE}"
1061     ;;
1062 MINGW*_NT*)
1064 # If uname -s returns MINGW32_NT-5.1, we assume that we are using
1065 # the uname.exe in the MSYS tools.
1067     OS_RELEASE=`expr $OS_ARCH : '.*NT-\(.*\)'`
1068     OS_ARCH=WINNT
1069     OS_TARGET=WINNT
1070     ;;
1071 AIX)
1072     OS_RELEASE=`uname -v`.`uname -r`
1073     OS_TEST=${target_cpu}
1074     ;;
1075 OS_2)
1076     OS_ARCH=OS2
1077     OS_TARGET=OS2
1078     OS_RELEASE=`uname -v`
1079     ;;
1080 Darwin)
1081     case "${target_cpu}" in
1082     powerpc*)
1083         OS_TEST=ppc
1084         ;;
1085     i*86*)
1086         OS_TEST=i386
1087         ;;
1088     x86_64)
1089         OS_TEST=x86_64
1090         ;;
1091     *)
1092         if test -z "$CROSS_COMPILE" ; then
1093             OS_TEST=`uname -p`
1094         fi
1095         ;;
1096     esac
1097     ;;
1098 esac
1100 # Only set CPU_ARCH if we recognize the value of OS_TEST
1102 case "$OS_TEST" in
1103 *86 | i86pc)
1104     CPU_ARCH=x86
1105     ;;
1107 powerpc64 | ppc64)
1108     CPU_ARCH=ppc64
1109     ;;
1111 powerpc | ppc | rs6000)
1112     CPU_ARCH=ppc
1113     ;;
1115 Alpha | alpha | ALPHA)
1116     CPU_ARCH=Alpha
1117     ;;
1119 s390)
1120     CPU_ARCH=s390
1121     ;;
1123 s390x)
1124     CPU_ARCH=s390x
1125     ;;
1127 hppa* | parisc)
1128     CPU_ARCH=hppa
1129     ;;
1131 sun4u | sparc*)
1132     CPU_ARCH=sparc
1133     ;;
1135 x86_64 | ia64)
1136     CPU_ARCH="$OS_TEST"
1137     ;;
1139 arm*)
1140     CPU_ARCH=arm
1141     ;;
1143 mips|mipsel)
1144     CPU_ARCH="mips"
1145     ;;
1146 esac
1148 if test -z "$OS_TARGET"; then
1149     OS_TARGET=$OS_ARCH
1151 OS_CONFIG="${OS_TARGET}${OS_RELEASE}"
1153 dnl Set INTEL_ARCHITECTURE if we're compiling for x86-32 or x86-64.
1154 dnl ===============================================================
1155 INTEL_ARCHITECTURE=
1156 case "$OS_TEST" in
1157     x86_64|i?86)
1158       INTEL_ARCHITECTURE=1
1159 esac
1161 dnl Configure platform-specific CPU architecture compiler options.
1162 dnl ==============================================================
1163 MOZ_ARCH_OPTS
1165 dnl =================================================================
1166 dnl Set up and test static assertion macros used to avoid AC_TRY_RUN,
1167 dnl which is bad when cross compiling.
1168 dnl =================================================================
1169 if test "$COMPILE_ENVIRONMENT"; then
1170 configure_static_assert_macros='
1171 #define CONFIGURE_STATIC_ASSERT(condition) CONFIGURE_STATIC_ASSERT_IMPL(condition, __LINE__)
1172 #define CONFIGURE_STATIC_ASSERT_IMPL(condition, line) CONFIGURE_STATIC_ASSERT_IMPL2(condition, line)
1173 #define CONFIGURE_STATIC_ASSERT_IMPL2(condition, line) typedef int static_assert_line_##line[(condition) ? 1 : -1]
1176 dnl test that the macros actually work:
1177 AC_MSG_CHECKING(that static assertion macros used in autoconf tests work)
1178 AC_CACHE_VAL(ac_cv_static_assertion_macros_work,
1179  [AC_LANG_SAVE
1180   AC_LANG_C
1181   ac_cv_static_assertion_macros_work="yes"
1182   AC_TRY_COMPILE([$configure_static_assert_macros],
1183                  [CONFIGURE_STATIC_ASSERT(1)],
1184                  ,
1185                  ac_cv_static_assertion_macros_work="no")
1186   AC_TRY_COMPILE([$configure_static_assert_macros],
1187                  [CONFIGURE_STATIC_ASSERT(0)],
1188                  ac_cv_static_assertion_macros_work="no",
1189                  )
1190   AC_LANG_CPLUSPLUS
1191   AC_TRY_COMPILE([$configure_static_assert_macros],
1192                  [CONFIGURE_STATIC_ASSERT(1)],
1193                  ,
1194                  ac_cv_static_assertion_macros_work="no")
1195   AC_TRY_COMPILE([$configure_static_assert_macros],
1196                  [CONFIGURE_STATIC_ASSERT(0)],
1197                  ac_cv_static_assertion_macros_work="no",
1198                  )
1199   AC_LANG_RESTORE
1200  ])
1201 AC_MSG_RESULT("$ac_cv_static_assertion_macros_work")
1202 if test "$ac_cv_static_assertion_macros_work" = "no"; then
1203     AC_MSG_ERROR([Compiler cannot compile macros used in autoconf tests.])
1205 fi # COMPILE_ENVIRONMENT
1207 dnl ========================================================
1208 dnl Android libstdc++, placed here so it can use MOZ_ARCH
1209 dnl computed above.
1210 dnl ========================================================
1212 MOZ_ANDROID_STLPORT
1214 dnl ========================================================
1215 dnl Suppress Clang Argument Warnings
1216 dnl ========================================================
1217 if test -n "$CLANG_CC"; then
1218     _WARNINGS_CFLAGS="-Qunused-arguments ${_WARNINGS_CFLAGS}"
1219     CPPFLAGS="-Qunused-arguments ${CPPFLAGS}"
1221 if test -n "$CLANG_CXX"; then
1222     _WARNINGS_CXXFLAGS="-Qunused-arguments ${_WARNINGS_CXXFLAGS}"
1225 dnl ========================================================
1226 dnl = Use Address Sanitizer
1227 dnl ========================================================
1228 MOZ_ARG_ENABLE_BOOL(address-sanitizer,
1229 [  --enable-address-sanitizer       Enable Address Sanitizer (default=no)],
1230     MOZ_ASAN=1,
1231     MOZ_ASAN= )
1232 if test -n "$MOZ_ASAN"; then
1233     MOZ_LLVM_HACKS=1
1234     AC_DEFINE(MOZ_ASAN)
1235     MOZ_PATH_PROG(LLVM_SYMBOLIZER, llvm-symbolizer)
1237 AC_SUBST(MOZ_ASAN)
1238 AC_SUBST(LLVM_SYMBOLIZER)
1240 dnl ========================================================
1241 dnl = Enable hacks required for LLVM instrumentations
1242 dnl ========================================================
1243 MOZ_ARG_ENABLE_BOOL(llvm-hacks,
1244 [  --enable-llvm-hacks       Enable workarounds required for several LLVM instrumentations (default=no)],
1245     MOZ_LLVM_HACKS=1,
1246     MOZ_LLVM_HACKS= )
1247 if test -n "$MOZ_LLVM_HACKS"; then
1248     MOZ_NO_WLZDEFS=1
1249     MOZ_CFLAGS_NSS=1
1251 AC_SUBST(MOZ_NO_WLZDEFS)
1252 AC_SUBST(MOZ_CFLAGS_NSS)
1254 dnl ========================================================
1255 dnl GNU specific defaults
1256 dnl ========================================================
1257 if test "$GNU_CC"; then
1258     # Per bug 719659 comment 2, some of the headers on ancient build machines
1259     # may require gnu89 inline semantics.  But otherwise, we use C99.
1260     # But on OS X we just use C99 plus GNU extensions, in order to fix
1261     # bug 917526.
1262     CFLAGS="$CFLAGS -std=gnu99"
1263     if test "${OS_ARCH}" != Darwin; then
1264         CFLAGS="$CFLAGS -fgnu89-inline"
1265     fi
1266     # FIXME: Let us build with strict aliasing. bug 414641.
1267     CFLAGS="$CFLAGS -fno-strict-aliasing"
1268     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-h,$(notdir $@) -o $@'
1269     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-h,$(notdir $@) -o $@'
1270     DSO_LDOPTS='-shared'
1271     if test "$GCC_USE_GNU_LD"; then
1272         # Some tools like ASan use a runtime library that is only
1273         # linked against executables, so we must allow undefined
1274         # symbols for shared objects in some cases.
1275         if test -z "$MOZ_NO_WLZDEFS"; then
1276             # Don't allow undefined symbols in libraries
1277             DSO_LDOPTS="$DSO_LDOPTS -Wl,-z,defs"
1278         fi
1279     fi
1280     WARNINGS_AS_ERRORS='-Werror'
1281     DSO_CFLAGS=''
1282     DSO_PIC_CFLAGS='-fPIC'
1283     ASFLAGS="$ASFLAGS -fPIC"
1284     AC_MSG_CHECKING([for --noexecstack option to as])
1285     _SAVE_CFLAGS=$CFLAGS
1286     CFLAGS="$CFLAGS -Wa,--noexecstack"
1287     AC_TRY_COMPILE(,,AC_MSG_RESULT([yes])
1288                      [ASFLAGS="$ASFLAGS -Wa,--noexecstack"],
1289                      AC_MSG_RESULT([no]))
1290     CFLAGS=$_SAVE_CFLAGS
1291     AC_MSG_CHECKING([for -z noexecstack option to ld])
1292     _SAVE_LDFLAGS=$LDFLAGS
1293     LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"
1294     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
1295                   AC_MSG_RESULT([no])
1296                   LDFLAGS=$_SAVE_LDFLAGS)
1298     AC_MSG_CHECKING([for -z text option to ld])
1299     _SAVE_LDFLAGS=$LDFLAGS
1300     LDFLAGS="$LDFLAGS -Wl,-z,text"
1301     AC_TRY_LINK(,,AC_MSG_RESULT([yes])
1302                   [NSPR_LDFLAGS="$NSPR_LDFLAGS -Wl,-z,text"],
1303                   AC_MSG_RESULT([no])
1304                   LDFLAGS=$_SAVE_LDFLAGS)
1306     AC_MSG_CHECKING([for --build-id option to ld])
1307     _SAVE_LDFLAGS=$LDFLAGS
1308     LDFLAGS="$LDFLAGS -Wl,--build-id"
1309     AC_TRY_LINK(,,AC_MSG_RESULT([yes])
1310                   [NSPR_LDFLAGS="$NSPR_LDFLAGS -Wl,--build-id"],
1311                   AC_MSG_RESULT([no])
1312                   LDFLAGS=$_SAVE_LDFLAGS)
1315     # Check for -mssse3 on $CC
1316     AC_MSG_CHECKING([if toolchain supports -mssse3 option])
1317     HAVE_TOOLCHAIN_SUPPORT_MSSSE3=
1318     _SAVE_CFLAGS=$CFLAGS
1319     CFLAGS="$CFLAGS -mssse3"
1320     AC_TRY_COMPILE([asm ("pmaddubsw %xmm2,%xmm3");],,AC_MSG_RESULT([yes])
1321                      [HAVE_TOOLCHAIN_SUPPORT_MSSSE3=1],
1322                      AC_MSG_RESULT([no]))
1323     CFLAGS=$_SAVE_CFLAGS
1325     # Check for -msse4.1 on $CC
1326     AC_MSG_CHECKING([if toolchain supports -msse4.1 option])
1327     HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=
1328     _SAVE_CFLAGS=$CFLAGS
1329     CFLAGS="$CFLAGS -msse4.1"
1330     AC_TRY_COMPILE([asm ("pmulld %xmm6,%xmm0");],,AC_MSG_RESULT([yes])
1331                      [HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=1],
1332                      AC_MSG_RESULT([no]))
1333     CFLAGS=$_SAVE_CFLAGS
1335     # Turn on GNU-specific warnings:
1336     # -Wall - turn on a lot of warnings
1337     # -Wpointer-arith - good to have
1338     # -Wdeclaration-after-statement - MSVC doesn't like these
1339     # -Werror=return-type - catches missing returns, zero false positives
1340     # -Wtype-limits - catches overflow bugs, few false positives
1341     # -Wempty-body - catches bugs, e.g. "if (c); foo();", few false positives
1342     # -Wsign-compare - catches comparison of signed and unsigned types
1343     #
1344     _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wall -Wpointer-arith -Wdeclaration-after-statement"
1345     MOZ_C_SUPPORTS_WARNING(-W, error=return-type, ac_c_has_werror_return_type)
1346     MOZ_C_SUPPORTS_WARNING(-W, type-limits, ac_c_has_wtype_limits)
1347     MOZ_C_SUPPORTS_WARNING(-W, empty-body, ac_c_has_wempty_body)
1348     MOZ_C_SUPPORTS_WARNING(-W, sign-compare, ac_c_has_sign_compare)
1350     # Turn off the following warnings that -Wall turns on:
1351     # -Wno-unused - lots of violations in third-party code
1352     #
1353     _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wno-unused"
1355     if test -z "$INTEL_CC" -a -z "$CLANG_CC"; then
1356        # Don't use -Wcast-align with ICC or clang
1357        case "$CPU_ARCH" in
1358            # And don't use it on hppa, ia64, sparc, arm, since it's noisy there
1359            hppa | ia64 | sparc | arm)
1360            ;;
1361            *)
1362         _WARNINGS_CFLAGS="${_WARNINGS_CFLAGS} -Wcast-align"
1363            ;;
1364        esac
1365     fi
1367     _DEFINES_CFLAGS='-include $(DEPTH)/mozilla-config.h -DMOZILLA_CLIENT'
1368     _USE_CPP_INCLUDE_FLAG=1
1369     ASFLAGS="$ASFLAGS $_DEFINES_CFLAGS"
1371 elif test "$SOLARIS_SUNPRO_CC"; then
1372     DSO_CFLAGS=''
1373     if test "$CPU_ARCH" = "sparc"; then
1374         # for Sun Studio on Solaris/SPARC
1375         DSO_PIC_CFLAGS='-xcode=pic32'
1376     else
1377         DSO_PIC_CFLAGS='-KPIC'
1378     fi
1379     _DEFINES_CFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
1380 else
1381     MKSHLIB='$(LD) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
1382     MKCSHLIB='$(LD) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
1384     DSO_LDOPTS='-shared'
1385     if test "$GNU_LD"; then
1386         # Don't allow undefined symbols in libraries
1387         DSO_LDOPTS="$DSO_LDOPTS -z defs"
1388     fi
1390     DSO_CFLAGS=''
1391     DSO_PIC_CFLAGS='-KPIC'
1392     _DEFINES_CFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
1395 if test "$GNU_CXX"; then
1396     # FIXME: Let us build with strict aliasing. bug 414641.
1397     CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-strict-aliasing"
1399     # Turn on GNU-specific warnings:
1400     # -Wall - turn on a lot of warnings
1401     # -Wpointer-arith - good to have
1402     # -Woverloaded-virtual - ???
1403     # -Werror=return-type - catches missing returns, zero false positives
1404     # -Wtype-limits - catches overflow bugs, few false positives
1405     # -Wempty-body - catches bugs, e.g. "if (c); foo();", few false positives
1406     # -Wsign-compare - catches comparison of signed and unsigned types
1407     #
1408     _WARNINGS_CXXFLAGS="${_WARNINGS_CXXFLAGS} -Wall -Wpointer-arith -Woverloaded-virtual"
1409     MOZ_CXX_SUPPORTS_WARNING(-W, error=return-type, ac_cxx_has_werror_return_type)
1410     MOZ_CXX_SUPPORTS_WARNING(-W, type-limits, ac_cxx_has_wtype_limits)
1411     MOZ_CXX_SUPPORTS_WARNING(-W, empty-body, ac_cxx_has_wempty_body)
1412     MOZ_CXX_SUPPORTS_WARNING(-W, sign-compare, ac_cxx_has_sign_compare)
1414     # Turn off the following warnings that -Wall turns on:
1415     # -Wno-invalid-offsetof - we use offsetof on non-POD types frequently
1416     #
1417     MOZ_CXX_SUPPORTS_WARNING(-Wno-, invalid-offsetof, ac_cxx_has_wno_invalid_offsetof)
1419     if test -z "$INTEL_CXX" -a -z "$CLANG_CXX"; then
1420        # Don't use -Wcast-align with ICC or clang
1421        case "$CPU_ARCH" in
1422            # And don't use it on hppa, ia64, sparc, arm, since it's noisy there
1423            hppa | ia64 | sparc | arm)
1424            ;;
1425            *)
1426         _WARNINGS_CXXFLAGS="${_WARNINGS_CXXFLAGS} -Wcast-align"
1427            ;;
1428        esac
1429     fi
1431     _DEFINES_CXXFLAGS='-DMOZILLA_CLIENT -include $(DEPTH)/mozilla-config.h'
1432     _USE_CPP_INCLUDE_FLAG=1
1434     # Recent clang and gcc support C++11 deleted functions without warnings if
1435     # compiling with -std=c++0x or -std=gnu++0x (or c++11 or gnu++11 in very new
1436     # versions).  We can't use -std=c++0x yet, so gcc's support must remain
1437     # unused.  But clang's warning can be disabled, so when compiling with clang
1438     # we use it to opt out of the warning, enabling (macro-encapsulated) use of
1439     # deleted function syntax.
1440     if test "$CLANG_CXX"; then
1441         _WARNINGS_CXXFLAGS="${_WARNINGS_CXXFLAGS} -Wno-c++0x-extensions"
1442         MOZ_CXX_SUPPORTS_WARNING(-Wno-, extended-offsetof, ac_cxx_has_wno_extended_offsetof)
1443     fi
1445 else
1446     _DEFINES_CXXFLAGS='-DMOZILLA_CLIENT -D_MOZILLA_CONFIG_H_ $(ACDEFINES)'
1449 dnl gcc can come with its own linker so it is better to use the pass-thru calls
1450 dnl MKSHLIB_FORCE_ALL is used to force the linker to include all object
1451 dnl files present in an archive. MKSHLIB_UNFORCE_ALL reverts the linker to
1452 dnl normal behavior.
1453 dnl ========================================================
1454 MKSHLIB_FORCE_ALL=
1455 MKSHLIB_UNFORCE_ALL=
1457 if test "$COMPILE_ENVIRONMENT"; then
1458 if test "$GNU_CC"; then
1459   AC_MSG_CHECKING(whether ld has archive extraction flags)
1460   AC_CACHE_VAL(ac_cv_mkshlib_force_and_unforce,
1461    [_SAVE_LDFLAGS=$LDFLAGS; _SAVE_LIBS=$LIBS
1462     ac_cv_mkshlib_force_and_unforce="no"
1463     exec 3<&0 <<LOOP_INPUT
1464         force="-Wl,--whole-archive";   unforce="-Wl,--no-whole-archive"
1465         force="-Wl,-z -Wl,allextract"; unforce="-Wl,-z -Wl,defaultextract"
1466         force="-Wl,-all";              unforce="-Wl,-none"
1467 LOOP_INPUT
1468     while read line
1469     do
1470       eval $line
1471       LDFLAGS=$force
1472       LIBS=$unforce
1473       AC_TRY_LINK(,, ac_cv_mkshlib_force_and_unforce=$line; break)
1474     done
1475     exec 0<&3 3<&-
1476     LDFLAGS=$_SAVE_LDFLAGS; LIBS=$_SAVE_LIBS
1477    ])
1478   if test "$ac_cv_mkshlib_force_and_unforce" = "no"; then
1479     AC_MSG_RESULT(no)
1480   else
1481     AC_MSG_RESULT(yes)
1482     eval $ac_cv_mkshlib_force_and_unforce
1483     MKSHLIB_FORCE_ALL=$force
1484     MKSHLIB_UNFORCE_ALL=$unforce
1485   fi
1486 fi # GNU_CC
1487 fi # COMPILE_ENVIRONMENT
1489 dnl ========================================================
1490 dnl Checking for 64-bit OS
1491 dnl ========================================================
1492 if test "$COMPILE_ENVIRONMENT"; then
1493 AC_LANG_SAVE
1494 AC_LANG_C
1495 AC_MSG_CHECKING(for 64-bit OS)
1496 AC_TRY_COMPILE([$configure_static_assert_macros],
1497                [CONFIGURE_STATIC_ASSERT(sizeof(void*) == 8)],
1498                result="yes", result="no")
1499 AC_MSG_RESULT("$result")
1500 if test "$result" = "yes"; then
1501     AC_DEFINE(HAVE_64BIT_OS)
1502     HAVE_64BIT_OS=1
1504 AC_SUBST(HAVE_64BIT_OS)
1505 AC_LANG_RESTORE
1506 fi # COMPILE_ENVIRONMENT
1508 dnl ========================================================
1509 dnl Enable high-memory support on OS/2 by default.
1510 dnl ========================================================
1511 MOZ_OS2_HIGH_MEMORY=1
1512 MOZ_ARG_DISABLE_BOOL(os2-high-mem,
1513 [  --disable-os2-high-mem  Disable high-memory support on OS/2],
1514     MOZ_OS2_HIGH_MEMORY=,
1515     MOZ_OS2_HIGH_MEMORY=1 )
1516 AC_SUBST(MOZ_OS2_HIGH_MEMORY)
1518 dnl ========================================================
1519 dnl = Use profiling compile flags
1520 dnl ========================================================
1521 MOZ_ARG_ENABLE_BOOL(profiling,
1522 [  --enable-profiling      Set compile flags necessary for using sampling profilers (e.g. shark, perf)],
1523     MOZ_PROFILING=1,
1524     MOZ_PROFILING= )
1526 # For profiling builds keep the symbol information
1527 if test "$MOZ_PROFILING" -a -z "$STRIP_FLAGS"; then
1528     case "$OS_TARGET" in
1529     Linux|DragonFly|FreeBSD|NetBSD|OpenBSD)
1530         STRIP_FLAGS="--strip-debug"
1531         ;;
1532     esac
1535 dnl ========================================================
1536 dnl = Use incremental GC
1537 dnl ========================================================
1538 JSGC_INCREMENTAL=1
1539 MOZ_ARG_DISABLE_BOOL(gcincremental,
1540 [  --disable-gcincremental Disable incremental GC],
1541     JSGC_INCREMENTAL= )
1542 if test -n "$JSGC_INCREMENTAL"; then
1543     AC_DEFINE(JSGC_INCREMENTAL)
1546 dnl ========================================================
1547 dnl = Use generational GC
1548 dnl ========================================================
1549 MOZ_ARG_ENABLE_BOOL(gcgenerational,
1550 [  --enable-gcgenerational Enable generational GC],
1551     JSGC_GENERATIONAL=1,
1552     JSGC_GENERATIONAL= )
1553 if test -n "$JSGC_GENERATIONAL"; then
1554     AC_DEFINE(JSGC_GENERATIONAL)
1557 dnl ========================================================
1558 dnl = Perform moving GC stack rooting analysis
1559 dnl ========================================================
1560 MOZ_ARG_ENABLE_BOOL(root-analysis,
1561 [  --enable-root-analysis  Enable moving GC stack root analysis],
1562     JSGC_ROOT_ANALYSIS=1,
1563     JSGC_ROOT_ANALYSIS= )
1564 if test -n "$JSGC_ROOT_ANALYSIS"; then
1565     AC_DEFINE(JSGC_ROOT_ANALYSIS)
1568 dnl ========================================================
1569 dnl = Use exact stack rooting for GC
1570 dnl ========================================================
1571 MOZ_ARG_ENABLE_BOOL(exact-rooting,
1572 [  --enable-exact-rooting  Enable use of exact stack roots for GC],
1573     JSGC_USE_EXACT_ROOTING=1,
1574     JSGC_USE_EXACT_ROOTING= )
1575 if test -n "$JSGC_USE_EXACT_ROOTING"; then
1576     AC_DEFINE(JSGC_USE_EXACT_ROOTING)
1579 dnl ========================================================
1580 dnl = Use Valgrind
1581 dnl ========================================================
1582 MOZ_ARG_ENABLE_BOOL(valgrind,
1583 [  --enable-valgrind       Enable Valgrind integration hooks (default=no)],
1584     MOZ_VALGRIND=1,
1585     MOZ_VALGRIND= )
1586 if test -n "$MOZ_VALGRIND"; then
1587     MOZ_CHECK_HEADER([valgrind/valgrind.h], [],
1588         AC_MSG_ERROR(
1589             [--enable-valgrind specified but Valgrind is not installed]))
1590     AC_DEFINE(MOZ_VALGRIND)
1592 AC_SUBST(MOZ_VALGRIND)
1594 dnl ========================================================
1595 dnl jprof
1596 dnl ========================================================
1597 MOZ_ARG_ENABLE_BOOL(jprof,
1598 [  --enable-jprof          Enable jprof profiling tool (needs mozilla/tools/jprof). Implies --enable-profiling.],
1599     MOZ_JPROF=1,
1600     MOZ_JPROF= )
1601 if test -n "$MOZ_JPROF"; then
1602     MOZ_PROFILING=1
1603     AC_DEFINE(MOZ_JPROF)
1606 dnl ========================================================
1607 dnl SPS Profiler
1608 dnl ========================================================
1609 MOZ_ENABLE_PROFILER_SPS=1
1611 case "${OS_TARGET}" in
1612 Android)
1613     case "${CPU_ARCH}" in
1614     x86 | arm) ;;
1615     *)
1616         MOZ_ENABLE_PROFILER_SPS=
1617     esac
1618     ;;
1619 Linux)
1620     case "${CPU_ARCH}" in
1621     x86 | x86_64) ;;
1622     *)
1623         MOZ_ENABLE_PROFILER_SPS=
1624     esac
1625     ;;
1626 WINNT|Darwin) ;;
1628     MOZ_ENABLE_PROFILER_SPS=
1629     ;;
1630 esac
1632 if test -n "$MOZ_ENABLE_PROFILER_SPS"; then
1633     AC_DEFINE(MOZ_ENABLE_PROFILER_SPS)
1636 dnl ========================================================
1637 dnl shark
1638 dnl ========================================================
1639 MOZ_ARG_ENABLE_BOOL(shark,
1640 [  --enable-shark          Enable shark remote profiling. Implies --enable-profiling.],
1641     MOZ_SHARK=1,
1642     MOZ_SHARK= )
1643 if test -n "$MOZ_SHARK"; then
1644     MOZ_PROFILING=1
1645     AC_DEFINE(MOZ_SHARK)
1648 dnl ========================================================
1649 dnl instruments
1650 dnl ========================================================
1651 MOZ_ARG_ENABLE_BOOL(instruments,
1652 [  --enable-instruments    Enable instruments remote profiling. Implies --enable-profiling.],
1653     MOZ_INSTRUMENTS=1,
1654     MOZ_INSTRUMENTS= )
1655 if test -n "$MOZ_INSTRUMENTS"; then
1656     MOZ_PROFILING=1
1657     AC_DEFINE(MOZ_INSTRUMENTS)
1660 dnl ========================================================
1661 dnl callgrind
1662 dnl ========================================================
1663 MOZ_ARG_ENABLE_BOOL(callgrind,
1664 [  --enable-callgrind      Enable callgrind profiling. Implies --enable-profiling.],
1665     MOZ_CALLGRIND=1,
1666     MOZ_CALLGRIND= )
1667 if test -n "$MOZ_CALLGRIND"; then
1668     MOZ_PROFILING=1
1669     AC_DEFINE(MOZ_CALLGRIND)
1672 dnl ========================================================
1673 dnl vtune
1674 dnl ========================================================
1675 MOZ_ARG_ENABLE_BOOL(vtune,
1676 [  --enable-vtune          Enable vtune profiling. Implies --enable-profiling.],
1677     MOZ_VTUNE=1,
1678     MOZ_VTUNE= )
1679 if test -n "$MOZ_VTUNE"; then
1680     MOZ_PROFILING=1
1681     AC_DEFINE(MOZ_VTUNE)
1684 dnl ========================================================
1685 dnl Profiling
1686 dnl ========================================================
1687 if test -n "$MOZ_PROFILING"; then
1688     AC_DEFINE(MOZ_PROFILING)
1691 dnl ========================================================
1692 dnl System overrides of the defaults for host
1693 dnl ========================================================
1694 case "$host" in
1695 *mingw*)
1696     if test -n "$_WIN32_MSVC"; then
1697         HOST_AR=lib
1698         HOST_AR_FLAGS='-NOLOGO -OUT:"$@"'
1699         HOST_CFLAGS="$HOST_CFLAGS -TC -nologo -Fd\$(HOST_PDBFILE)"
1700         HOST_RANLIB='echo ranlib'
1701     else
1702         HOST_CFLAGS="$HOST_CFLAGS -mwindows"
1703     fi
1704     HOST_CFLAGS="$HOST_CFLAGS -DXP_WIN32 -DXP_WIN -DWIN32 -D_WIN32 -DNO_X11 -D_CRT_SECURE_NO_WARNINGS"
1705     HOST_NSPR_MDCPUCFG='\"md/_winnt.cfg\"'
1706     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
1707     HOST_BIN_SUFFIX=.exe
1708     case "$host" in
1709     *mingw*)
1710         PERL="/bin/sh ${_topsrcdir}/build/msys-perl-wrapper"
1711         ;;
1712     esac
1714     case "${host_cpu}" in
1715     i*86)
1716         if test -n "$_WIN32_MSVC"; then
1717             HOST_LDFLAGS="$HOST_LDFLAGS -MACHINE:X86"
1718         fi
1719         ;;
1720     x86_64)
1721         if test -n "$_WIN32_MSVC"; then
1722             HOST_LDFLAGS="$HOST_LDFLAGS -MACHINE:X64"
1723         fi
1724         HOST_CFLAGS="$HOST_CFLAGS -D_AMD64_"
1725         ;;
1726     esac
1727     ;;
1729 *-darwin*)
1730     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX -DXP_MACOSX -DNO_X11"
1731     HOST_NSPR_MDCPUCFG='\"md/_darwin.cfg\"'
1732     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}"
1733     ;;
1735 *-linux*|*-kfreebsd*-gnu|*-gnu*)
1736     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX"
1737     HOST_NSPR_MDCPUCFG='\"md/_linux.cfg\"'
1738     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}"
1739     ;;
1741 *os2*)
1742     HOST_CFLAGS="$HOST_CFLAGS -DXP_OS2 -DNO_X11 -Zomf"
1743     HOST_NSPR_MDCPUCFG='\"md/_os2.cfg\"'
1744     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
1745     HOST_BIN_SUFFIX=.exe
1746     MOZ_FIX_LINK_PATHS=
1747     ;;
1750     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX"
1751     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
1752     ;;
1753 esac
1755 dnl Check for using a custom <inttypes.h> implementation
1756 dnl ========================================================
1757 AC_MSG_CHECKING(for custom <inttypes.h> implementation)
1758 if test "$MOZ_CUSTOM_INTTYPES_H"; then
1759   AC_DEFINE_UNQUOTED(MOZ_CUSTOM_INTTYPES_H, "$MOZ_CUSTOM_INTTYPES_H")
1760   AC_MSG_RESULT(using $MOZ_CUSTOM_INTTYPES_H)
1761 else
1762   AC_MSG_RESULT(none specified)
1765 dnl Get mozilla version from central milestone file
1766 MOZILLA_VERSION=`$PERL $srcdir/config/milestone.pl -topsrcdir $srcdir`
1767 MOZILLA_UAVERSION=`$PERL $srcdir/config/milestone.pl -topsrcdir $srcdir -uaversion`
1768 MOZILLA_SYMBOLVERSION=`$PERL $srcdir/config/milestone.pl -topsrcdir $srcdir -symbolversion`
1770 dnl Get version of various core apps from the version files.
1771 FIREFOX_VERSION=`cat $_topsrcdir/browser/config/version.txt`
1773 if test -z "$FIREFOX_VERSION"; then
1774     AC_MSG_ERROR([FIREFOX_VERSION is unexpectedly blank.])
1777 AC_DEFINE_UNQUOTED(MOZILLA_VERSION,"$MOZILLA_VERSION")
1778 AC_DEFINE_UNQUOTED(MOZILLA_VERSION_U,$MOZILLA_VERSION)
1779 AC_DEFINE_UNQUOTED(MOZILLA_UAVERSION,"$MOZILLA_UAVERSION")
1780 AC_SUBST(MOZILLA_SYMBOLVERSION)
1782 MOZ_DOING_LTO(lto_is_enabled)
1784 dnl ========================================================
1785 dnl System overrides of the defaults for target
1786 dnl ========================================================
1788 case "$target" in
1789 *-aix*)
1790     AC_DEFINE(AIX)
1791     if test ! "$GNU_CC"; then
1792         if test ! "$HAVE_64BIT_OS"; then
1793             # Compiling with Visual Age C++ object model compat is the
1794             # default. To compile with object model ibm, add
1795             # AIX_OBJMODEL=ibm to .mozconfig.
1796             if test "$AIX_OBJMODEL" = "ibm"; then
1797                 CXXFLAGS="$CXXFLAGS -qobjmodel=ibm"
1798             else
1799                 AIX_OBJMODEL=compat
1800             fi
1801         else
1802             AIX_OBJMODEL=compat
1803         fi
1804         AC_SUBST(AIX_OBJMODEL)
1805         DSO_LDOPTS='-qmkshrobj=1'
1806         DSO_CFLAGS='-qflag=w:w'
1807         DSO_PIC_CFLAGS=
1808         LDFLAGS="$LDFLAGS -Wl,-brtl -blibpath:/usr/lib:/lib"
1809         MOZ_FIX_LINK_PATHS=
1810         MKSHLIB='$(CXX) $(DSO_LDOPTS) -o $@'
1811         MKCSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
1812         if test "$COMPILE_ENVIRONMENT"; then
1813             AC_LANG_SAVE
1814             AC_LANG_CPLUSPLUS
1815             AC_MSG_CHECKING([for IBM XLC/C++ compiler version >= 9.0.0.7])
1816             AC_TRY_COMPILE([],
1817                 [#if (__IBMCPP__ < 900)
1818                  #error "Bad compiler"
1819                  #endif],
1820                 _BAD_COMPILER=,_BAD_COMPILER=1)
1821             if test -n "$_BAD_COMPILER"; then
1822                 AC_MSG_RESULT([no])
1823                 AC_MSG_ERROR([IBM XLC/C++ 9.0.0.7 or higher is required to build.])
1824             else
1825                 AC_MSG_RESULT([yes])
1826             fi
1827             AC_LANG_RESTORE
1828             TARGET_COMPILER_ABI="ibmc"
1829             CC_VERSION=`lslpp -Lcq vac.C 2>/dev/null | awk -F: '{ print $3 }'`
1830             CXX_VERSION=`lslpp -Lcq vacpp.cmp.core 2>/dev/null | awk -F: '{ print $3 }'`
1831         fi
1832     fi
1833     case "${target_os}" in
1834     aix4.1*)
1835         DLL_SUFFIX='_shr.a'
1836         ;;
1837     esac
1838     if test "$COMPILE_ENVIRONMENT"; then
1839         MOZ_CHECK_HEADERS(sys/inttypes.h)
1840     fi
1841     AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
1842     ;;
1844 *-darwin*)
1845     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
1846     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
1847     MOZ_OPTIMIZE_FLAGS="-O3"
1848     # Statically disable jemalloc on 10.5 and 32-bit 10.6.  See bug 702250.
1849     if test "$HAVE_64BIT_OS"; then
1850         MOZ_MEMORY=1
1851     fi
1852     DLL_SUFFIX=".dylib"
1853     DSO_LDOPTS=''
1854     STRIP_FLAGS="$STRIP_FLAGS -x -S"
1855     # Check whether we're targeting OS X or iOS
1856     AC_CACHE_CHECK(for iOS target,
1857                    ac_cv_ios_target,
1858                    [AC_TRY_COMPILE([#include <TargetConditionals.h>
1859 #if !(TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
1860 #error not iOS
1861 #endif],
1862                                    [],
1863                                    ac_cv_ios_target="yes",
1864                                    ac_cv_ios_target="no")])
1865     if test "$ac_cv_ios_target" = "yes"; then
1866         AC_DEFINE(XP_IOS)
1867         AC_DEFINE(XP_DARWIN)
1868         _PLATFORM_DEFAULT_TOOLKIT='cairo-uikit'
1869     else
1870         AC_DEFINE(XP_MACOSX)
1871         AC_DEFINE(XP_DARWIN)
1872         _PLATFORM_DEFAULT_TOOLKIT='cairo-cocoa'
1873         # The ExceptionHandling framework is needed for Objective-C exception
1874         # logging code in nsObjCExceptions.h. Currently we only use that in debug
1875         # builds.
1876         MOZ_DEBUG_LDFLAGS="$MOZ_DEBUG_LDFLAGS -framework ExceptionHandling";
1877     fi
1878     TARGET_NSPR_MDCPUCFG='\"md/_darwin.cfg\"'
1881     if test "x$lto_is_enabled" = "xyes"; then
1882         echo "Skipping -dead_strip because lto is enabled."
1883     dnl DTrace and -dead_strip don't interact well. See bug 403132.
1884     dnl ===================================================================
1885     elif test "x$enable_dtrace" = "xyes"; then
1886         echo "Skipping -dead_strip because DTrace is enabled. See bug 403132."
1887     else
1888         dnl check for the presence of the -dead_strip linker flag
1889         AC_MSG_CHECKING([for -dead_strip option to ld])
1890         _SAVE_LDFLAGS=$LDFLAGS
1891         LDFLAGS="$LDFLAGS -Wl,-dead_strip"
1892         AC_TRY_LINK(,[return 0;],_HAVE_DEAD_STRIP=1,_HAVE_DEAD_STRIP=)
1893         if test -n "$_HAVE_DEAD_STRIP" ; then
1894             AC_MSG_RESULT([yes])
1895             MOZ_OPTIMIZE_LDFLAGS="-Wl,-dead_strip"
1896         else
1897             AC_MSG_RESULT([no])
1898         fi
1900         LDFLAGS=$_SAVE_LDFLAGS
1901     fi
1903     dnl With newer linkers we need to pass -allow_heap_execute because of
1904     dnl Microsoft Silverlight (5.1.10411.0 at least).
1905     AC_MSG_CHECKING([for -allow_heap_execute option to ld])
1906     _SAVE_LDFLAGS=$LDFLAGS
1907     LDFLAGS="$LDFLAGS -Wl,-allow_heap_execute"
1908     AC_TRY_LINK(,[return 0;],_HAVE_ALLOW_HEAP_EXECUTE=1,
1909                 _HAVE_ALLOW_HEAP_EXECUTE=)
1910     if test -n "$_HAVE_ALLOW_HEAP_EXECUTE" ; then
1911         AC_MSG_RESULT([yes])
1912         MOZ_ALLOW_HEAP_EXECUTE_FLAGS="-Wl,-allow_heap_execute"
1913     else
1914         AC_MSG_RESULT([no])
1915     fi
1916     LDFLAGS=$_SAVE_LDFLAGS
1918     MOZ_FIX_LINK_PATHS='-Wl,-executable_path,$(LIBXUL_DIST)/bin'
1919     ;;
1921 ia64*-hpux*)
1922     DLL_SUFFIX=".so"
1923     if test ! "$GNU_CC"; then
1924        DSO_LDOPTS='-b'
1925        DSO_CFLAGS=""
1926        DSO_PIC_CFLAGS=
1927        MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_LDOPTS) -o $@'
1928        MKCSHLIB='$(CC) $(CFLAGS) $(DSO_LDOPTS) -o $@'
1929        CXXFLAGS="$CXXFLAGS -Wc,-ansi_for_scope,on"
1930     else
1931        DSO_LDOPTS='-b -E'
1932        MKSHLIB='$(LD) $(DSO_LDOPTS) -o $@'
1933        MKCSHLIB='$(LD) $(DSO_LDOPTS) -o $@'
1934     fi
1935     MOZ_FIX_LINK_PATHS=
1936     AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
1937     AC_DEFINE(_LARGEFILE64_SOURCE)
1938     ;;
1940 *-hpux*)
1941     DLL_SUFFIX=".sl"
1942     if test ! "$GNU_CC"; then
1943         DSO_LDOPTS='-b -Wl,+s'
1944         DSO_CFLAGS=""
1945         DSO_PIC_CFLAGS="+Z"
1946         MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_LDOPTS) -L$(LIBXUL_DIST)/bin -o $@'
1947         MKCSHLIB='$(LD) -b +s -L$(LIBXUL_DIST)/bin -o $@'
1948         CXXFLAGS="$CXXFLAGS -Wc,-ansi_for_scope,on"
1949     else
1950         DSO_LDOPTS='-b -E +s'
1951         MKSHLIB='$(LD) $(DSO_LDOPTS) -L$(LIBXUL_DIST)/bin -L$(LIBXUL_DIST)/lib -o $@'
1952         MKCSHLIB='$(LD) $(DSO_LDOPTS) -L$(LIBXUL_DIST)/bin -L$(LIBXUL_DIST)/lib -o $@'
1953     fi
1954     MOZ_POST_PROGRAM_COMMAND='chatr +s enable'
1955     AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
1956     ;;
1958 *-android*|*-linuxandroid*)
1959     AC_DEFINE(NO_PW_GECOS)
1960     no_x=yes
1961     if test -n "$gonkdir"; then
1962         _PLATFORM_DEFAULT_TOOLKIT=cairo-gonk
1963         _PLATFORM_HAVE_RIL=1
1964         MOZ_B2G_FM=1
1965         MOZ_SYNTH_PICO=1
1966     else
1967         _PLATFORM_DEFAULT_TOOLKIT=cairo-android
1968         MOZ_LINKER=1
1969     fi
1970     TARGET_NSPR_MDCPUCFG='\"md/_linux.cfg\"'
1972     MOZ_GFX_OPTIMIZE_MOBILE=1
1973     MOZ_OPTIMIZE_FLAGS="-Os -freorder-blocks -fno-reorder-functions"
1974     ;;
1976 *-*linux*)
1977     # Note: both GNU_CC and INTEL_CC are set when using Intel's C compiler.
1978     # Similarly for GNU_CXX and INTEL_CXX.
1979     if test "$INTEL_CC" -o "$INTEL_CXX"; then
1980         # -Os has been broken on Intel's C/C++ compilers for quite a
1981         # while; Intel recommends against using it.
1982         MOZ_OPTIMIZE_FLAGS="-O2"
1983     elif test "$GNU_CC" -o "$GNU_CXX"; then
1984         case $GCC_VERSION in
1985         4.5.*)
1986             # -Os is broken on gcc 4.5.x we need to tweak it to get good results.
1987             MOZ_OPTIMIZE_SIZE_TWEAK="-finline-limit=50"
1988         esac
1989         MOZ_PGO_OPTIMIZE_FLAGS="-O3"
1990         MOZ_OPTIMIZE_FLAGS="-Os -freorder-blocks $MOZ_OPTIMIZE_SIZE_TWEAK"
1991     fi
1993     TARGET_NSPR_MDCPUCFG='\"md/_linux.cfg\"'
1995     MOZ_MEMORY=1
1997     case "${target_cpu}" in
1998     alpha*)
1999         CFLAGS="$CFLAGS -mieee"
2000         CXXFLAGS="$CXXFLAGS -mieee"
2001     ;;
2002     i*86)
2003         USE_ELF_DYNSTR_GC=1
2004     ;;
2005     esac
2007     if test -z "$MC"; then
2008         MC=mc.exe
2009     fi
2010     ;;
2011 *-mingw*)
2012     DSO_CFLAGS=
2013     DSO_PIC_CFLAGS=
2014     DLL_SUFFIX=.dll
2015     RC=rc.exe
2016     MC=mc.exe
2017     # certain versions of cygwin's makedepend barf on the
2018     # #include <string> vs -I./dist/include/string issue so don't use it
2019     XPCOM_FROZEN_LDOPTS='$(call EXPAND_LIBNAME_PATH,xul mozalloc,$(LIBXUL_DIST)/lib)'
2020     if test -n "$GNU_CC" -o -n "$CLANG_CC"; then
2021         CC="$CC -mwindows"
2022         CXX="$CXX -mwindows"
2023         CPP="$CPP -mwindows"
2024         CFLAGS="$CFLAGS -mms-bitfields"
2025         CXXFLAGS="$CXXFLAGS -mms-bitfields"
2026         DSO_LDOPTS='-shared'
2027         MKSHLIB='$(CXX) $(DSO_LDOPTS) -o $@'
2028         MKCSHLIB='$(CC) $(DSO_LDOPTS) -o $@'
2029         RC='$(WINDRES)'
2030         # Use static libgcc and libstdc++
2031         LDFLAGS="$LDFLAGS -static-libgcc -static-libstdc++"
2032         NSPR_LDFLAGS="$NSPR_LDFLAGS -static-libgcc"
2033         # Use temp file for windres (bug 213281)
2034         RCFLAGS='-O coff --use-temp-file'
2035         # mingw doesn't require kernel32, user32, and advapi32 explicitly
2036         LIBS="$LIBS -luuid -lgdi32 -lwinmm -lwsock32 -luserenv -lsecur32 -lnetapi32"
2037         MOZ_FIX_LINK_PATHS=
2038         DLL_PREFIX=
2039         IMPORT_LIB_SUFFIX=dll.a
2041         # We use mix of both POSIX and Win32 printf format across the tree, so format
2042         # warnings are useless on mingw.
2043         MOZ_C_SUPPORTS_WARNING(-Wno-, format, ac_c_has_wno_format)
2044         MOZ_CXX_SUPPORTS_WARNING(-Wno-, format, ac_cxx_has_wno_format)
2045     else
2046         TARGET_COMPILER_ABI=msvc
2047         HOST_CC='$(CC)'
2048         HOST_CXX='$(CXX)'
2049         HOST_LD='$(LD)'
2050         if test "$AS_BIN"; then
2051             AS="$(basename "$AS_BIN")"
2052         fi
2053         AR='lib'
2054         AR_FLAGS='-NOLOGO -OUT:"$@"'
2055         AR_EXTRACT=
2056         RANLIB='echo not_ranlib'
2057         STRIP='echo not_strip'
2058         PKG_SKIP_STRIP=1
2059         XARGS=xargs
2060         ZIP=zip
2061         UNZIP=unzip
2062         DOXYGEN=:
2063         ASM_SUFFIX=asm
2064         OBJ_SUFFIX=obj
2065         LIB_SUFFIX=lib
2066         DLL_PREFIX=
2067         LIB_PREFIX=
2068         IMPORT_LIB_SUFFIX=lib
2069         MKSHLIB='$(LD) -NOLOGO -DLL -OUT:$@ -PDB:$(LINK_PDBFILE) $(DSO_LDOPTS)'
2070         MKCSHLIB='$(LD) -NOLOGO -DLL -OUT:$@ -PDB:$(LINK_PDBFILE) $(DSO_LDOPTS)'
2071         MKSHLIB_FORCE_ALL=
2072         MKSHLIB_UNFORCE_ALL=
2073         DSO_LDOPTS=-SUBSYSTEM:WINDOWS
2074         _USE_CPP_INCLUDE_FLAG=1
2075         _DEFINES_CFLAGS='-FI $(DEPTH)/dist/include/mozilla-config.h -DMOZILLA_CLIENT'
2076         _DEFINES_CXXFLAGS='-FI $(DEPTH)/dist/include/mozilla-config.h -DMOZILLA_CLIENT'
2077         CFLAGS="$CFLAGS -W3 -Gy -Fd\$(COMPILE_PDBFILE)"
2078         CXXFLAGS="$CXXFLAGS -W3 -Gy -Fd\$(COMPILE_PDBFILE)"
2079         if test "$_CC_SUITE" -ge "12"; then
2080             dnl VS2013+ requires -FS when parallel building by make -jN.
2081             dnl If nothing, compiler sometimes causes C1041 error.
2082             dnl
2083             dnl Visual Studio 2013 supports -Gw flags
2084             dnl http://blogs.msdn.com/b/vcblog/archive/2013/09/11/introducing-gw-compiler-switch.aspx
2085             CFLAGS="$CFLAGS -FS -Gw"
2086             CXXFLAGS="$CXXFLAGS -FS -Gw"
2087         fi
2088         # khuey says we can safely ignore MSVC warning C4251
2089         # MSVC warning C4244 (implicit type conversion may lose data) warns
2090         # and requires workarounds for perfectly valid code.  Also, GCC/clang
2091         # don't warn about it by default. So for consistency/sanity, we turn
2092         # it off on MSVC, too.
2093         # MSVC warning C4345 warns of newly conformant behavior as of VS2003.
2094         # MSVC warning C4351 warns of newly conformant behavior as of VS2005.
2095         # MSVC warning C4482 warns when an enum value is refered specifing the
2096         # name of the enum itself.  This behavior is allowed in C++11, and the
2097         # warning has been removed in VS2012.
2098         # MSVC warning C4800 warns when a value is implicitly cast to bool,
2099         # because this also forces narrowing to a single byte, which can be a
2100         # perf hit.  But this matters so little in practice (and often we want
2101         # that behavior) that it's better to turn it off.
2102         # MSVC warning C4819 warns some UTF-8 characters (e.g. copyright sign)
2103         # on non-Western system locales even if it is in a comment.
2104         CFLAGS="$CFLAGS -wd4244 -wd4819"
2105         CXXFLAGS="$CXXFLAGS -wd4251 -wd4244 -wd4345 -wd4351 -wd4482 -wd4800 -wd4819"
2106         # make 'foo == bar;' error out
2107         CFLAGS="$CFLAGS -we4553"
2108         CXXFLAGS="$CXXFLAGS -we4553"
2109         LIBS="$LIBS kernel32.lib user32.lib gdi32.lib winmm.lib wsock32.lib advapi32.lib secur32.lib netapi32.lib"
2110         MOZ_DEBUG_FLAGS='-Zi'
2111         MOZ_DEBUG_LDFLAGS='-DEBUG -DEBUGTYPE:CV'
2112         WARNINGS_AS_ERRORS='-WX'
2113         MOZ_OPTIMIZE_FLAGS='-O1'
2114         MOZ_FIX_LINK_PATHS=
2115         MOZ_COMPONENT_NSPR_LIBS='$(NSPR_LIBS)'
2116         LDFLAGS="$LDFLAGS -LARGEADDRESSAWARE -NXCOMPAT"
2117         if test -z "$DEVELOPER_OPTIONS"; then
2118             LDFLAGS="$LDFLAGS -RELEASE"
2119         fi
2120         dnl For profile-guided optimization
2121         PROFILE_GEN_CFLAGS="-GL"
2122         PROFILE_GEN_LDFLAGS="-LTCG:PGINSTRUMENT"
2123         dnl XXX: PGO builds can fail with warnings treated as errors,
2124         dnl specifically "no profile data available" appears to be
2125         dnl treated as an error sometimes. This might be a consequence
2126         dnl of using WARNINGS_AS_ERRORS in some modules, combined
2127         dnl with the linker doing most of the work in the whole-program
2128         dnl optimization/PGO case. I think it's probably a compiler bug,
2129         dnl but we work around it here.
2130         PROFILE_USE_CFLAGS="-GL -wd4624 -wd4952"
2131         dnl XXX: should be -LTCG:PGOPTIMIZE, but that fails on libxul.
2132         dnl Probably also a compiler bug, but what can you do?
2133         PROFILE_USE_LDFLAGS="-LTCG:PGUPDATE"
2134         LDFLAGS="$LDFLAGS -DYNAMICBASE"
2135         dnl Minimum reqiurement of Gecko is VS2010 or later which supports
2136         dnl both SSSE3 and SSE4.1.
2137         HAVE_TOOLCHAIN_SUPPORT_MSSSE3=1
2138         HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=1
2139     fi
2140     AC_DEFINE(HAVE_SNPRINTF)
2141     AC_DEFINE(_WINDOWS)
2142     AC_DEFINE(WIN32)
2143     AC_DEFINE(XP_WIN)
2144     AC_DEFINE(XP_WIN32)
2145     AC_DEFINE(HW_THREADS)
2146     AC_DEFINE(STDC_HEADERS)
2147     AC_DEFINE(WIN32_LEAN_AND_MEAN)
2148     TARGET_MD_ARCH=win32
2149     _PLATFORM_DEFAULT_TOOLKIT='cairo-windows'
2150     BIN_SUFFIX='.exe'
2151     MOZ_USER_DIR="Mozilla"
2153     dnl Hardcode to win95 for now - cls
2154     TARGET_NSPR_MDCPUCFG='\"md/_win95.cfg\"'
2156     dnl set NO_X11 defines here as the general check is skipped on win32
2157     no_x=yes
2158     AC_DEFINE(NO_X11)
2160     case "$host" in
2161     *-mingw*)
2162         MOZ_BUILD_ROOT=`cd $MOZ_BUILD_ROOT && pwd -W`
2163         if test -n "$L10NBASEDIR"; then
2164             L10NBASEDIR=`cd $L10NBASEDIR && pwd -W`
2165         fi
2166         ;;
2167     esac
2169     case "$host" in
2170     *-mingw*)
2171         if test -z "$MOZ_TOOLS"; then
2172             AC_MSG_ERROR([MOZ_TOOLS is not set])
2173         fi
2174         MOZ_TOOLS_DIR=`cd $MOZ_TOOLS && pwd -W`
2175         if test "$?" != "0" -o -z "$MOZ_TOOLS_DIR"; then
2176             AC_MSG_ERROR([cd \$MOZ_TOOLS failed. MOZ_TOOLS ==? $MOZ_TOOLS])
2177         fi
2178         MOZ_TOOLS_BIN_DIR="$(cd "$MOZ_TOOLS_DIR/bin" && pwd)"
2179         if test `echo ${PATH}: | grep -ic "$MOZ_TOOLS_BINDIR:"` = 0; then
2180             AC_MSG_ERROR([\$MOZ_TOOLS\\bin must be in your path.])
2181         fi
2182         ;;
2183     esac
2185     case "$host_os" in
2186     cygwin*|msvc*|mks*)
2187         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.])
2188         ;;
2189     esac
2191     case "$target" in
2192     i*86-*)
2193         if test "$HAVE_64BIT_OS"; then
2194             AC_MSG_ERROR([You are targeting i386 but using the 64-bit compiler.])
2195         fi
2197         if test -n "$GNU_CC"; then
2198             CFLAGS="$CFLAGS -mstackrealign -fno-keep-inline-dllexport"
2199             CXXFLAGS="$CXXFLAGS -mstackrealign -fno-keep-inline-dllexport"
2200             LDFLAGS="$LDFLAGS -Wl,--enable-stdcall-fixup -Wl,--large-address-aware"
2201         else
2202             DSO_LDOPTS="$DSO_LDOPTS -MACHINE:X86"
2203             LDFLAGS="$LDFLAGS -SAFESEH"
2204         fi
2206         AC_DEFINE(_X86_)
2207         ;;
2208     x86_64-*)
2209         if test -n "$_WIN32_MSVC"; then
2210             DSO_LDOPTS="$DSO_LDOPTS -MACHINE:X64"
2211         fi
2212         AC_DEFINE(_AMD64_)
2213         ;;
2214     *)
2215         AC_DEFINE(_CPU_ARCH_NOT_DEFINED)
2216         ;;
2217     esac
2218     ;;
2220 *-netbsd*)
2221     DSO_CFLAGS=''
2222     CFLAGS="$CFLAGS -Dunix"
2223     CXXFLAGS="$CXXFLAGS -Dunix"
2224     if $CC -E - -dM </dev/null | grep __ELF__ >/dev/null; then
2225         DLL_SUFFIX=".so"
2226         DSO_PIC_CFLAGS='-fPIC -DPIC'
2227         DSO_LDOPTS='-shared'
2228         BIN_FLAGS='-Wl,--export-dynamic'
2229     else
2230         DSO_PIC_CFLAGS='-fPIC -DPIC'
2231         DLL_SUFFIX=".so.1.0"
2232         DSO_LDOPTS='-shared'
2233     fi
2234     # This will fail on a.out systems prior to 1.5.1_ALPHA.
2235     MKSHLIB_FORCE_ALL='-Wl,--whole-archive'
2236     MKSHLIB_UNFORCE_ALL='-Wl,--no-whole-archive'
2237     if test "$LIBRUNPATH"; then
2238         DSO_LDOPTS="-Wl,-R$LIBRUNPATH $DSO_LDOPTS"
2239     fi
2240     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-soname,$(notdir $@) -o $@'
2241     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -Wl,-soname,$(notdir $@)) -o $@'
2242     ;;
2244 *-openbsd*)
2245     if test "$SO_VERSION"; then
2246         DLL_SUFFIX=".so.$SO_VERSION"
2247     else
2248         DLL_SUFFIX=".so.1.0"
2249     fi
2250     MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib -Wl,-rpath-link,$(if $(X11BASE),$(X11BASE),/usr/X11R6)/lib'
2251     DSO_CFLAGS=''
2252     DSO_PIC_CFLAGS='-fPIC'
2253     DSO_LDOPTS='-shared -fPIC'
2254     if test "$LIBRUNPATH"; then
2255         DSO_LDOPTS="-R$LIBRUNPATH $DSO_LDOPTS"
2256     fi
2257     ;;
2259 *-os2*)
2260     MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
2261     MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_CFLAGS) $(DSO_LDOPTS) -o $@'
2262     AC_DEFINE(OS2)
2263     AC_DEFINE(XP_OS2)
2264     AC_DEFINE(OS2EMX_PLAIN_CHAR)
2265     AC_DEFINE(TCPV40HDRS)
2266     DLL_PREFIX=
2267     LIB_PREFIX=
2268     LIB_SUFFIX=lib
2269     BIN_SUFFIX=".exe"
2270     DLL_SUFFIX=".dll"
2271     IMPORT_LIB_SUFFIX=lib
2272     DSO_PIC_CFLAGS=
2273     AR=emxomfar
2274     AR_FLAGS='r $@'
2275     CFLAGS="$CFLAGS -Zomf"
2276     CXXFLAGS="$CXXFLAGS -Zomf"
2277     DSO_LDOPTS='-Zdll'
2278     BIN_FLAGS='-Zlinker /ST:0x100000'
2279     IMPLIB='emximp -o'
2280     FILTER='true'
2281     LDFLAGS='-Zmap'
2282     WARNINGS_AS_ERRORS='-Werror'
2283     MOZ_DEBUG_FLAGS="-g -fno-inline"
2284     MOZ_OPTIMIZE_FLAGS="-O2"
2285     MOZ_OPTIMIZE_LDFLAGS="-s -Zlinker /EXEPACK:2 -Zlinker /PACKCODE -Zlinker /PACKDATA"
2286     LIBXUL_LIBS='-L$(LIBXUL_DIST)/lib $(LIBXUL_DIST)/lib/xul.lib $(LIBXUL_DIST)/lib/mozalloc.lib'
2287     TARGET_MD_ARCH=os2
2288     _PLATFORM_DEFAULT_TOOLKIT="cairo-os2"
2289     RC=rc.exe
2290     MC=mc.exe
2291     RCFLAGS='-n'
2292     MOZ_USER_DIR="Mozilla"
2293     ZIP="$ZIP -X"
2294     STRIP=lxlite
2295     STRIP_FLAGS="/yua /ydd /yxd /ynl /anp /b- /cs+ /d /i- /ml1 /mr2 /mf2 /r+ /u+ /x- /zs:0 /zx /zd"
2297     if test "$MOZTOOLS"; then
2298         MOZ_TOOLS_DIR=`echo $MOZTOOLS | sed -e 's|\\\\|/|g'`
2299     else
2300         AC_MSG_ERROR([MOZTOOLS is not set])
2301     fi
2302     if test -n "$MOZ_OS2_HIGH_MEMORY"; then
2303         DSO_LDOPTS="$DSO_LDOPTS -Zhigh-mem"
2304         LDFLAGS="$LDFLAGS -Zhigh-mem"
2305         MOZ_OPTIMIZE_LDFLAGS="$MOZ_OPTIMIZE_LDFLAGS -Zhigh-mem"
2306         AC_DEFINE(MOZ_OS2_HIGH_MEMORY)
2307     fi
2309     # GCC for OS/2 currently predefines these, but we don't want them
2310     _DEFINES_CFLAGS="$_DEFINES_CFLAGS -Uunix -U__unix -U__unix__"
2311     _DEFINES_CXXFLAGS="$_DEFINES_CXXFLAGS -Uunix -U__unix -U__unix__"
2313     AC_CACHE_CHECK(for __declspec(dllexport),
2314         ac_os2_declspec,
2315         [AC_TRY_COMPILE([__declspec(dllexport) void ac_os2_declspec(void) {}],
2316                         [return 0;],
2317                         ac_os2_declspec="yes",
2318                         ac_os2_declspec="no")])
2319     if test "$ac_os2_declspec" != "yes"; then
2320         AC_MSG_ERROR([Compiler does not support __declspec(dllexport), install GCC-4.3.2 or newer])
2321     fi
2322     ;;
2324 *-solaris*)
2325     AC_DEFINE(SOLARIS)
2326     TARGET_NSPR_MDCPUCFG='\"md/_solaris.cfg\"'
2327     MOZ_FIX_LINK_PATHS=
2328     # $ORIGIN/.. is for shared libraries under components/ to locate shared
2329     # libraries one level up (e.g. libnspr4.so)
2330     if test "$SOLARIS_SUNPRO_CC"; then
2331        LDFLAGS="$LDFLAGS -z ignore -R '\$\$ORIGIN:\$\$ORIGIN/..' -z lazyload -z combreloc -z muldefs"
2332        LIBS="-lCrun -lCstd -lc $LIBS"
2333        AC_DEFINE(NSCAP_DISABLE_DEBUG_PTR_TYPES)
2334        CFLAGS="$CFLAGS -xlibmieee -xstrconst -xbuiltin=%all -D__FUNCTION__=__func__"
2335        CXXFLAGS="$CXXFLAGS -xlibmieee -xbuiltin=%all -features=tmplife,tmplrefstatic,extensions,no%except -norunpath -D__FUNCTION__=__func__ -template=no%extdef"
2336        LDFLAGS="-xildoff $LDFLAGS"
2337        if test -z "$CROSS_COMPILE" -a -f /usr/lib/ld/map.noexstk; then
2338            _SAVE_LDFLAGS=$LDFLAGS
2339            LDFLAGS="-M /usr/lib/ld/map.noexstk $LDFLAGS"
2340            AC_TRY_LINK([#include <stdio.h>],
2341                        [printf("Hello World\n");],
2342                        ,
2343                        [LDFLAGS=$_SAVE_LDFLAGS])
2344        fi
2345        MOZ_OPTIMIZE_FLAGS="-xO4"
2346        MKSHLIB='$(CXX) $(CXXFLAGS) $(DSO_PIC_FLAGS) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
2347        MKCSHLIB='$(CC) $(CFLAGS) $(DSO_PIC_FLAGS) $(DSO_LDOPTS) -h $(notdir $@) -o $@'
2348        MKSHLIB_FORCE_ALL='-z allextract'
2349        MKSHLIB_UNFORCE_ALL='-z defaultextract'
2350        DSO_LDOPTS='-G'
2351        AR_LIST="$AR t"
2352        AR_EXTRACT="$AR x"
2353        AR_DELETE="$AR d"
2354        AR='$(CXX) -xar'
2355        AR_FLAGS='-o $@'
2356        AS='/usr/ccs/bin/as'
2357        ASFLAGS="$ASFLAGS -K PIC -L -P -D_ASM -D__STDC__=0"
2358        AS_DASH_C_FLAG=''
2359        TARGET_COMPILER_ABI="sunc"
2360        CC_VERSION=`$CC -V 2>&1 | grep '^cc:' 2>/dev/null | $AWK -F\: '{ print $2 }'`
2361        CXX_VERSION=`$CXX -V 2>&1 | grep '^CC:' 2>/dev/null | $AWK -F\: '{ print $2 }'`
2362        AC_MSG_CHECKING([for Sun C++ compiler version >= 5.9])
2363        AC_LANG_SAVE
2364        AC_LANG_CPLUSPLUS
2365        AC_TRY_COMPILE([],
2366            [#if (__SUNPRO_CC < 0x590)
2367            #error "Denied"
2368            #endif],
2369            _BAD_COMPILER=,_BAD_COMPILER=1)
2370        if test -n "$_BAD_COMPILER"; then
2371            _res="no"
2372            AC_MSG_ERROR([Sun C++ 5.9 (Sun Studio 12) or higher is required to build. Your compiler version is $CXX_VERSION .])
2373        else
2374            _res="yes"
2375        fi
2376        AC_TRY_COMPILE([],
2377            [#if (__SUNPRO_CC >= 0x5100)
2378            #error "Sun C++ 5.10 or above"
2379            #endif],
2380            _ABOVE_SS12U1=,_ABOVE_SS12U1=1)
2381        if test "$_ABOVE_SS12U1"; then
2382            # disable xannotate
2383            CXXFLAGS="$CXXFLAGS -xannotate=no"
2384        fi
2385        AC_MSG_RESULT([$_res])
2386        AC_LANG_RESTORE
2387     else
2388        LDFLAGS="$LDFLAGS -Wl,-z,ignore -Wl,-R,'\$\$ORIGIN:\$\$ORIGIN/..' -Wl,-z,lazyload -Wl,-z,combreloc -Wl,-z,muldefs"
2389        LIBS="-lc $LIBS"
2390        MKSHLIB_FORCE_ALL='-Wl,-z -Wl,allextract'
2391        MKSHLIB_UNFORCE_ALL='-Wl,-z -Wl,defaultextract'
2392        ASFLAGS="$ASFLAGS -fPIC"
2393        DSO_LDOPTS='-shared'
2394        WARNINGS_AS_ERRORS='-Werror'
2395        _WARNINGS_CFLAGS=''
2396        _WARNINGS_CXXFLAGS=''
2397        if test "$OS_RELEASE" = "5.3"; then
2398            AC_DEFINE(MUST_UNDEF_HAVE_BOOLEAN_AFTER_INCLUDES)
2399        fi
2400     fi
2401     if test "$OS_RELEASE" = "5.5.1"; then
2402         AC_DEFINE(NEED_USLEEP_PROTOTYPE)
2403     fi
2404     ;;
2406 *-sunos*)
2407     DSO_LDOPTS='-Bdynamic'
2408     MKSHLIB='-$(LD) $(DSO_LDOPTS) -o $@'
2409     MKCSHLIB='-$(LD) $(DSO_LDOPTS) -o $@'
2410     AC_DEFINE(SUNOS4)
2411     AC_DEFINE(SPRINTF_RETURNS_STRING)
2412     case "$(target_os)" in
2413     sunos4.1*)
2414         DLL_SUFFIX='.so.1.0'
2415         ;;
2416     esac
2417     ;;
2419 *-os2*)
2420     HOST_NSPR_MDCPUCFG='\"md/_os2.cfg\"'
2421     ;;
2423 esac
2425 case "$target" in
2426 *-*linux*)
2427     # Includes linux-android
2428     AC_DEFINE(XP_LINUX)
2429     ;;
2430 esac
2432 AC_SUBST(MOZ_LINKER)
2433 if test -n "$MOZ_LINKER"; then
2434   AC_DEFINE(MOZ_LINKER)
2437 dnl Only one oddball right now (QNX), but this gives us flexibility
2438 dnl if any other platforms need to override this in the future.
2439 AC_DEFINE_UNQUOTED(D_INO,$DIRENT_INO)
2441 dnl ========================================================
2442 dnl Any platform that doesn't have MKSHLIB_FORCE_ALL defined
2443 dnl by now will not have any way to link most binaries (tests
2444 dnl as well as viewer, apprunner, etc.), because some symbols
2445 dnl will be left out of the "composite" .so's by ld as unneeded.
2446 dnl So, by defining NO_LD_ARCHIVE_FLAGS for these platforms,
2447 dnl they can link in the static libs that provide the missing
2448 dnl symbols.
2449 dnl ========================================================
2450 NO_LD_ARCHIVE_FLAGS=
2451 if test -z "$MKSHLIB_FORCE_ALL" -o -z "$MKSHLIB_UNFORCE_ALL"; then
2452     NO_LD_ARCHIVE_FLAGS=1
2454 case "$target" in
2455 *-os2*)
2456     NO_LD_ARCHIVE_FLAGS=
2457     ;;
2458 *-aix4.3*|*-aix5*)
2459     NO_LD_ARCHIVE_FLAGS=
2460     ;;
2461 *-mingw*)
2462     if test -z "$GNU_CC"; then
2463         NO_LD_ARCHIVE_FLAGS=
2464     fi
2465     ;;
2466 esac
2467 AC_SUBST(NO_LD_ARCHIVE_FLAGS)
2469 dnl ========================================================
2470 dnl = Flags to strip unused symbols from .so components and
2471 dnl = to export jemalloc symbols when linking a program
2472 dnl ========================================================
2473 case "$target" in
2474     *-linux*|*-kfreebsd*-gnu|*-gnu*)
2475         MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,--version-script -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-version-script'
2476         ;;
2477     *-solaris*)
2478         if test -z "$GNU_CC"; then
2479          MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-M $(BUILD_TOOLS)/gnu-ld-scripts/components-mapfile'
2480         else
2481          if test -z "$GCC_USE_GNU_LD"; then
2482           MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,-M -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-mapfile'
2483          else
2484           MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,--version-script -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-version-script'
2485          fi
2486         fi
2487         ;;
2488     *-darwin*)
2489         MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,-exported_symbols_list -Wl,$(BUILD_TOOLS)/gnu-ld-scripts/components-export-list'
2490         ;;
2491     *-mingw*)
2492         if test -n "$GNU_CC"; then
2493            MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS='-Wl,--version-script,$(BUILD_TOOLS)/gnu-ld-scripts/components-version-script'
2494         fi
2495         ;;
2496 esac
2498 if test -z "$COMPILE_ENVIRONMENT"; then
2499     SKIP_COMPILER_CHECKS=1
2500     SKIP_LIBRARY_CHECKS=1
2501 else
2502     MOZ_COMPILER_OPTS
2505 if test -z "$SKIP_COMPILER_CHECKS"; then
2506 dnl Checks for typedefs, structures, and compiler characteristics.
2507 dnl ========================================================
2508 AC_HEADER_STDC
2509 AC_C_CONST
2510 AC_TYPE_MODE_T
2511 AC_TYPE_OFF_T
2512 AC_TYPE_PID_T
2513 AC_TYPE_SIZE_T
2514 AC_LANG_CPLUSPLUS
2515 AC_LANG_C
2516 AC_MSG_CHECKING(for ssize_t)
2517 AC_CACHE_VAL(ac_cv_type_ssize_t,
2518  [AC_TRY_COMPILE([#include <stdio.h>
2519                   #include <sys/types.h>],
2520                  [ssize_t foo = 0;],
2521                  [ac_cv_type_ssize_t=true],
2522                  [ac_cv_type_ssize_t=false])])
2523 if test "$ac_cv_type_ssize_t" = true ; then
2524   AC_DEFINE(HAVE_SSIZE_T)
2525   AC_MSG_RESULT(yes)
2526 else
2527   AC_MSG_RESULT(no)
2529 AC_STRUCT_ST_BLKSIZE
2530 AC_MSG_CHECKING(for siginfo_t)
2531 AC_CACHE_VAL(ac_cv_siginfo_t,
2532  [AC_TRY_COMPILE([#define _POSIX_C_SOURCE 199506L
2533                   #include <signal.h>],
2534                  [siginfo_t* info;],
2535                  [ac_cv_siginfo_t=true],
2536                  [ac_cv_siginfo_t=false])])
2537 if test "$ac_cv_siginfo_t" = true ; then
2538   AC_DEFINE(HAVE_SIGINFO_T)
2539   AC_MSG_RESULT(yes)
2540 else
2541   AC_MSG_RESULT(no)
2544 AC_LANG_CPLUSPLUS
2546 MOZ_CXX11
2548 AC_LANG_C
2550 dnl Check for .hidden assembler directive and visibility attribute.
2551 dnl Borrowed from glibc configure.in
2552 dnl ===============================================================
2553 if test "$GNU_CC"; then
2554   AC_CACHE_CHECK(for visibility(hidden) attribute,
2555                  ac_cv_visibility_hidden,
2556                  [cat > conftest.c <<EOF
2557                   int foo __attribute__ ((visibility ("hidden"))) = 1;
2559                   ac_cv_visibility_hidden=no
2560                   if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
2561                     if egrep '\.(hidden|private_extern).*foo' conftest.s >/dev/null; then
2562                       ac_cv_visibility_hidden=yes
2563                     fi
2564                   fi
2565                   rm -f conftest.[cs]
2566                  ])
2567   if test "$ac_cv_visibility_hidden" = "yes"; then
2568     AC_DEFINE(HAVE_VISIBILITY_HIDDEN_ATTRIBUTE)
2570     AC_CACHE_CHECK(for visibility(default) attribute,
2571                    ac_cv_visibility_default,
2572                    [cat > conftest.c <<EOF
2573                     int foo __attribute__ ((visibility ("default"))) = 1;
2575                     ac_cv_visibility_default=no
2576                     if ${CC-cc} -fvisibility=hidden -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
2577                       if ! egrep '\.(hidden|private_extern).*foo' conftest.s >/dev/null; then
2578                         ac_cv_visibility_default=yes
2579                       fi
2580                     fi
2581                     rm -f conftest.[cs]
2582                    ])
2583     if test "$ac_cv_visibility_default" = "yes"; then
2584       AC_DEFINE(HAVE_VISIBILITY_ATTRIBUTE)
2586       AC_CACHE_CHECK(for visibility pragma support,
2587                      ac_cv_visibility_pragma,
2588                      [cat > conftest.c <<EOF
2589 #pragma GCC visibility push(hidden)
2590                       int foo_hidden = 1;
2591 #pragma GCC visibility push(default)
2592                       int foo_default = 1;
2594                       ac_cv_visibility_pragma=no
2595                       if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
2596                         if egrep '\.(hidden|private_extern).*foo_hidden' conftest.s >/dev/null; then
2597                           if ! egrep '\.(hidden|private_extern).*foo_default' conftest.s > /dev/null; then
2598                             ac_cv_visibility_pragma=yes
2599                           fi
2600                         fi
2601                       fi
2602                       rm -f conftest.[cs]
2603                     ])
2604       if test "$ac_cv_visibility_pragma" = "yes"; then
2605         AC_CACHE_CHECK(For gcc visibility bug with class-level attributes (GCC bug 26905),
2606                        ac_cv_have_visibility_class_bug,
2607                        [cat > conftest.c <<EOF
2608 #pragma GCC visibility push(hidden)
2609 struct __attribute__ ((visibility ("default"))) TestStruct {
2610   static void Init();
2612 __attribute__ ((visibility ("default"))) void TestFunc() {
2613   TestStruct::Init();
2616                        ac_cv_have_visibility_class_bug=no
2617                        if ! ${CXX-g++} ${CXXFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -S -o conftest.S conftest.c > /dev/null 2>&1 ; then
2618                          ac_cv_have_visibility_class_bug=yes
2619                        else
2620                          if test `egrep -c '@PLT|\\$stub' conftest.S` = 0; then
2621                            ac_cv_have_visibility_class_bug=yes
2622                          fi
2623                        fi
2624                        rm -rf conftest.{c,S}
2625                        ])
2627         AC_CACHE_CHECK(For x86_64 gcc visibility bug with builtins (GCC bug 20297),
2628                        ac_cv_have_visibility_builtin_bug,
2629                        [cat > conftest.c <<EOF
2630 #pragma GCC visibility push(hidden)
2631 #pragma GCC visibility push(default)
2632 #include <string.h>
2633 #pragma GCC visibility pop
2635 __attribute__ ((visibility ("default"))) void Func() {
2636   char c[[100]];
2637   memset(c, 0, sizeof(c));
2640                        ac_cv_have_visibility_builtin_bug=no
2641                        if ! ${CC-cc} ${CFLAGS} ${DSO_PIC_CFLAGS} ${DSO_LDOPTS} -O2 -S -o conftest.S conftest.c > /dev/null 2>&1 ; then
2642                          ac_cv_have_visibility_builtin_bug=yes
2643                        else
2644                          if test `grep -c "@PLT" conftest.S` = 0; then
2645                            ac_cv_visibility_builtin_bug=yes
2646                          fi
2647                        fi
2648                        rm -f conftest.{c,S}
2649                        ])
2650         if test "$ac_cv_have_visibility_builtin_bug" = "no" -a \
2651                 "$ac_cv_have_visibility_class_bug" = "no"; then
2652           VISIBILITY_FLAGS='-I$(DIST)/system_wrappers -include $(topsrcdir)/config/gcc_hidden.h'
2653           WRAP_SYSTEM_INCLUDES=1
2654           STL_FLAGS='-I$(DIST)/stl_wrappers'
2655           WRAP_STL_INCLUDES=1
2656         else
2657           VISIBILITY_FLAGS='-fvisibility=hidden'
2658         fi # have visibility pragma bug
2659       fi   # have visibility pragma
2660     fi     # have visibility(default) attribute
2661   fi       # have visibility(hidden) attribute
2662 fi         # GNU_CC
2664 # visibility hidden flag for Sun Studio on Solaris
2665 if test "$SOLARIS_SUNPRO_CC"; then
2666 VISIBILITY_FLAGS='-xldscope=hidden'
2667 fi         # Sun Studio on Solaris
2669 AC_SUBST(WRAP_SYSTEM_INCLUDES)
2670 AC_SUBST(VISIBILITY_FLAGS)
2672 MOZ_GCC_PR49911
2673 MOZ_GCC_PR39608
2674 if test "$OS_TARGET" != WINNT; then
2675     # Only run this test with clang on non-Windows platforms, because clang
2676     # cannot do enough code gen for now to make this test work correctly.
2677     MOZ_LLVM_PR8927
2680 dnl Check for __force_align_arg_pointer__ for SSE2 on gcc
2681 dnl ========================================================
2682 if test "$GNU_CC"; then
2683   CFLAGS_save="${CFLAGS}"
2684   CFLAGS="${CFLAGS} -Werror"
2685   AC_CACHE_CHECK(for __force_align_arg_pointer__ attribute,
2686                  ac_cv_force_align_arg_pointer,
2687                  [AC_TRY_COMPILE([__attribute__ ((__force_align_arg_pointer__)) void test() {}],
2688                                  [],
2689                                  ac_cv_force_align_arg_pointer="yes",
2690                                  ac_cv_force_align_arg_pointer="no")])
2691   CFLAGS="${CFLAGS_save}"
2692   if test "$ac_cv_force_align_arg_pointer" = "yes"; then
2693     HAVE_GCC_ALIGN_ARG_POINTER=1
2694   else
2695     HAVE_GCC_ALIGN_ARG_POINTER=
2696   fi
2698 AC_SUBST(HAVE_GCC_ALIGN_ARG_POINTER)
2700 dnl Checks for header files.
2701 dnl ========================================================
2702 AC_HEADER_DIRENT
2703 case "$target_os" in
2704 freebsd*|openbsd*)
2705 # for stuff like -lXshm
2706     CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}"
2707     ;;
2708 esac
2709 MOZ_CHECK_COMMON_HEADERS
2711 dnl These are all the places some variant of statfs can be hiding.
2712 MOZ_CHECK_HEADERS(sys/statvfs.h sys/statfs.h sys/vfs.h sys/mount.h)
2714 dnl Quota support
2715 MOZ_CHECK_HEADERS(sys/quota.h sys/sysmacros.h)
2716 MOZ_CHECK_HEADERS([linux/quota.h],,,[#include <sys/socket.h>])
2718 dnl SCTP support - needs various network include headers
2719 MOZ_CHECK_HEADERS([linux/if_addr.h linux/rtnetlink.h],,,[#include <sys/socket.h>])
2721 MOZ_CHECK_HEADERS(sys/types.h netinet/in.h byteswap.h)
2723 dnl Check for sin_len and sin6_len - used by SCTP; only appears in Mac/*BSD generally
2724 AC_CACHE_CHECK(for sockaddr_in.sin_len,
2725                    ac_cv_sockaddr_in_sin_len,
2726                    [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
2727                                     #include <sys/types.h>
2728                                     #endif
2729                                     #include <netinet/in.h>
2730                                     struct sockaddr_in x;
2731                                     void *foo = (void*) &x.sin_len;],
2732                                    [],
2733                                    [ac_cv_sockaddr_in_sin_len=true],
2734                                    [ac_cv_sockaddr_in_sin_len=false])])
2735 if test "$ac_cv_sockaddr_in_sin_len" = true ; then
2736   AC_DEFINE(HAVE_SIN_LEN)
2737 dnl HAVE_CONN_LEN must be the same as HAVE_SIN_LEN (and HAVE_SIN6_LEN too)
2738   AC_DEFINE(HAVE_SCONN_LEN)
2741 AC_CACHE_CHECK(for sockaddr_in6.sin6_len,
2742                ac_cv_sockaddr_in6_sin6_len,
2743                [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
2744                                 #include <sys/types.h>
2745                                 #endif
2746                                 #include <netinet/in.h>
2747                                 struct sockaddr_in6 x;
2748                                 void *foo = (void*) &x.sin6_len;],
2749                                [],
2750                                [ac_cv_sockaddr_in6_sin6_len=true],
2751                                [ac_cv_sockaddr_in6_sin6_len=false])])
2752 if test "$ac_cv_sockaddr_in6_sin6_len" = true ; then
2753   AC_DEFINE(HAVE_SIN6_LEN)
2756 AC_CACHE_CHECK(for sockaddr.sa_len,
2757                ac_cv_sockaddr_sa_len,
2758                [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
2759                                 #include <sys/types.h>
2760                                 #endif
2761                                 #include <sys/socket.h>
2762                                 struct sockaddr x;
2763                                 void *foo = (void*) &x.sa_len;],
2764                                [],
2765                                [ac_cv_sockaddr_sa_len=true],
2766                                [ac_cv_sockaddr_sa_len=false])])
2767 if test "$ac_cv_sockaddr_sa_len" = true ; then
2768   AC_DEFINE(HAVE_SA_LEN)
2771 AC_ARG_ENABLE(dtrace,
2772               [  --enable-dtrace         build with dtrace support if available (default=no)],
2773               [enable_dtrace="yes"],)
2774 if test "x$enable_dtrace" = "xyes"; then
2775   MOZ_CHECK_HEADER(sys/sdt.h, HAVE_DTRACE=1)
2776   if test -n "$HAVE_DTRACE"; then
2777       AC_DEFINE(INCLUDE_MOZILLA_DTRACE)
2778   else
2779       AC_MSG_ERROR([dtrace enabled but sys/sdt.h not found]);
2780   fi
2782 AC_SUBST(HAVE_DTRACE)
2784 case $target in
2785 *-aix4.3*|*-aix5*)
2786         ;;
2788         MOZ_CHECK_HEADERS(sys/cdefs.h)
2789         ;;
2790 esac
2792 MOZ_LINUX_PERF_EVENT
2794 dnl Checks for libraries.
2795 dnl ========================================================
2796 case $target in
2797 *-hpux11.*)
2798         ;;
2800         AC_CHECK_LIB(c_r, gethostbyname_r)
2801         ;;
2802 esac
2804 dnl We don't want to link with libdl even if it's present on OS X, since
2805 dnl it's not used and not part of the default installation. OS/2 has dlfcn
2806 dnl in libc.
2807 dnl We don't want to link against libm or libpthread on Darwin since
2808 dnl they both are just symlinks to libSystem and explicitly linking
2809 dnl against libSystem causes issues when debugging (see bug 299601).
2810 case $target in
2811 *-darwin*)
2812     ;;
2813 *-os2*)
2814     ;;
2816     AC_SEARCH_LIBS(dlopen, dl,
2817         MOZ_CHECK_HEADER(dlfcn.h,
2818         AC_DEFINE(HAVE_DLOPEN)))
2819     ;;
2820 esac
2822 _SAVE_CFLAGS="$CFLAGS"
2823 CFLAGS="$CFLAGS -D_GNU_SOURCE"
2824 AC_CHECK_FUNCS(dladdr memmem)
2825 CFLAGS="$_SAVE_CFLAGS"
2827 if test ! "$GNU_CXX"; then
2829     case $target in
2830     *-aix*)
2831         AC_CHECK_LIB(C_r, demangle)
2832         ;;
2833      *)
2834         AC_CHECK_LIB(C, demangle)
2835         ;;
2836      esac
2839 dnl OS/2 has socket in libc.
2840 case $target in
2841 *-os2*)
2842     ;;
2844     AC_CHECK_LIB(socket, socket)
2845 esac
2847 XLDFLAGS="$X_LIBS"
2848 XLIBS="$X_EXTRA_LIBS"
2850 dnl ========================================================
2851 dnl Checks for X libraries.
2852 dnl Ordering is important.
2853 dnl Xt is dependent upon SM as of X11R6
2854 dnl ========================================================
2855 if test "$no_x" = "yes"; then
2856     AC_DEFINE(NO_X11)
2857 else
2858     AC_DEFINE_UNQUOTED(FUNCPROTO,15)
2859         XLIBS="-lX11 $XLIBS"
2860         _SAVE_LDFLAGS="$LDFLAGS"
2861         LDFLAGS="$XLDFLAGS $LDFLAGS"
2862         AC_CHECK_LIB(X11, XDrawLines, [X11_LIBS="-lX11"],
2863                 [MISSING_X="$MISSING_X -lX11"], $XLIBS)
2864         AC_CHECK_LIB(Xext, XextAddDisplay, [XEXT_LIBS="-lXext"],
2865                 [MISSING_X="$MISSING_X -lXext"], $XLIBS)
2867         AC_CHECK_LIB(Xt, XtFree, [ XT_LIBS="-lXt"], [
2868         unset ac_cv_lib_Xt_XtFree
2869             AC_CHECK_LIB(ICE, IceFlush, [XT_LIBS="-lICE $XT_LIBS"],, $XT_LIBS $XLIBS)
2870             AC_CHECK_LIB(SM, SmcCloseConnection, [XT_LIBS="-lSM $XT_LIBS"],, $XT_LIBS $XLIBS)
2871         AC_CHECK_LIB(Xt, XtFree, [ XT_LIBS="-lXt $XT_LIBS"],
2872                     [MISSING_X="$MISSING_X -lXt"], $X_PRE_LIBS $XT_LIBS $XLIBS)
2873         ])
2875     # AIX needs the motif library linked before libXt to prevent
2876     # crashes in plugins linked against Motif - Bug #98892
2877     case "${target_os}" in
2878     aix*)
2879         XT_LIBS="-lXm $XT_LIBS"
2880         ;;
2881     esac
2883     dnl ========================================================
2884     dnl = Check for XShm
2885     dnl ========================================================
2886     AC_CHECK_LIB(Xext, XShmCreateImage, _HAVE_XSHM_XEXT=1,,
2887         $XLIBS $XEXT_LIBS)
2889     dnl ========================================================
2890     dnl = Check for Xss
2891     dnl ========================================================
2892     MOZ_CHECK_HEADER(X11/extensions/scrnsaver.h,
2893         AC_CHECK_LIB(Xss, XScreenSaverQueryInfo,
2894             [XSS_LIBS="-lXss $XEXT_LIBS $XLIBS"
2895              AC_DEFINE(HAVE_LIBXSS)],, $XEXT_LIBS $XLIBS))
2897         LDFLAGS="$_SAVE_LDFLAGS"
2898 fi # $no_x
2900 AC_SUBST(XCFLAGS)
2901 AC_SUBST(XLDFLAGS)
2902 AC_SUBST(XLIBS)
2903 AC_SUBST(XEXT_LIBS)
2904 AC_SUBST(XT_LIBS)
2905 AC_SUBST(XSS_LIBS)
2907 dnl ========================================================
2908 dnl = pthread support
2909 dnl = Start by checking whether the system support pthreads
2910 dnl ========================================================
2911 case "$target_os" in
2912 darwin*)
2913     MOZ_USE_PTHREADS=1
2914     ;;
2916     MOZ_CHECK_PTHREADS(pthreads,
2917         MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lpthreads",
2918         MOZ_CHECK_PTHREADS(pthread,
2919             MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lpthread",
2920             MOZ_CHECK_PTHREADS(c_r,
2921                 MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lc_r",
2922                 MOZ_CHECK_PTHREADS(c,
2923                     MOZ_USE_PTHREADS=1
2924                 )
2925             )
2926         )
2927     )
2928     ;;
2929 esac
2931 dnl ========================================================
2932 dnl Check the command line for --with-pthreads
2933 dnl ========================================================
2934 MOZ_ARG_WITH_BOOL(pthreads,
2935 [  --with-pthreads         Force use of system pthread library with NSPR ],
2936 [ if test "$MOZ_USE_PTHREADS"x = x; then
2937     AC_MSG_ERROR([ --with-pthreads specified for a system without pthread support ]);
2938 fi],
2939     MOZ_USE_PTHREADS=
2940     _PTHREAD_LDFLAGS=
2943 dnl ========================================================
2944 dnl Do the platform specific pthread hackery
2945 dnl ========================================================
2946 if test "$MOZ_USE_PTHREADS"x != x
2947 then
2948         dnl
2949         dnl See if -pthread is supported.
2950         dnl
2951         rm -f conftest*
2952         ac_cv_have_dash_pthread=no
2953         AC_MSG_CHECKING(whether ${CC-cc} accepts -pthread)
2954         echo 'int main() { return 0; }' | cat > conftest.c
2955         ${CC-cc} -pthread -o conftest conftest.c > conftest.out 2>&1
2956         if test $? -eq 0; then
2957                 if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" -a -z "`egrep -i '(error|incorrect)' conftest.out`" ; then
2958                         ac_cv_have_dash_pthread=yes
2959                 case "$target_os" in
2960                 freebsd*)
2961 # Freebsd doesn't use -pthread for compiles, it uses them for linking
2962                 ;;
2963                 *)
2964                             CFLAGS="$CFLAGS -pthread"
2965                             CXXFLAGS="$CXXFLAGS -pthread"
2966                 ;;
2967                 esac
2968                 fi
2969         fi
2970         rm -f conftest*
2971     AC_MSG_RESULT($ac_cv_have_dash_pthread)
2973         dnl
2974         dnl See if -pthreads is supported.
2975         dnl
2976     ac_cv_have_dash_pthreads=no
2977     if test "$ac_cv_have_dash_pthread" = "no"; then
2978             AC_MSG_CHECKING(whether ${CC-cc} accepts -pthreads)
2979         echo 'int main() { return 0; }' | cat > conftest.c
2980             ${CC-cc} -pthreads -o conftest conftest.c > conftest.out 2>&1
2981         if test $? -eq 0; then
2982                 if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthreads`" -a -z "`egrep -i '(error|incorrect)' conftest.out`" ; then
2983                             ac_cv_have_dash_pthreads=yes
2984                             CFLAGS="$CFLAGS -pthreads"
2985                             CXXFLAGS="$CXXFLAGS -pthreads"
2986                     fi
2987             fi
2988             rm -f conftest*
2989         AC_MSG_RESULT($ac_cv_have_dash_pthreads)
2990     fi
2992         case "$target" in
2993             *-*-freebsd*)
2994                         AC_DEFINE(_REENTRANT)
2995                         AC_DEFINE(_THREAD_SAFE)
2996                         dnl -pthread links in -lpthread, so don't specify it explicitly.
2997                         if test "$ac_cv_have_dash_pthread" = "yes"; then
2998                                 _PTHREAD_LDFLAGS="-pthread"
2999                         fi
3000                         ;;
3002             *-*-openbsd*|*-*-bsdi*)
3003                         AC_DEFINE(_REENTRANT)
3004                         AC_DEFINE(_THREAD_SAFE)
3005                         dnl -pthread links in -lc_r, so don't specify it explicitly.
3006                         if test "$ac_cv_have_dash_pthread" = "yes"; then
3007                 _PTHREAD_LDFLAGS="-pthread"
3008                         fi
3009                         ;;
3011             *-*-linux*|*-*-kfreebsd*-gnu|*-*-gnu*)
3012                         AC_DEFINE(_REENTRANT)
3013                         ;;
3015             *-aix4.3*|*-aix5*)
3016                         AC_DEFINE(_REENTRANT)
3017                         ;;
3019             *-hpux11.*)
3020                         AC_DEFINE(_REENTRANT)
3021                         ;;
3023             *-*-solaris*)
3024                         AC_DEFINE(_REENTRANT)
3025                         if test "$SOLARIS_SUNPRO_CC"; then
3026                                 CFLAGS="$CFLAGS -mt"
3027                                 CXXFLAGS="$CXXFLAGS -mt"
3028                         fi
3029                         ;;
3030         esac
3031     LDFLAGS="${_PTHREAD_LDFLAGS} ${LDFLAGS}"
3032     AC_SUBST(MOZ_USE_PTHREADS)
3036 dnl Checks for library functions.
3037 dnl ========================================================
3038 AC_PROG_GCC_TRADITIONAL
3039 AC_FUNC_MEMCMP
3040 AC_CHECK_FUNCS(random strerror lchown fchmod snprintf memmove stat64 lstat64 truncate64 setbuf isatty)
3041 AC_CHECK_FUNCS(statvfs64 statvfs statfs64 statfs)
3042 AC_CHECK_FUNCS(flockfile getpagesize)
3043 AC_CHECK_FUNCS(localtime_r strtok_r)
3045 dnl check for clock_gettime(), the CLOCK_MONOTONIC clock
3046 AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC),
3047                ac_cv_clock_monotonic,
3048                [for libs in "" -lrt; do
3049                     _SAVE_LIBS="$LIBS"
3050                     LIBS="$LIBS $libs"
3051                     AC_TRY_LINK([#include <time.h>],
3052                                  [ struct timespec ts;
3053                                    clock_gettime(CLOCK_MONOTONIC, &ts); ],
3054                                  ac_cv_clock_monotonic=$libs
3055                                  LIBS="$_SAVE_LIBS"
3056                                  break,
3057                                  ac_cv_clock_monotonic=no)
3058                     LIBS="$_SAVE_LIBS"
3059                 done])
3060 if test "$ac_cv_clock_monotonic" != "no"; then
3061     HAVE_CLOCK_MONOTONIC=1
3062     REALTIME_LIBS=$ac_cv_clock_monotonic
3063     AC_DEFINE(HAVE_CLOCK_MONOTONIC)
3064     AC_SUBST(HAVE_CLOCK_MONOTONIC)
3065     AC_SUBST(REALTIME_LIBS)
3068 dnl check for wcrtomb/mbrtowc
3069 dnl =======================================================================
3070 if test -z "$MACOS_DEPLOYMENT_TARGET" || test "$MACOS_DEPLOYMENT_TARGET" -ge "100300"; then
3071 AC_LANG_SAVE
3072 AC_LANG_CPLUSPLUS
3073 AC_CACHE_CHECK(for wcrtomb,
3074     ac_cv_have_wcrtomb,
3075     [AC_TRY_LINK([#include <wchar.h>],
3076                  [mbstate_t ps={0};wcrtomb(0,'f',&ps);],
3077                  ac_cv_have_wcrtomb="yes",
3078                  ac_cv_have_wcrtomb="no")])
3079 if test "$ac_cv_have_wcrtomb" = "yes"; then
3080     AC_DEFINE(HAVE_WCRTOMB)
3082 AC_CACHE_CHECK(for mbrtowc,
3083     ac_cv_have_mbrtowc,
3084     [AC_TRY_LINK([#include <wchar.h>],
3085                  [mbstate_t ps={0};mbrtowc(0,0,0,&ps);],
3086                  ac_cv_have_mbrtowc="yes",
3087                  ac_cv_have_mbrtowc="no")])
3088 if test "$ac_cv_have_mbrtowc" = "yes"; then
3089     AC_DEFINE(HAVE_MBRTOWC)
3091 AC_LANG_RESTORE
3094 AC_CACHE_CHECK(
3095     [for res_ninit()],
3096     ac_cv_func_res_ninit,
3097     [if test "$OS_TARGET" = NetBSD -o "$OS_TARGET" = OpenBSD; then
3098         dnl no need for res_ninit() on NetBSD and OpenBSD
3099         ac_cv_func_res_ninit=no
3100      else
3101         AC_TRY_LINK([
3102             #ifdef linux
3103             #define _BSD_SOURCE 1
3104             #endif
3105             #include <sys/types.h>
3106             #include <netinet/in.h>
3107             #include <arpa/nameser.h>
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_FMP4=
3943 MOZ_WEBRTC=1
3944 MOZ_PEERCONNECTION=
3945 MOZ_SRTP=
3946 MOZ_WEBRTC_SIGNALING=
3947 MOZ_WEBRTC_ASSERT_ALWAYS=1
3948 MOZ_SCTP=
3949 MOZ_MEDIA_PLUGINS=
3950 MOZ_MEDIA_NAVIGATOR=
3951 MOZ_OMX_PLUGIN=
3952 MOZ_VP8=
3953 MOZ_VP8_ERROR_CONCEALMENT=
3954 MOZ_VP8_ENCODER=
3955 MOZ_WEBSPEECH=1
3956 VPX_AS=
3957 VPX_ASFLAGS=
3958 VPX_AS_DASH_C_FLAG=
3959 VPX_AS_CONVERSION=
3960 VPX_ASM_SUFFIX=
3961 VPX_X86_ASM=
3962 VPX_ARM_ASM=
3963 LIBJPEG_TURBO_AS=
3964 LIBJPEG_TURBO_ASFLAGS=
3965 LIBJPEG_TURBO_X86_ASM=
3966 LIBJPEG_TURBO_X64_ASM=
3967 LIBJPEG_TURBO_ARM_ASM=
3968 MOZ_PANGO=1
3969 MOZ_PERMISSIONS=1
3970 MOZ_PLACES=1
3971 MOZ_SOCIAL=1
3972 MOZ_PREF_EXTENSIONS=1
3973 MOZ_PROFILELOCKING=1
3974 MOZ_REFLOW_PERF=
3975 MOZ_SAFE_BROWSING=
3976 MOZ_HELP_VIEWER=
3977 MOZ_SPELLCHECK=1
3978 MOZ_ANDROID_OMTC=
3979 MOZ_TOOLKIT_SEARCH=1
3980 MOZ_UI_LOCALE=en-US
3981 MOZ_UNIVERSALCHARDET=1
3982 MOZ_URL_CLASSIFIER=
3983 MOZ_XUL=1
3984 MOZ_ZIPWRITER=1
3985 NS_PRINTING=1
3986 MOZ_PDF_PRINTING=
3987 MOZ_DISABLE_CRYPTOLEGACY=
3988 NSS_DISABLE_DBM=
3989 NECKO_COOKIES=1
3990 NECKO_PROTOCOLS_DEFAULT="about app data file ftp http res viewsource websocket wyciwyg device"
3991 if test -n "$MOZ_RTSP"; then
3992   NECKO_PROTOCOLS_DEFAULT="$NECKO_PROTOCOLS_DEFAULT rtsp"
3994 USE_ARM_KUSER=
3995 BUILD_CTYPES=1
3996 MOZ_USE_NATIVE_POPUP_WINDOWS=
3997 MOZ_ANDROID_HISTORY=
3998 MOZ_WEBSMS_BACKEND=
3999 MOZ_ANDROID_BEAM=
4000 ACCESSIBILITY=1
4001 MOZ_TIME_MANAGER=
4002 MOZ_PAY=
4003 MOZ_AUDIO_CHANNEL_MANAGER=
4004 NSS_NO_LIBPKIX=
4005 MOZ_CONTENT_SANDBOX=
4006 MOZ_CONTENT_SANDBOX_REPORTER=
4008 case "$target_os" in
4009     mingw*)
4010         NS_ENABLE_TSF=1
4011         AC_DEFINE(NS_ENABLE_TSF)
4012         ;;
4013 esac
4015 case "${target}" in
4016     *-android*|*-linuxandroid*)
4017         if test "$CPU_ARCH" = "arm" ; then
4018           USE_ARM_KUSER=1
4019         fi
4021         NSS_DISABLE_DBM=1
4022         MOZ_THEME_FASTSTRIPE=1
4023         MOZ_TREE_FREETYPE=1
4024         MOZ_MEMORY=1
4025         MOZ_RAW=1
4026         ;;
4028 esac
4030 MOZ_ARG_WITH_STRING(external-source-dir,
4031 [  --with-external-source-dir=dir
4032                           External directory containing additional build files.],
4033 [ EXTERNAL_SOURCE_DIR=$withval])
4034 AC_SUBST(EXTERNAL_SOURCE_DIR)
4036 MOZ_ARG_ENABLE_STRING(application,
4037 [  --enable-application=APP
4038                           Options include:
4039                             browser (Firefox)
4040                             xulrunner
4041                             tools/update-packaging (AUS-related packaging tools)],
4042 [ MOZ_BUILD_APP=$enableval ] )
4044 MOZ_ARG_WITH_STRING(xulrunner-stub-name,
4045 [  --with-xulrunner-stub-name=appname   Create the xulrunner stub with the given name],
4046   XULRUNNER_STUB_NAME=$withval)
4048 if test -z "$XULRUNNER_STUB_NAME"; then
4049   case "$target_os" in
4050   darwin*)
4051     XULRUNNER_STUB_NAME=xulrunner
4052     ;;
4053   *)
4054     XULRUNNER_STUB_NAME=xulrunner-stub
4055   esac
4057 AC_SUBST(XULRUNNER_STUB_NAME)
4059 AC_MSG_CHECKING([for application to build])
4060 if test -z "$MOZ_BUILD_APP"; then
4061   AC_MSG_RESULT([browser])
4062   MOZ_BUILD_APP=browser
4063 else
4064   # "mobile" no longer exists.
4065   if test "$MOZ_BUILD_APP" = "mobile" ; then
4066     AC_MSG_RESULT([none])
4067     AC_MSG_ERROR([--enable-application=mobile is no longer supported.])
4068   fi
4069   # We have a valid application only if it has a build.mk file in its top
4070   # directory.
4071   if test ! -f "${srcdir}/${MOZ_BUILD_APP}/build.mk" ; then
4072     AC_MSG_RESULT([none])
4073     AC_MSG_ERROR([--enable-application value not recognized (${MOZ_BUILD_APP}/build.mk does not exist).])
4074   else
4075     AC_MSG_RESULT([$MOZ_BUILD_APP])
4076   fi
4079 # The app update channel is 'default' when not supplied. The value is used in
4080 # the application's confvars.sh so it must be set before confvars.sh is called.
4081 MOZ_ARG_ENABLE_STRING([update-channel],
4082 [  --enable-update-channel=CHANNEL
4083                           Select application update channel (default=default)],
4084     MOZ_UPDATE_CHANNEL=`echo $enableval | tr A-Z a-z`)
4086 if test -z "$MOZ_UPDATE_CHANNEL"; then
4087     MOZ_UPDATE_CHANNEL=default
4089 AC_DEFINE_UNQUOTED(MOZ_UPDATE_CHANNEL, $MOZ_UPDATE_CHANNEL)
4090 AC_SUBST(MOZ_UPDATE_CHANNEL)
4092 # Allow to specify a Google API key file that contains the secret key to be
4093 # used for various Google API requests.
4094 MOZ_ARG_WITH_STRING(google-api-keyfile,
4095 [  --with-google-api-keyfile=file   Use the secret key contained in the given keyfile for Google API requests],
4096   MOZ_GOOGLE_API_KEY=`cat $withval`)
4097 if test -z "$MOZ_GOOGLE_API_KEY"; then
4098     MOZ_GOOGLE_API_KEY=no-google-api-key
4100 AC_SUBST(MOZ_GOOGLE_API_KEY)
4102 # Allow the application to influence configure with a confvars.sh script.
4103 AC_MSG_CHECKING([if app-specific confvars.sh exists])
4104 if test -f "${srcdir}/${MOZ_BUILD_APP}/confvars.sh" ; then
4105   AC_MSG_RESULT([${srcdir}/${MOZ_BUILD_APP}/confvars.sh])
4106   . "${srcdir}/${MOZ_BUILD_APP}/confvars.sh"
4107 else
4108   AC_MSG_RESULT([no])
4111 # Allow influencing configure with a defines.sh script.
4112 . "${srcdir}/build/defines.sh"
4114 # If we're not building a release build, define EARLY_BETA_OR_EARLIER if it is
4115 # set in defines.sh
4116 if test "$BUILDING_RELEASE"; then
4117   # Override value in defines.sh, if any
4118   EARLY_BETA_OR_EARLIER=
4119 elif test "$EARLY_BETA_OR_EARLIER"; then
4120   AC_DEFINE(EARLY_BETA_OR_EARLIER)
4122 AC_SUBST(EARLY_BETA_OR_EARLIER)
4124 # Allow the application to provide a subconfigure script
4125 if test -f "${srcdir}/${MOZ_BUILD_APP}/configure.in" ; then
4126   do_output_subdirs() {
4127     if test -n "$_subconfigure_subdirs"; then
4128       AC_MSG_ERROR([Cannot specify more than one sub-sub-configure])
4129      fi
4130     _subconfigure_subdir="$1"
4131     _subconfigure_config_args="$ac_configure_args"
4132   }
4133   tmpscript=`$PYTHON -c 'import os, tempfile; print tempfile.mktemp(prefix="subscript.").replace(os.sep, "/")'` || exit 1
4134   m4 "${srcdir}/build/autoconf/subconfigure.m4" \
4135      "${srcdir}/build/autoconf/altoptions.m4" \
4136      "${srcdir}/${MOZ_BUILD_APP}/configure.in" > $tmpscript
4137   . $tmpscript
4138   rm -f $tmpscript
4141 # Allow someone to change MOZ_APP_NAME and MOZ_APP_BASENAME in mozconfig
4142 MOZ_ARG_WITH_STRING(app-name,
4143 [--with-app-name=APPNAME sets MOZ_APP_NAME to APPNAME],
4144 WITH_APP_NAME=$withval,
4147 if test -n "$WITH_APP_NAME" ; then
4148     MOZ_APP_NAME="$WITH_APP_NAME"
4151 MOZ_ARG_WITH_STRING(app-basename,
4152 [--with-app-basename=BASENAME sets MOZ_APP_BASENAME to BASENAME],
4153 WITH_APP_BASENAME=$withval,
4156 if test -n "$WITH_APP_BASENAME" ; then
4157     MOZ_APP_BASENAME="$WITH_APP_BASENAME"
4160 # Now is a good time to test for logic errors, define mismatches, etc.
4161 case "$MOZ_BUILD_APP" in
4162 xulrunner)
4163   if test "$LIBXUL_SDK"; then
4164     AC_MSG_ERROR([Building XULRunner --with-libxul-sdk doesn't make sense; XULRunner provides the libxul SDK.])
4165   fi
4166   ;;
4167 esac
4169 # Special cases where we need to AC_DEFINE something. Also a holdover for apps
4170 # that haven't made a confvars.sh yet. Don't add new stuff here, use
4171 # MOZ_BUILD_APP.
4172 case "$MOZ_BUILD_APP" in
4173 browser)
4174   AC_DEFINE(MOZ_PHOENIX)
4175   ;;
4177 xulrunner)
4178   AC_DEFINE(MOZ_XULRUNNER)
4179   ;;
4180 b2g)
4181   AC_DEFINE(MOZ_B2G)
4182   ;;
4183 esac
4185 AC_SUBST(MOZ_BUILD_APP)
4186 AC_SUBST(MOZ_PHOENIX)
4187 AC_SUBST(MOZ_XULRUNNER)
4188 AC_SUBST(MOZ_B2G)
4190 AC_DEFINE_UNQUOTED(MOZ_BUILD_APP,$MOZ_BUILD_APP)
4192 dnl ========================================================
4193 dnl Check android sdk version depending on mobile target
4194 dnl ========================================================
4196 if test -z "$gonkdir" ; then
4197     # Minimum Android SDK API Level we require.
4198     case "$MOZ_BUILD_APP" in
4199     mobile/android)
4200         android_min_api_level=16
4201         case "$target" in
4202         *-android*|*-linuxandroid*)
4203             :
4204             ;;
4205         *)
4206             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])
4207             ;;
4208         esac
4209         ;;
4210     esac
4212     MOZ_ANDROID_SDK($android_min_api_level)
4215 dnl ========================================================
4216 dnl =
4217 dnl = Toolkit Options
4218 dnl =
4219 dnl ========================================================
4220 MOZ_ARG_HEADER(Toolkit Options)
4222     dnl ========================================================
4223     dnl = Select the default toolkit
4224     dnl ========================================================
4225         MOZ_ARG_ENABLE_STRING(default-toolkit,
4226         [  --enable-default-toolkit=TK
4227                           Select default toolkit
4228                           Platform specific defaults:
4229                             Mac OS X - cairo-cocoa
4230                             OS/2 - cairo-os2
4231                             Win32 - cairo-windows
4232                             * - cairo-gtk2
4233                             * - cairo-gtk3
4234                             * - cairo-qt],
4235     [ _DEFAULT_TOOLKIT=$enableval ],
4236     [ _DEFAULT_TOOLKIT=$_PLATFORM_DEFAULT_TOOLKIT])
4238     if test "$_DEFAULT_TOOLKIT" = "cairo-windows" \
4239         -o "$_DEFAULT_TOOLKIT" = "cairo-gtk2" \
4240         -o "$_DEFAULT_TOOLKIT" = "cairo-gtk2-x11" \
4241         -o "$_DEFAULT_TOOLKIT" = "cairo-gtk3" \
4242         -o "$_DEFAULT_TOOLKIT" = "cairo-qt" \
4243         -o "$_DEFAULT_TOOLKIT" = "cairo-os2" \
4244         -o "$_DEFAULT_TOOLKIT" = "cairo-cocoa" \
4245         -o "$_DEFAULT_TOOLKIT" = "cairo-uikit" \
4246         -o "$_DEFAULT_TOOLKIT" = "cairo-android" \
4247         -o "$_DEFAULT_TOOLKIT" = "cairo-gonk"
4248     then
4249         dnl nglayout only supports building with one toolkit,
4250         dnl so ignore everything after the first comma (",").
4251         MOZ_WIDGET_TOOLKIT=`echo "$_DEFAULT_TOOLKIT" | sed -e "s/,.*$//"`
4252     else
4253         AC_MSG_ERROR([You must specify a default toolkit (perhaps $_PLATFORM_DEFAULT_TOOLKIT).])
4254     fi
4256 MOZ_ARG_WITHOUT_BOOL(x,
4257 [  --without-x              Build without X11],
4258     WITHOUT_X11=1)
4260 dnl ========================================================
4261 dnl = Enable the toolkit as needed                         =
4262 dnl ========================================================
4264 MOZ_WIDGET_GTK=
4266 case "$MOZ_WIDGET_TOOLKIT" in
4268 cairo-windows)
4269     MOZ_WIDGET_TOOLKIT=windows
4270     MOZ_WEBGL=1
4271     MOZ_PDF_PRINTING=1
4272     MOZ_INSTRUMENT_EVENT_LOOP=1
4273     if test -n "$GNU_CC"; then
4274         MOZ_FOLD_LIBS=
4275     fi
4276     ;;
4278 cairo-gtk3)
4279     MOZ_WIDGET_TOOLKIT=gtk3
4280     MOZ_ENABLE_GTK=1
4281     MOZ_ENABLE_GTK3=1
4282     MOZ_ENABLE_XREMOTE=1
4283     MOZ_WEBGL=1
4284     MOZ_GL_DEFAULT_PROVIDER=GLX
4286     AC_DEFINE(MOZ_X11)
4287     MOZ_X11=1
4288     USE_FC_FREETYPE=1
4290     TK_CFLAGS='$(MOZ_GTK3_CFLAGS)'
4291     TK_LIBS='$(MOZ_GTK3_LIBS)'
4292     MOZ_WIDGET_GTK=3
4293     AC_DEFINE_UNQUOTED(MOZ_WIDGET_GTK,$MOZ_WIDGET_GTK)
4294     MOZ_PDF_PRINTING=1
4295     MOZ_INSTRUMENT_EVENT_LOOP=1
4296     ;;
4298 cairo-gtk2|cairo-gtk2-x11)
4299     MOZ_WIDGET_TOOLKIT=gtk2
4300     MOZ_ENABLE_GTK=1
4301     MOZ_ENABLE_GTK2=1
4302     MOZ_ENABLE_XREMOTE=1
4303     MOZ_WEBGL=1
4304     MOZ_GL_DEFAULT_PROVIDER=GLX
4306     AC_DEFINE(MOZ_X11)
4307     MOZ_X11=1
4308     USE_FC_FREETYPE=1
4310     TK_CFLAGS='$(MOZ_GTK2_CFLAGS)'
4311     TK_LIBS='$(MOZ_GTK2_LIBS)'
4312     AC_DEFINE(MOZ_WIDGET_GTK2)
4313     MOZ_WIDGET_GTK=2
4314     AC_DEFINE_UNQUOTED(MOZ_WIDGET_GTK,$MOZ_WIDGET_GTK)
4315     MOZ_PDF_PRINTING=1
4316     MOZ_INSTRUMENT_EVENT_LOOP=1
4317     ;;
4319 cairo-qt)
4320     MOZ_WIDGET_TOOLKIT=qt
4321     MOZ_ENABLE_QT=1
4322     if test -z "$WITHOUT_X11"; then
4323       MOZ_ENABLE_XREMOTE=1
4324       MOZ_GL_DEFAULT_PROVIDER=GLX
4325       MOZ_X11=1
4326       AC_DEFINE(MOZ_X11)
4327       XT_LIBS=
4328     fi
4330     MOZ_WEBGL=1
4331     USE_ELF_DYNSTR_GC=
4332     USE_FC_FREETYPE=1
4333     TK_CFLAGS='$(MOZ_QT_CFLAGS)'
4334     TK_LIBS='$(MOZ_QT_LIBS)'
4335     AC_DEFINE(MOZ_WIDGET_QT)
4336     MOZ_PDF_PRINTING=1
4337     AC_DEFINE(QT_NO_KEYWORDS)
4338     ;;
4340 cairo-os2)
4341     MOZ_WIDGET_TOOLKIT=os2
4342     USE_FC_FREETYPE=1
4343     TK_CFLAGS='$(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)'
4344     TK_LIBS='$(MOZ_CAIRO_LIBS) $(MOZ_PIXMAN_LIBS)'
4345     MOZ_PDF_PRINTING=1
4346     ;;
4348 cairo-cocoa)
4349     MOZ_WIDGET_TOOLKIT=cocoa
4350     AC_DEFINE(MOZ_WIDGET_COCOA)
4351     LDFLAGS="$LDFLAGS -framework Cocoa -lobjc"
4352     TK_LIBS='-framework CoreLocation -framework QuartzCore -framework Carbon -framework CoreAudio -framework AudioToolbox -framework AudioUnit -framework AddressBook -framework OpenGL'
4353     TK_CFLAGS="-DNO_X11"
4354     CFLAGS="$CFLAGS $TK_CFLAGS"
4355     CXXFLAGS="$CXXFLAGS $TK_CFLAGS"
4356     XPCOM_FROZEN_LDOPTS='$(LIBXUL_DIST)/bin/XUL $(call EXPAND_LIBNAME_PATH,mozalloc,$(LIBXUL_DIST)/bin)'
4357     MOZ_USER_DIR="Mozilla"
4358     MOZ_FS_LAYOUT=bundle
4359     MOZ_WEBGL=1
4360     MOZ_INSTRUMENT_EVENT_LOOP=1
4361     ;;
4363 cairo-uikit)
4364     MOZ_WIDGET_TOOLKIT=uikit
4365     AC_DEFINE(MOZ_WIDGET_UIKIT)
4366     LDFLAGS="$LDFLAGS -framework UIKit -lobjc"
4367     TK_CFLAGS="-DNO_X11"
4368     TK_LIBS='-framework Foundation -framework CoreFoundation -framework CoreGraphics -framework CoreText'
4369     CFLAGS="$CFLAGS $TK_CFLAGS"
4370     CXXFLAGS="$CXXFLAGS $TK_CFLAGS"
4371     XPCOM_FROZEN_LDOPTS='$(LIBXUL_DIST)/bin/XUL $(call EXPAND_LIBNAME_PATH,mozalloc,$(LIBXUL_DIST)/bin)'
4372     MOZ_USER_DIR="Mozilla"
4373     MOZ_FS_LAYOUT=bundle
4374     ;;
4376 cairo-android)
4377     AC_DEFINE(MOZ_WIDGET_ANDROID)
4378     MOZ_WIDGET_TOOLKIT=android
4379     TK_CFLAGS='$(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)'
4380     TK_LIBS='$(MOZ_CAIRO_LIBS) $(MOZ_PIXMAN_LIBS)'
4381     MOZ_WEBGL=1
4382     MOZ_PDF_PRINTING=1
4383     MOZ_INSTRUMENT_EVENT_LOOP=1
4384     ;;
4386 cairo-gonk)
4387     XPCOM_FROZEN_LDOPTS='$(call EXPAND_LIBNAME_PATH,xul mozalloc,$(LIBXUL_DIST)/lib)'
4388     AC_DEFINE(MOZ_WIDGET_GONK)
4389     AC_DEFINE(MOZ_TOUCH)
4390     MOZ_WIDGET_TOOLKIT=gonk
4391     TK_CFLAGS='$(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)'
4392     TK_LIBS='$(MOZ_CAIRO_LIBS) $(MOZ_PIXMAN_LIBS)'
4393     MOZ_WEBGL=1
4394     MOZ_PDF_PRINTING=1
4395     MOZ_TOUCH=1
4396     ;;
4398 esac
4400 AC_SUBST(MOZ_PDF_PRINTING)
4401 if test "$MOZ_PDF_PRINTING"; then
4402    PDF_SURFACE_FEATURE="#define CAIRO_HAS_PDF_SURFACE 1"
4403    AC_DEFINE(MOZ_PDF_PRINTING)
4406 if test "$MOZ_ENABLE_XREMOTE"; then
4407     AC_DEFINE(MOZ_ENABLE_XREMOTE)
4410 if test "$MOZ_INSTRUMENT_EVENT_LOOP"; then
4411    AC_DEFINE(MOZ_INSTRUMENT_EVENT_LOOP)
4414 if test "$COMPILE_ENVIRONMENT"; then
4415   if test "$MOZ_ENABLE_GTK3"; then
4416     PKG_CHECK_MODULES(MOZ_GTK3, gtk+-3.0 >= $GTK3_VERSION gtk+-unix-print-3.0 glib-2.0 gobject-2.0 $GDK_PACKAGES)
4417   fi
4418   if test "$MOZ_ENABLE_GTK2"; then
4419     if test "$MOZ_X11"; then
4420       GDK_PACKAGES=gdk-x11-2.0
4421     fi
4423     PKG_CHECK_MODULES(MOZ_GTK2, gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 glib-2.0 gobject-2.0 $GDK_PACKAGES)
4424   fi
4426 fi # COMPILE_ENVIRONMENT
4428 AC_SUBST(MOZ_FS_LAYOUT)
4430 dnl ========================================================
4431 dnl Use ARM userspace kernel helpers; tell NSPR to enable
4432 dnl their usage and use them in spidermonkey.
4433 dnl ========================================================
4434 MOZ_ARG_WITH_BOOL(arm-kuser,
4435 [  --with-arm-kuser         Use kuser helpers (Linux/ARM only -- requires kernel 2.6.13 or later)],
4436     USE_ARM_KUSER=1,)
4437 if test -n "$USE_ARM_KUSER"; then
4438    AC_DEFINE(USE_ARM_KUSER)
4441 dnl ========================================================
4442 dnl = startup-notification support module
4443 dnl ========================================================
4445 if test "$MOZ_ENABLE_GTK"
4446 then
4447     MOZ_ENABLE_STARTUP_NOTIFICATION=
4449     MOZ_ARG_ENABLE_BOOL(startup-notification,
4450     [  --enable-startup-notification
4451                           Enable startup-notification support (default: disabled) ],
4452         MOZ_ENABLE_STARTUP_NOTIFICATION=force,
4453         MOZ_ENABLE_STARTUP_NOTIFICATION=)
4454     if test "$MOZ_ENABLE_STARTUP_NOTIFICATION"
4455     then
4456         PKG_CHECK_MODULES(MOZ_STARTUP_NOTIFICATION,
4457                           libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION,
4458         [MOZ_ENABLE_STARTUP_NOTIFICATION=1], [
4459             if test "$MOZ_ENABLE_STARTUP_NOTIFICATION" = "force"
4460             then
4461                 AC_MSG_ERROR([* * * Could not find startup-notification >= $STARTUP_NOTIFICATION_VERSION])
4462             fi
4463             MOZ_ENABLE_STARTUP_NOTIFICATION=
4464         ])
4465     fi
4467     if test "$MOZ_ENABLE_STARTUP_NOTIFICATION"; then
4468         AC_DEFINE(MOZ_ENABLE_STARTUP_NOTIFICATION)
4469     fi
4471     TK_LIBS="$TK_LIBS $MOZ_STARTUP_NOTIFICATION_LIBS"
4473 AC_SUBST(MOZ_ENABLE_STARTUP_NOTIFICATION)
4474 AC_SUBST(MOZ_STARTUP_NOTIFICATION_CFLAGS)
4475 AC_SUBST(MOZ_STARTUP_NOTIFICATION_LIBS)
4477 dnl ========================================================
4478 dnl = QT support
4479 dnl ========================================================
4480 if test "$MOZ_ENABLE_QT"
4481 then
4482     MOZ_ARG_WITH_STRING(qtdir,
4483     [  --with-qtdir=\$dir       Specify Qt directory ],
4484     [ QTDIR=$withval])
4486     if test -z "$QTDIR"; then
4487         AC_CHECK_PROGS(HOST_QMAKE, $HOST_QMAKE qmake, "")
4488     else
4489         HOST_QMAKE="$QTDIR/bin/qmake"
4490     fi
4491     QT_VERSION=`$HOST_QMAKE -v | grep 'Using Qt version' | egrep -o '[[0-9]]+\.[[0-9]]+\.[[0-9]]+'`
4493     if test -z "$QTDIR"; then
4494         case $QT_VERSION in
4495         5.*)
4496             AC_MSG_RESULT("Using qt5: $QT_VERSION")
4497             PKG_CHECK_MODULES(MOZ_QT, Qt5Gui Qt5Network Qt5Core Qt5OpenGL Qt5Widgets Qt5PrintSupport, ,
4498             [
4499               AC_MSG_ERROR([$MOZ_QT_PKG_ERRORS Need qtbase development packages, (On Ubuntu, you might try installing the packages qtbase5-dev libqt5opengl5-dev.)])
4500             ])
4501             QT5INCDIR=`pkg-config --variable=includedir Qt5Gui`
4502             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QT5INCDIR/QtGui/$QT_VERSION/QtGui"
4503             ;;
4504         4.*)
4505             AC_MSG_RESULT("Using qt4: $QT_VERSION")
4506             PKG_CHECK_MODULES(MOZ_QT, QtGui QtNetwork QtCore QtOpenGL, ,
4507             [
4508               AC_MSG_ERROR([$MOZ_QT_PKG_ERRORS Need qt4 development package, (On Ubuntu, you might try installing the packages libqt4-dev libqt4-opengl-dev.)])
4509             ])
4510             ;;
4511         *)
4512             AC_MSG_ERROR([* * * Unsupported Qt Version: $QT_VERSION])
4513             ;;
4514         esac
4516         AC_CHECK_PROGS(HOST_MOC, $MOC moc, "")
4517         AC_CHECK_PROGS(HOST_RCC, $RCC rcc, "")
4518     else
4519         MOZ_QT_CFLAGS="-DQT_SHARED"
4520         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include"
4521         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtGui"
4522         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtCore"
4523         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtNetwork"
4524         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtXml"
4525         MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtDeclarative"
4527         case $QT_VERSION in
4528         5.*)
4529             AC_MSG_RESULT("Using qt5: $QT_VERSION")
4530             MOZ_QT_LIBS="-L$QTDIR/lib/ -lQt5Gui -lQt5Network -lQt5Core -lQt5Xml -lQt5OpenGL"
4531             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtGui/$QT_VERSION/QtGui"
4532             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtWidgets"
4533             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtPrintSupport"
4534             MOZ_QT_LIBS="$MOZ_QT_LIBS -lQt5Widgets -lQt5PrintSupport"
4535             ;;
4536         4.*)
4537             AC_MSG_RESULT("Using qt4: $QT_VERSION")
4538             MOZ_QT_LIBS="-L$QTDIR/lib/ -lQtGui -lQtNetwork -lQtCore -lQtXml -lQtOpenGL"
4539             MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/Qt"
4540             ;;
4541         *)
4542             AC_MSG_ERROR([* * * Unsupported Qt Version: $QT_VERSION])
4543             ;;
4544         esac
4546         HOST_MOC="$QTDIR/bin/moc"
4547         HOST_RCC="$QTDIR/bin/rcc"
4548     fi
4549     if test -z "$HOST_MOC"; then
4550         AC_MSG_ERROR([No acceptable moc preprocessor found. Qt SDK is not installed or --with-qt is
4551 incorrect])
4552     fi
4553     if test -z "$HOST_RCC"; then
4554         AC_MSG_ERROR([No acceptable rcc preprocessor found. Qt SDK is not installed or --with-qt is
4555 incorrect])
4556     fi
4558     MOC=$HOST_MOC
4559     RCC=$HOST_RCC
4561     MOZ_ENABLE_QMSYSTEM2=
4562     PKG_CHECK_MODULES(_QMSYSTEM2, qmsystem2,
4563                       MOZ_ENABLE_QMSYSTEM2=1,
4564                       MOZ_ENABLE_QMSYSTEM2=)
4566     if test "$MOZ_ENABLE_QMSYSTEM2"; then
4567       MOZ_ENABLE_QMSYSTEM2=1
4568       MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS $_QMSYSTEM2_CFLAGS"
4569       MOZ_QT_LIBS="$MOZ_QT_LIBS $_QMSYSTEM2_LIBS"
4570       AC_DEFINE(MOZ_ENABLE_QMSYSTEM2)
4571     fi
4573     MOZ_ENABLE_QTNETWORK=
4574     PKG_CHECK_MODULES(_QTNETWORK, QtNetwork >= 4.7,
4575                       MOZ_ENABLE_QTNETWORK=1,
4576                       MOZ_ENABLE_QTNETWORK=)
4578     if test "$MOZ_ENABLE_QTNETWORK"; then
4579       MOZ_ENABLE_QTNETWORK=1
4580       AC_DEFINE(MOZ_ENABLE_QTNETWORK)
4581     fi
4583     MOZ_ENABLE_QTMOBILITY=
4584     PKG_CHECK_MODULES(_QTMOBILITY, QtSensors QtFeedback QtLocation,
4585                       MOZ_ENABLE_QTMOBILITY=1,
4586                       MOZ_ENABLE_QTMOBILITY=)
4587     if test "$MOZ_ENABLE_QTMOBILITY"; then
4588        MOZ_ENABLE_QTMOBILITY=1
4589        MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS $_QTMOBILITY_CFLAGS"
4590        MOZ_QT_LIBS="$MOZ_QT_LIBS $_QTMOBILITY_LIBS"
4591        AC_DEFINE(MOZ_ENABLE_QTMOBILITY)
4592        AC_SUBST(MOZ_ENABLE_QTMOBILITY)
4593     else
4594        AC_CHECK_LIB(QtSensors, main, [
4595           MOZ_ENABLE_QTMOBILITY=1
4596           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtMobility"
4597           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtSensors"
4598           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtFeedback"
4599           MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS -I$QTDIR/include/QtLocation"
4600           MOZ_QT_LIBS="$MOZ_QT_LIBS -lQtSensors -lQtFeedback -lQtLocation"
4601        ])
4602     fi
4604     if test "$MOZ_ENABLE_CONTENTACTION"; then
4605       MOZ_ENABLE_CONTENTACTION=1
4606       AC_DEFINE(MOZ_ENABLE_CONTENTACTION)
4607     fi
4609     MOZ_ENABLE_CONTENTACTION=
4610     PKG_CHECK_MODULES(LIBCONTENTACTION, contentaction-0.1, _LIB_FOUND=1, _LIB_FOUND=)
4611     if test "$MOZ_ENABLE_CONTENTACTION"; then
4612        MOZ_ENABLE_CONTENTACTION=1
4613        MOZ_QT_CFLAGS="$MOZ_QT_CFLAGS $_CONTENTACTION_CFLAGS"
4614        MOZ_QT_LIBS="$MOZ_QT_LIBS $_CONTENTACTION_LIBS"
4615        AC_DEFINE(MOZ_ENABLE_CONTENTACTION)
4616        AC_SUBST(MOZ_ENABLE_CONTENTACTION)
4617     fi
4620 AC_SUBST(GTK_CONFIG)
4621 AC_SUBST(TK_CFLAGS)
4622 AC_SUBST(TK_LIBS)
4624 AC_SUBST(MOZ_ENABLE_GTK2)
4625 AC_SUBST(MOZ_ENABLE_GTK3)
4626 AC_SUBST(MOZ_ENABLE_GTK)
4627 AC_SUBST(MOZ_ENABLE_QT)
4628 AC_SUBST(MOZ_ENABLE_QTNETWORK)
4629 AC_SUBST(MOZ_ENABLE_QMSYSTEM2)
4630 AC_SUBST(MOZ_ENABLE_QTMOBILITY)
4631 AC_SUBST(MOZ_ENABLE_XREMOTE)
4632 AC_SUBST(MOZ_GTK2_CFLAGS)
4633 AC_SUBST(MOZ_GTK2_LIBS)
4634 AC_SUBST(MOZ_GTK3_CFLAGS)
4635 AC_SUBST(MOZ_GTK3_LIBS)
4636 AC_SUBST(MOZ_WIDGET_GTK)
4637 AC_SUBST(MOZ_QT_CFLAGS)
4638 AC_SUBST(MOZ_QT_LIBS)
4640 AC_SUBST(MOC)
4641 AC_SUBST(RCC)
4643 AC_SUBST(MOZ_X11)
4645 dnl ========================================================
4646 dnl =
4647 dnl = Components & Features
4648 dnl =
4649 dnl ========================================================
4650 MOZ_ARG_HEADER(Components and Features)
4652 dnl ========================================================
4653 dnl = Localization
4654 dnl ========================================================
4655 MOZ_ARG_ENABLE_STRING(ui-locale,
4656 [  --enable-ui-locale=ab-CD
4657                           Select the user interface locale (default: en-US)],
4658     MOZ_UI_LOCALE=$enableval )
4659 AC_SUBST(MOZ_UI_LOCALE)
4661 dnl ========================================================
4662 dnl = Trademarked Branding
4663 dnl ========================================================
4664 MOZ_ARG_ENABLE_BOOL(official-branding,
4665 [  --enable-official-branding
4666                           Enable Official mozilla.org Branding
4667                           Do not distribute builds with
4668                           --enable-official-branding unless you have
4669                           permission to use trademarks per
4670                           http://www.mozilla.org/foundation/trademarks/ .],
4672   if test -z "$MOZ_OFFICIAL_BRANDING_DIRECTORY"; then
4673     AC_MSG_ERROR([You must specify MOZ_OFFICIAL_BRANDING_DIRECTORY to use --enable-official-branding.])
4674   else
4675     MOZ_BRANDING_DIRECTORY=${MOZ_OFFICIAL_BRANDING_DIRECTORY}
4676     MOZ_OFFICIAL_BRANDING=1
4677   fi
4678 ], MOZ_OFFICIAL_BRANDING=)
4680 AC_SUBST(MOZ_OFFICIAL_BRANDING)
4681 if test -n "$MOZ_OFFICIAL_BRANDING"; then
4682   AC_DEFINE(MOZ_OFFICIAL_BRANDING)
4685 MOZ_ARG_WITH_STRING(branding,
4686 [  --with-branding=dir     Use branding from the specified directory.],
4687     MOZ_BRANDING_DIRECTORY=$withval)
4689 REAL_BRANDING_DIRECTORY="${MOZ_BRANDING_DIRECTORY}"
4690 if test -z "$REAL_BRANDING_DIRECTORY"; then
4691   REAL_BRANDING_DIRECTORY=${MOZ_BUILD_APP}/branding/nightly
4694 if test -f "${_topsrcdir}/$REAL_BRANDING_DIRECTORY/configure.sh"; then
4695   . "${_topsrcdir}/$REAL_BRANDING_DIRECTORY/configure.sh"
4698 AC_SUBST(MOZ_BRANDING_DIRECTORY)
4700 dnl ========================================================
4701 dnl = Distribution ID
4702 dnl ========================================================
4703 MOZ_ARG_WITH_STRING(distribution-id,
4704 [  --with-distribution-id=ID
4705                           Set distribution-specific id (default=org.mozilla)],
4706 [ val=`echo $withval`
4707     MOZ_DISTRIBUTION_ID="$val"])
4709 if test -z "$MOZ_DISTRIBUTION_ID"; then
4710    MOZ_DISTRIBUTION_ID="org.mozilla"
4713 AC_DEFINE_UNQUOTED(MOZ_DISTRIBUTION_ID,"$MOZ_DISTRIBUTION_ID")
4714 AC_SUBST(MOZ_DISTRIBUTION_ID)
4717 dnl ========================================================
4718 dnl complex text support off by default
4719 dnl ========================================================
4720 MOZ_ARG_DISABLE_BOOL(pango,
4721 [  --disable-pango         Disable usage of Pango ],
4722     MOZ_PANGO=,
4723     MOZ_PANGO=1)
4725 dnl ========================================================
4726 dnl = Pango
4727 dnl ========================================================
4728 if test "$MOZ_ENABLE_GTK" -o "$MOZ_ENABLE_QT"
4729 then
4730     AC_SUBST(MOZ_PANGO)
4732     if test "$MOZ_PANGO"
4733     then
4734         PKG_CHECK_MODULES(_PANGOCHK, pango >= $PANGO_VERSION)
4736         PKG_CHECK_MODULES(MOZ_PANGO, pango >= $PANGO_VERSION pangoft2 >= $PANGO_VERSION pangocairo >= $PANGO_VERSION)
4737         AC_SUBST(MOZ_PANGO_CFLAGS)
4738         AC_SUBST(MOZ_PANGO_LIBS)
4739         AC_DEFINE(MOZ_PANGO)
4740     else
4741         PKG_CHECK_MODULES(FT2, freetype2 > 6.1.0)
4742         AC_SUBST(FT2_CFLAGS)
4743         AC_SUBST(FT2_LIBS)
4744     fi
4747 dnl ========================================================
4748 dnl = GnomeVFS, GIO and GConf support module
4749 dnl ========================================================
4751 if test "$MOZ_X11"
4752 then
4753     dnl build the GIO extension by default only when the
4754     dnl GTK2 toolkit is in use.
4755     if test "$MOZ_ENABLE_GTK"
4756     then
4757         MOZ_ENABLE_GIO=1
4758         MOZ_ENABLE_GCONF=1
4759     fi
4761     dnl ========================================================
4762     dnl = GnomeVFS support module
4763     dnl ========================================================
4764     MOZ_ARG_ENABLE_BOOL(gnomevfs,
4765     [  --enable-gnomevfs       Enable GnomeVFS support (default: disabled)],
4766         MOZ_ENABLE_GNOMEVFS=force,
4767         MOZ_ENABLE_GNOMEVFS=)
4769     if test "$MOZ_ENABLE_GNOMEVFS"
4770     then
4771         PKG_CHECK_MODULES(MOZ_GNOMEVFS, gnome-vfs-2.0 >= $GNOMEVFS_VERSION gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION,[
4772             MOZ_GNOMEVFS_LIBS=`echo $MOZ_GNOMEVFS_LIBS | sed 's/-llinc\>//'`
4773             MOZ_ENABLE_GNOMEVFS=1
4774             AC_DEFINE(MOZ_ENABLE_GNOMEVFS)
4775         ],[
4776             if test "$MOZ_ENABLE_GNOMEVFS" = "force"
4777             then
4778                 AC_MSG_ERROR([* * * Could not find gnome-vfs-module-2.0 >= $GNOMEVFS_VERSION])
4779             fi
4780             MOZ_ENABLE_GNOMEVFS=
4781         ])
4782     fi
4784     AC_SUBST(MOZ_ENABLE_GNOMEVFS)
4785     AC_SUBST(MOZ_GNOMEVFS_CFLAGS)
4786     AC_SUBST(MOZ_GNOMEVFS_LIBS)
4788     dnl ========================================================
4789     dnl = GIO support module
4790     dnl ========================================================
4791     MOZ_ARG_DISABLE_BOOL(gio,
4792     [  --disable-gio           Disable GIO support],
4793         MOZ_ENABLE_GIO=,
4794         MOZ_ENABLE_GIO=force)
4796     if test "$MOZ_ENABLE_GIO" -a "$MOZ_ENABLE_GTK"
4797     then
4798         PKG_CHECK_MODULES(_GTKCHECK, gtk+-2.0 >= 2.14, ,
4799                           [AC_MSG_ERROR([* * * Could not find gtk+-2.0 > 2.14. Required for build with gio.])])
4800         PKG_CHECK_MODULES(MOZ_GIO, gio-2.0 >= $GIO_VERSION,[
4801             MOZ_GIO_LIBS=`echo $MOZ_GIO_LIBS | sed 's/-llinc\>//'`
4802             MOZ_ENABLE_GIO=1
4803             AC_DEFINE(MOZ_ENABLE_GIO)
4804         ],[
4805             if test "$MOZ_ENABLE_GIO" = "force"
4806             then
4807                 AC_MSG_ERROR([* * * Could not find gio-2.0 >= $GIO_VERSION])
4808             fi
4809             MOZ_ENABLE_GIO=
4810         ])
4811     fi
4813     AC_SUBST(MOZ_ENABLE_GIO)
4814     AC_SUBST(MOZ_GIO_CFLAGS)
4815     AC_SUBST(MOZ_GIO_LIBS)
4817     dnl ========================================================
4818     dnl = GConf support module
4819     dnl ========================================================
4820     MOZ_ARG_DISABLE_BOOL(gconf,
4821     [  --disable-gconf      Disable Gconf support ],
4822         MOZ_ENABLE_GCONF=,
4823         MOZ_ENABLE_GCONF=force)
4825     if test "$MOZ_ENABLE_GCONF"
4826     then
4827         PKG_CHECK_MODULES(MOZ_GCONF, gconf-2.0 >= $GCONF_VERSION gobject-2.0 ,[
4828             MOZ_GCONF_LIBS=`$PKG_CONFIG --libs gobject-2.0`
4829             MOZ_ENABLE_GCONF=1
4830         ],[
4831             if test "$MOZ_ENABLE_GCONF" = "force"
4832             then
4833                 AC_MSG_ERROR([* * * Could not find gconf-2.0 ])
4834             fi
4835             MOZ_ENABLE_GCONF=
4836         ])
4837     fi
4839     if test "$MOZ_ENABLE_GCONF"; then
4840         AC_DEFINE(MOZ_ENABLE_GCONF)
4841     fi
4843     AC_SUBST(MOZ_ENABLE_GCONF)
4844     AC_SUBST(MOZ_GCONF_CFLAGS)
4845     AC_SUBST(MOZ_GCONF_LIBS)
4848 dnl ========================================================
4849 dnl = libproxy support
4850 dnl ========================================================
4852 if test "$MOZ_ENABLE_GTK" -o "$MOZ_ENABLE_QT"
4853 then
4854     MOZ_ENABLE_LIBPROXY=
4856     MOZ_ARG_ENABLE_BOOL(libproxy,
4857     [  --enable-libproxy         Enable libproxy support ],
4858     MOZ_ENABLE_LIBPROXY=1,
4859     MOZ_ENABLE_LIBPROXY=)
4861     if test "$MOZ_ENABLE_LIBPROXY"
4862     then
4863         PKG_CHECK_MODULES(MOZ_LIBPROXY, libproxy-1.0)
4864         AC_DEFINE(MOZ_ENABLE_LIBPROXY)
4865     fi
4867 AC_SUBST(MOZ_ENABLE_LIBPROXY)
4868 AC_SUBST(MOZ_LIBPROXY_CFLAGS)
4869 AC_SUBST(MOZ_LIBPROXY_LIBS)
4871 dnl ========================================================
4872 dnl = GNOME component (mozgnome)
4873 dnl ========================================================
4875 if test "$MOZ_ENABLE_GTK2"
4876 then
4877     MOZ_ENABLE_GNOME_COMPONENT=1
4879 AC_SUBST(MOZ_ENABLE_GNOME_COMPONENT)
4881 dnl ========================================================
4882 dnl = libgnomeui support module
4883 dnl ========================================================
4885 if test "$MOZ_ENABLE_GTK"
4886 then
4887     MOZ_ARG_ENABLE_BOOL(gnomeui,
4888     [  --enable-gnomeui        Enable libgnomeui instead of GIO & GTK for icon theme support ],
4889         MOZ_ENABLE_GNOMEUI=force,
4890         MOZ_ENABLE_GNOMEUI=)
4892     if test "$MOZ_ENABLE_GNOMEUI"
4893     then
4894         PKG_CHECK_MODULES(MOZ_GNOMEUI, libgnomeui-2.0 >= $GNOMEUI_VERSION,
4895         [
4896             MOZ_ENABLE_GNOMEUI=1
4897         ],[
4898             if test "$MOZ_ENABLE_GNOMEUI" = "force"
4899             then
4900                 AC_MSG_ERROR([* * * Could not find libgnomeui-2.0 >= $GNOMEUI_VERSION])
4901             fi
4902             MOZ_ENABLE_GNOMEUI=
4903         ])
4904     fi
4906     if test "$MOZ_ENABLE_GNOMEUI"; then
4907         AC_DEFINE(MOZ_ENABLE_GNOMEUI)
4908     fi
4911 AC_SUBST(MOZ_ENABLE_GNOMEUI)
4912 AC_SUBST(MOZ_GNOMEUI_CFLAGS)
4914 dnl ========================================================
4915 dnl = dbus support
4916 dnl ========================================================
4918 if test "$MOZ_ENABLE_GTK" -o "$MOZ_ENABLE_QT"
4919 then
4920     MOZ_ENABLE_DBUS=1
4922     MOZ_ARG_DISABLE_BOOL(dbus,
4923     [  --disable-dbus          Disable dbus support ],
4924         MOZ_ENABLE_DBUS=,
4925         MOZ_ENABLE_DBUS=1)
4927     if test "$MOZ_ENABLE_DBUS"
4928     then
4929         PKG_CHECK_MODULES(MOZ_DBUS, dbus-1 >= $DBUS_VERSION)
4930         PKG_CHECK_MODULES(MOZ_DBUS_GLIB, dbus-glib-1 >= $DBUS_VERSION)
4931         AC_DEFINE(MOZ_ENABLE_DBUS)
4932     fi
4934 AC_SUBST(MOZ_ENABLE_DBUS)
4935 AC_SUBST(MOZ_DBUS_CFLAGS)
4936 AC_SUBST(MOZ_DBUS_LIBS)
4937 AC_SUBST(MOZ_DBUS_GLIB_CFLAGS)
4938 AC_SUBST(MOZ_DBUS_GLIB_LIBS)
4940 dnl ========================================================
4941 dnl = Enable Android History instead of Places
4942 dnl ========================================================
4943 if test -n "$MOZ_ANDROID_HISTORY"; then
4944     if test -z "$MOZ_PLACES"; then
4945         AC_DEFINE(MOZ_ANDROID_HISTORY)
4946     else
4947         AC_MSG_ERROR([Cannot use MOZ_ANDROID_HISTORY alongside MOZ_PLACES.])
4948     fi
4951 dnl ========================================================
4952 dnl = Build with the Android compositor
4953 dnl ========================================================
4954 if test -n "$MOZ_ANDROID_OMTC"; then
4955      dnl Do this if defined in confvars.sh
4956      AC_DEFINE(MOZ_ANDROID_OMTC)
4959 dnl ========================================================
4960 dnl = Disable WebSMS backend
4961 dnl ========================================================
4962 MOZ_ARG_DISABLE_BOOL(websms-backend,
4963 [  --disable-websms-backend
4964                            Disable WebSMS backend],
4965     MOZ_WEBSMS_BACKEND=,
4966     MOZ_WEBSMS_BACKEND=1)
4968 if test -n "$MOZ_WEBSMS_BACKEND"; then
4969     AC_DEFINE(MOZ_WEBSMS_BACKEND)
4972 dnl ========================================================
4973 dnl = Enable NFC permission on Android
4974 dnl ========================================================
4975 if test -n "$MOZ_ANDROID_BEAM"; then
4976     AC_DEFINE(MOZ_ANDROID_BEAM)
4979 dnl ========================================================
4980 dnl = JS Debugger XPCOM component (js/jsd)
4981 dnl ========================================================
4982 MOZ_ARG_DISABLE_BOOL(jsd,
4983 [  --disable-jsd           Disable JavaScript debug library],
4984     MOZ_JSDEBUGGER=,
4985     MOZ_JSDEBUGGER=1)
4988 dnl ========================================================
4989 dnl = Enable IPDL's "expensive" unit tests
4990 dnl ========================================================
4991 MOZ_IPDL_TESTS=
4993 MOZ_ARG_ENABLE_BOOL(ipdl-tests,
4994 [  --enable-ipdl-tests     Enable expensive IPDL tests],
4995     MOZ_IPDL_TESTS=1,
4996     MOZ_IPDL_TESTS=)
4998 if test -n "$MOZ_IPDL_TESTS"; then
4999     AC_DEFINE(MOZ_IPDL_TESTS)
5002 AC_SUBST(MOZ_IPDL_TESTS)
5004 dnl ========================================================
5005 dnl = Disable building dbm
5006 dnl ========================================================
5007 MOZ_ARG_DISABLE_BOOL(dbm,
5008 [  --disable-dbm           Disable building dbm],
5009     NSS_DISABLE_DBM=1,
5010     NSS_DISABLE_DBM=)
5012 dnl bi-directional support always on
5013 IBMBIDI=1
5014 AC_DEFINE(IBMBIDI)
5016 dnl ========================================================
5017 dnl accessibility support on by default on all platforms
5018 dnl ========================================================
5019 MOZ_ARG_DISABLE_BOOL(accessibility,
5020 [  --disable-accessibility Disable accessibility support],
5021     ACCESSIBILITY=,
5022     ACCESSIBILITY=1 )
5023 if test "$ACCESSIBILITY"; then
5024     case "$target" in
5025     *-mingw*)
5026         if test -z "$MIDL"; then
5027             if test "$GCC" != "yes"; then
5028                 AC_MSG_ERROR([MIDL could not be found. Building accessibility without MIDL is not supported.])
5029             else
5030                 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.])
5031             fi
5032         fi
5033     esac
5034     AC_DEFINE(ACCESSIBILITY)
5037 dnl ========================================================
5038 dnl Accessibility is required for the linuxgl widget
5039 dnl backend
5040 dnl ========================================================
5041 if test "${MOZ_WIDGET_TOOLKIT}" = "linuxgl" -a "$ACCESSIBILITY" != "1"; then
5042     AC_MSG_ERROR(["Accessibility is required for the linuxgl widget backend"])
5045 dnl ========================================================
5046 dnl Disable printing
5047 dnl ========================================================
5048 MOZ_ARG_DISABLE_BOOL(printing,
5049 [  --disable-printing      Disable printing support],
5050     NS_PRINTING=,
5051     NS_PRINTING=1)
5053 if test "$NS_PRINTING"; then
5054     AC_DEFINE(NS_PRINTING)
5055     AC_DEFINE(NS_PRINT_PREVIEW)
5058 dnl Turn off webrtc for OS's we don't handle yet, but allow 
5059 dnl --enable-webrtc to override.  Can disable for everything in
5060 dnl the master list above.
5061 if test -n "$MOZ_WEBRTC"; then
5062     case "$target" in
5063     *-linux*|*-mingw*|*-darwin*|*-android*|*-linuxandroid*|*-dragonfly*|*-freebsd*|*-netbsd*|*-openbsd*)
5064         dnl Leave enabled
5065         ;;
5066     *)
5067         dnl default to disabled for all others
5068         MOZ_WEBRTC=
5069         ;;
5070     esac
5073 AC_TRY_COMPILE([#include <linux/ethtool.h>],
5074                [ struct ethtool_cmd cmd; cmd.speed_hi = 0; ],
5075                MOZ_WEBRTC_HAVE_ETHTOOL_SPEED_HI=1)
5077 # target_arch is from {ia32|x64|arm|ppc}
5078 case "$CPU_ARCH" in
5079 x86_64)
5080     WEBRTC_TARGET_ARCH=x64
5081     ;;
5083 arm*)
5084     WEBRTC_TARGET_ARCH=arm
5085     ;;
5087 x86)
5088     WEBRTC_TARGET_ARCH=ia32
5089     ;;
5091 ppc*)
5092     WEBRTC_TARGET_ARCH=ppc
5093     ;;
5094 ia64)
5095     WEBRTC_TARGET_ARCH=ia64
5096     ;;
5098 # unsupported arch for webrtc
5099     WEBRTC_TARGET_ARCH=unknown
5100     MOZ_WEBRTC=
5101     ;;
5103 esac
5105 dnl ========================================================
5106 dnl = Disable WebRTC code
5107 dnl ========================================================
5108 MOZ_ARG_DISABLE_BOOL(webrtc,
5109 [  --disable-webrtc        Disable support for WebRTC],
5110     MOZ_WEBRTC=,
5111     MOZ_WEBRTC=1)
5113 if test -n "$MOZ_WEBRTC"; then
5114     AC_DEFINE(MOZ_WEBRTC)
5115     dnl MOZ_WEBRTC_ASSERT_ALWAYS turns on a number of safety asserts in
5116     dnl opt/production builds (via MOZ_CRASH())
5117     AC_DEFINE(MOZ_WEBRTC_ASSERT_ALWAYS)
5118     MOZ_RAW=1
5119     MOZ_VP8=1
5120     MOZ_VP8_ENCODER=1
5121     MOZ_VP8_ERROR_CONCEALMENT=1
5123 dnl enable once Signaling lands
5124     MOZ_WEBRTC_SIGNALING=1
5125     AC_DEFINE(MOZ_WEBRTC_SIGNALING)
5126 dnl enable once PeerConnection lands
5127     MOZ_PEERCONNECTION=1
5128     AC_DEFINE(MOZ_PEERCONNECTION)
5129     MOZ_SCTP=1
5130     MOZ_SRTP=1
5131     AC_DEFINE(MOZ_SCTP)
5132     AC_DEFINE(MOZ_SRTP)
5135 AC_SUBST(MOZ_WEBRTC)
5136 AC_SUBST(MOZ_WEBRTC_LEAKING_TESTS)
5137 AC_SUBST(MOZ_WEBRTC_SIGNALING)
5138 AC_SUBST(MOZ_PEERCONNECTION)
5139 AC_SUBST(MOZ_WEBRTC_ASSERT_ALWAYS)
5140 AC_SUBST(MOZ_SCTP)
5141 AC_SUBST(MOZ_SRTP)
5143 dnl Use integers over floats for audio on B2G and Android, because audio
5144 dnl backends for those platforms don't support floats.
5145 if test "$OS_TARGET" = "Android"; then
5146     MOZ_SAMPLE_TYPE_S16=1
5147     AC_DEFINE(MOZ_SAMPLE_TYPE_S16)
5148     AC_SUBST(MOZ_SAMPLE_TYPE_S16)
5149 else
5150     MOZ_SAMPLE_TYPE_FLOAT32=1
5151     AC_DEFINE(MOZ_SAMPLE_TYPE_FLOAT32)
5152     AC_SUBST(MOZ_SAMPLE_TYPE_FLOAT32)
5155 dnl ========================================================
5156 dnl = Disable Speech API code
5157 dnl ========================================================
5158 MOZ_ARG_DISABLE_BOOL(webspeech,
5159 [  --disable-webspeech        Disable support for HTML Speech API],
5160     MOZ_WEBSPEECH=,
5161     MOZ_WEBSPEECH=1)
5163 if test -n "$MOZ_WEBSPEECH"; then
5164     AC_DEFINE(MOZ_WEBSPEECH)
5167 AC_SUBST(MOZ_WEBSPEECH)
5169 dnl ========================================================
5170 dnl = Enable Raw Codecs
5171 dnl ========================================================
5172 MOZ_ARG_ENABLE_BOOL(raw,
5173 [  --enable-raw           Enable support for RAW media],
5174     MOZ_RAW=1,
5175     MOZ_RAW=)
5177 if test -n "$MOZ_RAW"; then
5178     AC_DEFINE(MOZ_RAW)
5181 AC_SUBST(MOZ_RAW)
5183 dnl ========================================================
5184 dnl = Disable Ogg Codecs
5185 dnl ========================================================
5186 MOZ_ARG_DISABLE_BOOL(ogg,
5187 [  --disable-ogg           Disable support for OGG media (Theora video and Vorbis audio)],
5188     MOZ_OGG=,
5189     MOZ_OGG=1)
5191 if test -n "$MOZ_OGG"; then
5192     AC_DEFINE(MOZ_OGG)
5193     MOZ_CUBEB=1
5195     dnl Checks for __attribute__(aligned()) directive
5196     AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
5197         [ac_cv_c_attribute_aligned],
5198         [ac_cv_c_attribute_aligned=0
5199          CFLAGS_save="${CFLAGS}"
5200          CFLAGS="${CFLAGS} -Werror"
5201          for ac_cv_c_attr_align_try in 64 32 16 8; do
5202            echo "trying $ac_cv_c_attr_align_try"
5203            AC_TRY_COMPILE([],
5204                           [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
5205                           [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
5206            if test "$ac_cv_c_attribute_aligned" != 0; then
5207              break;
5208            fi
5209          done
5210            CFLAGS="${CFLAGS_save}"])
5211     if test "${ac_cv_c_attribute_aligned}" != "0"; then
5212       AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
5213                          [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
5214     fi
5217 dnl ========================================================
5218 dnl = Disable Opus audio codec support
5219 dnl ========================================================
5220 MOZ_ARG_DISABLE_BOOL(opus,
5221 [  --disable-opus          Disable support for Opus audio],
5222     MOZ_OPUS=,
5223     MOZ_OPUS=1)
5225 dnl ========================================================
5226 dnl = Disable VP8 decoder support
5227 dnl ========================================================
5228 MOZ_ARG_DISABLE_BOOL(webm,
5229 [  --disable-webm          Disable support for WebM media (VP8 video and Vorbis audio)],
5230     MOZ_WEBM=,
5231     MOZ_WEBM=1)
5233 if test -n "$MOZ_WEBM"; then
5234     AC_DEFINE(MOZ_WEBM)
5235     MOZ_VP8=1
5238 dnl ========================================================
5239 dnl = DirectShow support
5240 dnl ========================================================
5241 if test "$OS_ARCH" = "WINNT"; then
5242     dnl Enable DirectShow support by default.
5243     MOZ_DIRECTSHOW=1
5246 MOZ_ARG_DISABLE_BOOL(directshow,
5247 [  --disable-directshow  Disable support for DirectShow],
5248     MOZ_DIRECTSHOW=,
5249     MOZ_DIRECTSHOW=1)
5251 if test -n "$MOZ_DIRECTSHOW"; then
5252     AC_DEFINE(MOZ_DIRECTSHOW)
5253     MOZ_CUBEB=1
5256 dnl ========================================================
5257 dnl = Windows Media Foundation support
5258 dnl ========================================================
5259 if test "$OS_ARCH" = "WINNT"; then
5260     dnl Enable Windows Media Foundation support by default.
5261     dnl Note our minimum SDK version is Windows 7 SDK, so we are (currently)
5262     dnl guaranteed to have a recent-enough SDK to build WMF.
5263     MOZ_WMF=1
5266 MOZ_ARG_DISABLE_BOOL(wmf,
5267 [  --disable-wmf  Disable support for Windows Media Foundation],
5268     MOZ_WMF=,
5269     MOZ_WMF=1)
5271 if test -n "$MOZ_WMF"; then
5272     AC_DEFINE(MOZ_WMF)
5273     MOZ_CUBEB=1
5276 dnl ========================================================
5277 dnl = Built-in fragmented MP4 support.
5278 dnl ========================================================
5279 if test -n "$MOZ_WMF"; then
5280     dnl Enable fragmented MP4 parser on Windows by default.
5281     dnl We will also need to enable it on other platforms as we implement
5282     dnl platform decoder support there too.
5283     MOZ_FMP4=1
5286 MOZ_ARG_DISABLE_BOOL(fmp4,
5287 [  --disable-fmp4  Disable support for in built Fragmented MP4 parsing],
5288     MOZ_FMP4=,
5289     MOZ_FMP4=1)
5291 if test -n "$MOZ_FMP4"; then
5292     AC_DEFINE(MOZ_FMP4)
5296 dnl ========================================================
5297 dnl = Enable media plugin support
5298 dnl ========================================================
5299 if test "$OS_TARGET" = Android -a x"$MOZ_WIDGET_TOOLKIT" != x"gonk"; then
5300   dnl Enable support on android by default
5301   MOZ_MEDIA_PLUGINS=1
5304 MOZ_ARG_ENABLE_BOOL(media-plugins,
5305 [  --enable-media-plugins  Enable support for media plugins],
5306     MOZ_MEDIA_PLUGINS=1,
5307     MOZ_MEDIA_PLUGINS=)
5309 if test -n "$MOZ_MEDIA_PLUGINS"; then
5310   AC_DEFINE(MOZ_MEDIA_PLUGINS)
5313 dnl ========================================================
5314 dnl = Disable platform MP3 decoder on OSX
5315 dnl ========================================================
5316 if test "$MOZ_WIDGET_TOOLKIT" = "cocoa"; then
5317   MOZ_APPLEMEDIA=1
5320 MOZ_ARG_DISABLE_BOOL(apple-media,
5321 [  --disable-apple-media  Disable support for Apple AudioToolbox/VideoToolbox],
5322     MOZ_APPLEMEDIA=,
5323     MOZ_APPLEMEDIA=1)
5325 if test -n "$MOZ_APPLEMEDIA"; then
5326   AC_DEFINE(MOZ_APPLEMEDIA)
5329 dnl ========================================================
5330 dnl = Enable getUserMedia support
5331 dnl ========================================================
5332 MOZ_ARG_ENABLE_BOOL(media-navigator,
5333 [  --enable-media-navigator  Enable support for getUserMedia],
5334     MOZ_MEDIA_NAVIGATOR=1,
5335     MOZ_MEDIA_NAVIGATOR=)
5337 if test -n "$MOZ_MEDIA_NAVIGATOR"; then
5338   AC_DEFINE(MOZ_MEDIA_NAVIGATOR)
5341 dnl ========================================================
5342 dnl = Enable building OMX media plugin (B2G or Android)
5343 dnl ========================================================
5344 if test "$OS_TARGET" = Android -a x"$MOZ_WIDGET_TOOLKIT" != x"gonk"; then
5345   dnl Enable support on android by default
5346   MOZ_OMX_PLUGIN=1
5349 MOZ_ARG_ENABLE_BOOL(omx-plugin,
5350 [  --enable-omx-plugin      Enable building OMX plugin (B2G)],
5351     MOZ_OMX_PLUGIN=1,
5352     MOZ_OMX_PLUGIN=)
5354 if test -n "$MOZ_OMX_PLUGIN"; then
5355     if test "$OS_TARGET" = "Android"; then
5356         dnl Only allow building OMX plugin on Gonk (B2G) or Android
5357         AC_DEFINE(MOZ_OMX_PLUGIN)
5358     else
5359        dnl fail if we're not building on Gonk or Android
5360        AC_MSG_ERROR([OMX media plugin can only be built on B2G or Android])
5361     fi
5364 dnl system libvpx Support
5365 dnl ========================================================
5366 MOZ_ARG_WITH_BOOL(system-libvpx,
5367 [  --with-system-libvpx    Use system libvpx (located with pkgconfig)],
5368     MOZ_NATIVE_LIBVPX=1)
5370 MOZ_LIBVPX_CFLAGS=
5371 MOZ_LIBVPX_LIBS=
5373 if test -n "$MOZ_VP8"; then
5374     AC_DEFINE(MOZ_VP8)
5375     if test -n "$MOZ_VP8_ERROR_CONCEALMENT" ; then
5376         AC_DEFINE(MOZ_VP8_ERROR_CONCEALMENT)
5377     fi
5378     if test -n "$MOZ_VP8_ENCODER" ; then
5379         AC_DEFINE(MOZ_VP8_ENCODER)
5380     fi
5382     if test -n "$MOZ_NATIVE_LIBVPX"; then
5383         dnl ============================
5384         dnl === libvpx Version check ===
5385         dnl ============================
5386         dnl Check to see if we have a system libvpx package.
5387         PKG_CHECK_MODULES(MOZ_LIBVPX, vpx >= 1.0.0)
5389         MOZ_CHECK_HEADER([vpx/vpx_decoder.h], [], 
5390          [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.])])
5392         _SAVE_LIBS=$LIBS
5393         AC_CHECK_LIB(vpx, vpx_codec_dec_init_ver, [], 
5394          [AC_MSG_ERROR([--with-system-libvpx requested but symbol vpx_codec_dec_init_ver not found])])
5395         LIBS=$_SAVE_LIBS
5396     fi
5399 AC_SUBST(MOZ_NATIVE_LIBVPX)
5400 AC_SUBST(MOZ_LIBVPX_CFLAGS)
5401 AC_SUBST(MOZ_LIBVPX_LIBS)
5403 if test "$MOZ_WEBM" -o "$MOZ_OGG"; then
5404     MOZ_CUBEB=1
5405     if test "$MOZ_SAMPLE_TYPE_FLOAT32"; then
5406         MOZ_VORBIS=1
5407     else
5408         MOZ_TREMOR=1
5409     fi
5412 if test -n "$MOZ_VP8" -a -z "$MOZ_NATIVE_LIBVPX"; then
5414     dnl Detect if we can use an assembler to compile optimized assembly for libvpx.
5415     dnl We currently require yasm on all x86 platforms and require yasm 1.1.0 on Win32.
5416     dnl We currently require gcc on all arm platforms.
5417     VPX_AS=$YASM
5418     VPX_ASM_SUFFIX=asm
5419     VPX_NEED_OBJ_INT_EXTRACT=
5421     dnl See if we have assembly on this platform.
5422     case "$OS_ARCH:$CPU_ARCH" in
5423     Darwin:x86)
5424       VPX_ASFLAGS="-f macho32 -rnasm -pnasm -DPIC"
5425       VPX_X86_ASM=1
5426     ;;
5427     Darwin:x86_64)
5428       VPX_ASFLAGS="-f macho64 -rnasm -pnasm -DPIC"
5429       VPX_X86_ASM=1
5430     ;;
5431     WINNT:x86_64)
5432       VPX_ASFLAGS="-f x64 -rnasm -pnasm"
5433       VPX_X86_ASM=1
5434     ;;
5435     WINNT:x86)
5436       dnl Check for yasm 1.1 or greater.
5437       if test -n "$COMPILE_ENVIRONMENT" -a -z "$YASM"; then
5438         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.])
5439       elif test -n "$COMPILE_ENVIRONMENT" -a "$_YASM_MAJOR_VERSION" -lt "1" -o \( "$_YASM_MAJOR_VERSION" -eq "1" -a "$_YASM_MINOR_VERSION" -lt "1" \) ; then
5440         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.])
5441       else
5442         VPX_ASFLAGS="-f win32 -rnasm -pnasm -DPIC"
5443         VPX_X86_ASM=1
5444         dnl The encoder needs obj_int_extract to get asm offsets.
5445       fi
5446     ;;
5447     *:arm*)
5448       if test -n "$GNU_AS" ; then
5449         VPX_AS=$AS
5450         dnl These flags are a lie; they're just used to enable the requisite
5451         dnl opcodes; actual arch detection is done at runtime.
5452         VPX_ASFLAGS="-march=armv7-a -mfpu=neon"
5453         VPX_DASH_C_FLAG="-c"
5454         VPX_AS_CONVERSION='$(PERL) $(topsrcdir)/media/libvpx/build/make/ads2gas.pl'
5455         VPX_ASM_SUFFIX="$ASM_SUFFIX"
5456         VPX_ARM_ASM=1
5457       fi
5458     ;;
5459     *:x86)
5460       if $CC -E -dM -</dev/null | grep -q __ELF__; then
5461         VPX_ASFLAGS="-f elf32 -rnasm -pnasm"
5462         VPX_X86_ASM=1
5463       fi
5464     ;;
5465     *:x86_64)
5466       if $CC -E -dM -</dev/null | grep -q __ELF__; then
5467         VPX_ASFLAGS="-f elf64 -rnasm -pnasm -DPIC"
5468         VPX_X86_ASM=1
5469       fi
5470     ;;
5471     esac
5473     if test -n "$COMPILE_ENVIRONMENT" -a -n "$VPX_X86_ASM" -a -z "$VPX_AS"; then
5474       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.])
5475     fi
5477     if test -n "$MOZ_VP8_ENCODER" -a \
5478             -z "$GNU_CC" -a -z "$INTEL_CC" -a -z "$CLANG_CC" ; then
5479       dnl We prefer to get asm offsets using inline assembler, which the above
5480       dnl compilers can do. When we're not using one of those, we have to fall
5481       dnl back to obj_int_extract, which reads them from a compiled object
5482       dnl file. Unfortunately, that only works if we're compiling on a system
5483       dnl with the header files for the appropriate object file format.
5484       VPX_NEED_OBJ_INT_EXTRACT=1
5485     fi
5487     if test -n "$VPX_X86_ASM"; then
5488       AC_DEFINE(VPX_X86_ASM)
5489     elif test -n "$VPX_ARM_ASM"; then
5490       AC_DEFINE(VPX_ARM_ASM)
5491     else
5492       AC_MSG_WARN([No assembler or assembly support for libvpx. Using unoptimized C routines.])
5493     fi
5496 dnl ========================================================
5497 dnl = Disable Wave decoder support
5498 dnl ========================================================
5499 MOZ_ARG_DISABLE_BOOL(wave,
5500 [  --disable-wave          Disable Wave decoder support],
5501     MOZ_WAVE=,
5502     MOZ_WAVE=1)
5504 if test -n "$MOZ_WAVE"; then
5505     AC_DEFINE(MOZ_WAVE)
5506     MOZ_CUBEB=1
5509 dnl ========================================================
5510 dnl = Handle dependent CUBEB and MEDIA defines
5511 dnl ========================================================
5513 if test -n "$MOZ_SPEEX_RESAMPLER"; then
5514     AC_DEFINE(MOZ_SPEEX_RESAMPLER)
5517 if test -n "$MOZ_SOUNDTOUCH"; then
5518     AC_DEFINE(MOZ_SOUNDTOUCH)
5521 if test -n "$MOZ_CUBEB"; then
5522     AC_DEFINE(MOZ_CUBEB)
5525 if test -n "$MOZ_OPUS" -a -z "$MOZ_OGG"; then
5526     AC_MSG_ERROR([MOZ_OPUS requires MOZ_OGG which is disabled.])
5529 if test -n "$MOZ_VORBIS" -a -z "$MOZ_OGG"; then
5530     AC_MSG_ERROR([MOZ_VORBIS requires MOZ_OGG which is disabled.
5531 Note that you need vorbis support for WebM playback.])
5534 if test -n "$MOZ_VORBIS" -a -n "$MOZ_TREMOR"; then
5535     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/])
5538 if test -n "$MOZ_WEBRTC" -a -z "$MOZ_OPUS"; then
5539     AC_MSG_ERROR([MOZ_WEBRTC requires MOZ_OPUS which is disabled.])
5542 if test -n "$MOZ_VORBIS"; then
5543     AC_DEFINE(MOZ_VORBIS)
5546 if test -n "$MOZ_TREMOR"; then
5547     AC_DEFINE(MOZ_TREMOR)
5550 if test -n "$MOZ_OPUS"; then
5551     AC_DEFINE(MOZ_OPUS)
5554 dnl ====================================================
5555 dnl = Check alsa availability on Linux if using libcubeb
5556 dnl ====================================================
5558 dnl If using libcubeb with Linux, ensure that the alsa library is available
5559 if test -n "$MOZ_CUBEB" -a "$OS_TARGET" = "Linux"; then
5560     MOZ_ALSA=1
5563 MOZ_ARG_ENABLE_BOOL(alsa,
5564 [  --enable-alsa          Enable Alsa support (default on Linux)],
5565    MOZ_ALSA=1,
5566    MOZ_ALSA=)
5568 if test -n "$MOZ_ALSA"; then
5569     AC_DEFINE(MOZ_CUBEB)
5570     PKG_CHECK_MODULES(MOZ_ALSA, alsa, ,
5571          [echo "$MOZ_ALSA_PKG_ERRORS"
5572           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.)])])
5575 AC_SUBST(MOZ_ALSA)
5576 AC_SUBST(MOZ_ALSA_CFLAGS)
5577 AC_SUBST(MOZ_ALSA_LIBS)
5579 dnl ========================================================
5580 dnl = Disable PulseAudio
5581 dnl ========================================================
5583 dnl If using libcubeb with Linux, ensure that the PA library is available
5584 if test -n "$MOZ_CUBEB" -a "$OS_TARGET" = "Linux" -a -z "$MOZ_B2G"; then
5585     MOZ_PULSEAUDIO=1
5588 MOZ_ARG_DISABLE_BOOL(pulseaudio,
5589 [  --disable-pulseaudio          Disable PulseAudio support],
5590    MOZ_PULSEAUDIO=,
5591    MOZ_PULSEAUDIO=1)
5593 if test -n "$MOZ_PULSEAUDIO"; then
5594     AC_DEFINE(MOZ_CUBEB)
5595     if test -z "$gonkdir"; then
5596         PKG_CHECK_MODULES(MOZ_PULSEAUDIO, libpulse, ,
5597              [echo "$MOZ_PULSEAUDIO_PKG_ERRORS"
5598               AC_MSG_ERROR([pulseaudio audio backend requires libpulse development package])])
5599     else
5600         MOZ_PULSEAUDIO_CFLAGS="-I$gonkdir/external/pulseaudio/pulseaudio/src"
5601     fi
5604 AC_SUBST(MOZ_PULSEAUDIO)
5605 AC_SUBST(MOZ_PULSEAUDIO_CFLAGS)
5607 dnl ========================================================
5608 dnl = Enable GStreamer
5609 dnl ========================================================
5610 if test "$OS_TARGET" = "Linux"; then
5611   MOZ_GSTREAMER=1
5614 MOZ_ARG_ENABLE_BOOL(gstreamer,
5615 [  --enable-gstreamer           Enable GStreamer support],
5616 MOZ_GSTREAMER=1,
5617 MOZ_GSTREAMER=)
5619 if test "$MOZ_GSTREAMER"; then
5620     # API version, eg 0.10, 1.0 etc
5621     GST_API_VERSION=0.10
5622     # core/base release number
5623     GST_VERSION=0.10.25
5624     PKG_CHECK_MODULES(GSTREAMER,
5625                       gstreamer-$GST_API_VERSION >= $GST_VERSION
5626                       gstreamer-app-$GST_API_VERSION
5627                       gstreamer-plugins-base-$GST_API_VERSION, ,
5628                       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]))
5629     if test -n "$GSTREAMER_LIBS"; then
5630        _SAVE_LDFLAGS=$LDFLAGS
5631        LDFLAGS="$LDFLAGS $GSTREAMER_LIBS -lgstvideo-$GST_API_VERSION"
5632        AC_TRY_LINK(,[return 0;],_HAVE_LIBGSTVIDEO=1,_HAVE_LIBGSTVIDEO=)
5633        if test -n "$_HAVE_LIBGSTVIDEO" ; then
5634           GSTREAMER_LIBS="$GSTREAMER_LIBS -lgstvideo-$GST_API_VERSION"
5635        else
5636           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.])
5637        fi
5638        LDFLAGS=$_SAVE_LDFLAGS
5639     else
5640        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])
5641     fi
5643 AC_SUBST(GSTREAMER_CFLAGS)
5644 AC_SUBST(GSTREAMER_LIBS)
5645 AC_SUBST(MOZ_GSTREAMER)
5647 if test -n "$MOZ_GSTREAMER"; then
5648    AC_DEFINE(MOZ_GSTREAMER)
5652 dnl ========================================================
5653 dnl Permissions System
5654 dnl ========================================================
5655 MOZ_ARG_DISABLE_BOOL(permissions,
5656 [  --disable-permissions   Disable permissions (popup and cookie blocking)],
5657     MOZ_PERMISSIONS=,
5658     MOZ_PERMISSIONS=1
5661 dnl ========================================================
5662 dnl Child permissions, currently only used for b2g
5663 dnl ========================================================
5664 if test -n "$MOZ_B2G"; then
5665     if test -n "$MOZ_PERMISSIONS"; then
5666         MOZ_CHILD_PERMISSIONS=1
5667     else
5668         AC_MSG_ERROR([You need to enable MOZ_PERMISSIONS for MOZ_CHILD_PERMISSIONS])
5669     fi
5671 AC_SUBST(MOZ_CHILD_PERMISSIONS)
5673 dnl ========================================================
5674 dnl NegotiateAuth
5675 dnl ========================================================
5676 MOZ_ARG_DISABLE_BOOL(negotiateauth,
5677 [  --disable-negotiateauth Disable GSS-API negotiation ],
5678     MOZ_AUTH_EXTENSION=,
5679     MOZ_AUTH_EXTENSION=1 )
5681 dnl ========================================================
5682 dnl Pref extensions (autoconfig)
5683 dnl ========================================================
5684 MOZ_ARG_DISABLE_BOOL(pref-extensions,
5685 [  --disable-pref-extensions
5686                           Disable pref extensions such as autoconfig],
5687   MOZ_PREF_EXTENSIONS=,
5688   MOZ_PREF_EXTENSIONS=1 )
5690 dnl ========================================================
5691 dnl Searching of system directories for extensions.
5692 dnl Note: this switch is meant to be used for test builds
5693 dnl whose behavior should not depend on what happens to be
5694 dnl installed on the local machine.
5695 dnl ========================================================
5696 MOZ_ARG_DISABLE_BOOL(system-extension-dirs,
5697 [  --disable-system-extension-dirs
5698                           Disable searching system- and account-global
5699                           directories for extensions of any kind; use
5700                           only profile-specific extension directories],
5701   ENABLE_SYSTEM_EXTENSION_DIRS=,
5702   ENABLE_SYSTEM_EXTENSION_DIRS=1 )
5703 if test "$ENABLE_SYSTEM_EXTENSION_DIRS"; then
5704   AC_DEFINE(ENABLE_SYSTEM_EXTENSION_DIRS)
5707 dnl ========================================================
5708 dnl = Universalchardet
5709 dnl ========================================================
5710 MOZ_ARG_DISABLE_BOOL(universalchardet,
5711 [  --disable-universalchardet
5712                           Disable universal encoding detection],
5713   MOZ_UNIVERSALCHARDET=,
5714   MOZ_UNIVERSALCHARDET=1 )
5716 if test -n "${JAVA_BIN_PATH}"; then
5717   dnl Look for javac and jar in the specified path.
5718   JAVA_PATH="$JAVA_BIN_PATH"
5719 else
5720   dnl No path specified, so look for javac and jar in $JAVA_HOME & $PATH.
5721   JAVA_PATH="$JAVA_HOME/bin:$PATH"
5724 MOZ_PATH_PROG(JAVA, java, :, [$JAVA_PATH])
5725 MOZ_PATH_PROG(JAVAC, javac, :, [$JAVA_PATH])
5726 MOZ_PATH_PROG(JAVAH, javah, :, [$JAVA_PATH])
5727 MOZ_PATH_PROG(JAR, jar, :, [$JAVA_PATH])
5728 MOZ_PATH_PROG(JARSIGNER, jarsigner, :, [$JAVA_PATH])
5729 MOZ_PATH_PROG(KEYTOOL, keytool, :, [$JAVA_PATH])
5731 if test -n "${JAVA_BIN_PATH}" -o \
5732   \( "$OS_TARGET" = Android -a x"$MOZ_WIDGET_TOOLKIT" != x"gonk" \); then
5733   if test -z "$JAVA" -o "$JAVA" = ":"; then
5734     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}])
5735   fi
5736   if test -z "$JAVAC" -o "$JAVAC" = ":"; then
5737     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}])
5738   fi
5739   if test -z "$JAVAH" -o "$JAVAH" = ":"; then
5740     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}])
5741   fi
5742   if test -z "$JAR" -o "$JAR" = ":"; then
5743     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}])
5744   fi
5745   if test -z "$JARSIGNER" -o "$JARSIGNER" = ":"; then
5746     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}])
5747   fi
5748   if test -z "$KEYTOOL" -o "$KEYTOOL" = ":"; then
5749     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}])
5750   fi
5753 dnl ========================================================
5754 dnl = ANGLE OpenGL->D3D translator for WebGL
5755 dnl = * only applies to win32
5756 dnl = * enabled by default (shipping build); requires explicit --disable to disable
5757 dnl ========================================================
5758 MOZ_ANGLE_RENDERER=
5759 MOZ_DIRECTX_SDK_PATH=
5760 MOZ_DIRECTX_SDK_CPU_SUFFIX=
5761 MOZ_D3DCOMPILER_CAB=
5762 MOZ_D3DCOMPILER_DLL=
5763 case "$target_os" in
5764 *mingw*)
5765     MOZ_ANGLE_RENDERER=1
5766     ;;
5767 esac
5769 # The DirectX SDK libraries are split into x86 and x64 sub-directories
5770 case "${target_cpu}" in
5771 i*86)
5772   MOZ_DIRECTX_SDK_CPU_SUFFIX=x86
5773   ;;
5774 x86_64)
5775   MOZ_DIRECTX_SDK_CPU_SUFFIX=x64
5776   ;;
5777 esac
5779 MOZ_ARG_DISABLE_BOOL(webgl,
5780 [  --disable-webgl     Disable building of the WebGL implementation],
5781     MOZ_WEBGL_DISABLED=1,
5782     MOZ_WEBGL_DISABLED=)
5784 if test -n "$MOZ_WEBGL_DISABLED"; then
5785   MOZ_WEBGL=
5786   MOZ_ANGLE_RENDERER=
5789 if test -n "$MOZ_WEBGL"; then
5790   AC_DEFINE(MOZ_WEBGL)
5793 if test -n "$MOZ_WEBGL_CONFORMANT"; then
5794   AC_DEFINE(MOZ_WEBGL_CONFORMANT)
5797 # Locate a DirectX SDK here so we can use it for both ANGLE and
5798 # Joystick support.
5799 if test "$OS_TARGET" = "WINNT" -a -z "$CROSS_COMPILE"; then
5800   # Get the SDK path from the registry.
5801   # First try to get the June 2010 SDK
5802   MOZ_DIRECTX_SDK_REG_KEY=`reg query 'HKLM\Software\Microsoft\DirectX' //s | grep 'Microsoft DirectX SDK (June 2010)' | head -n 1`
5803   if test -z "$MOZ_DIRECTX_SDK_REG_KEY" ; then
5804     # Otherwise just take whatever comes first
5805     MOZ_DIRECTX_SDK_REG_KEY=`reg query 'HKLM\Software\Microsoft\DirectX' //s | grep 'Microsoft DirectX SDK' | head -n 1`
5806   fi
5807   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'`
5810 if test -n "$MOZ_ANGLE_RENDERER" -a -z "$CROSS_COMPILE"; then
5811   if test -n "`echo $MOZ_DIRECTX_SDK_REG_KEY | grep 'February 2010'`" ; then
5812     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.])
5813   fi
5815   if test -n "$MOZ_DIRECTX_SDK_PATH" &&
5816      test -f "$MOZ_DIRECTX_SDK_PATH"/include/d3dx9.h &&
5817          test -f "$MOZ_DIRECTX_SDK_PATH"/lib/$MOZ_DIRECTX_SDK_CPU_SUFFIX/dxguid.lib ; then
5818     AC_MSG_RESULT([Found DirectX SDK via registry, using $MOZ_DIRECTX_SDK_PATH])
5819   else
5820     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.])
5821   fi
5823   # Get the SDK numeric version (e.g. 43) by looking at the dependencies of d3dx9.lib
5824   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'`
5826   if test -z "$MOZ_D3DX9_VERSION" ; then
5827         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.])
5828   fi
5830   MOZ_D3DCOMPILER_CAB=`find "$MOZ_DIRECTX_SDK_PATH"/Redist -name *D3DCompiler_${MOZ_D3DX9_VERSION}_${MOZ_DIRECTX_SDK_CPU_SUFFIX}.cab | head -n1`
5832   if test -z "$MOZ_D3DCOMPILER_CAB"; then
5833     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.])
5834   fi
5836   MOZ_D3DCOMPILER_DLL=D3DCompiler_$MOZ_D3DX9_VERSION.dll
5839 dnl ========================================================
5840 dnl Gamepad support
5841 dnl ========================================================
5842 MOZ_GAMEPAD=
5843 MOZ_GAMEPAD_BACKEND=stub
5845 # Gamepad DOM is built on supported platforms by default.
5846 case "$OS_TARGET" in
5847      Darwin|WINNT|Linux)
5848        MOZ_GAMEPAD=1
5849        ;;
5850      *)
5851        ;;
5852 esac
5854 MOZ_ARG_DISABLE_BOOL(gamepad,
5855 [  --disable-gamepad   Disable gamepad support],
5856     MOZ_GAMEPAD=,
5857     MOZ_GAMEPAD=1)
5859 if test "$MOZ_GAMEPAD"; then
5860     case "$OS_TARGET" in
5861     Darwin)
5862         MOZ_GAMEPAD_BACKEND=cocoa
5863         ;;
5864     WINNT)
5865         if test -n "$MOZ_DIRECTX_SDK_PATH" ; then
5866             if ! test -f "$MOZ_DIRECTX_SDK_PATH"/lib/$MOZ_DIRECTX_SDK_CPU_SUFFIX/dxguid.lib ; then
5867                MOZ_GAMEPAD=
5868             fi
5869         elif test "$GCC" != "yes"; then
5870             MOZ_GAMEPAD=
5871         fi
5872         if test -z "$MOZ_GAMEPAD"; then
5873            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.])
5874         fi
5875         MOZ_GAMEPAD_BACKEND=windows
5876         ;;
5877     Linux)
5878         MOZ_CHECK_HEADER([linux/joystick.h])
5879         if test "$ac_cv_header_linux_joystick_h" != "yes"; then
5880           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.])
5881         fi
5882         MOZ_GAMEPAD_BACKEND=linux
5883         ;;
5884     *)
5885         ;;
5886    esac
5888   AC_DEFINE(MOZ_GAMEPAD)
5890 AC_SUBST(MOZ_GAMEPAD)
5891 AC_SUBST(MOZ_GAMEPAD_BACKEND)
5893 dnl ========================================================
5894 dnl = Breakpad crash reporting (on by default on supported platforms)
5895 dnl ========================================================
5897 case $target in
5898 i?86-*-mingw*|x86_64-*-mingw*)
5899   MOZ_CRASHREPORTER=1
5900   ;;
5901 i?86-apple-darwin*|x86_64-apple-darwin*)
5902   MOZ_CRASHREPORTER=1
5903   ;;
5904 i?86-*-linux*|x86_64-*-linux*|arm-*-linux*)
5905   if test "$MOZ_ENABLE_GTK"; then
5906     MOZ_CRASHREPORTER=1
5907   fi
5908   ;;
5909 *-android*|*-linuxandroid*)
5910   MOZ_CRASHREPORTER=1
5911   ;;
5912 *solaris*)
5913   MOZ_CRASHREPORTER=1
5914   ;;
5915 esac
5917 MOZ_ARG_DISABLE_BOOL(crashreporter,
5918 [  --disable-crashreporter Disable breakpad crash reporting],
5919     [MOZ_CRASHREPORTER=],
5920     [MOZ_CRASHREPORTER=F # Force enable breakpad])
5922 if test "$OS_ARCH" != "$HOST_OS_ARCH" -a "$OS_ARCH" != "WINNT"; then
5923   if test "$MOZ_CRASHREPORTER" = F; then
5924     AC_MSG_ERROR([Cannot --enable-crashreporter, as breakpad tools do not support compiling on $HOST_OS_ARCH while targeting $OS_ARCH.])
5925   fi
5926   MOZ_CRASHREPORTER=
5929 if test -n "$MOZ_CRASHREPORTER"; then
5930    AC_DEFINE(MOZ_CRASHREPORTER)
5932   if test "$OS_TARGET" = "Linux" -o "$OS_ARCH" = "SunOS" && \
5933     test -z "$SKIP_LIBRARY_CHECKS"; then
5934     PKG_CHECK_MODULES(MOZ_GTHREAD, gthread-2.0)
5935     AC_SUBST(MOZ_GTHREAD_CFLAGS)
5936     AC_SUBST(MOZ_GTHREAD_LIBS)
5937   fi
5939   if test "$OS_ARCH" = "WINNT"; then
5940     if test -z "$HAVE_64BIT_OS"; then
5941       MOZ_CRASHREPORTER_INJECTOR=1
5942       AC_DEFINE(MOZ_CRASHREPORTER_INJECTOR)
5943     fi
5944   fi
5947 MOZ_ARG_WITH_STRING(crashreporter-enable-percent,
5948 [  --with-crashreporter-enable-percent=NN
5949                           Enable sending crash reports by default on NN% of users. (default=100)],
5950 [ val=`echo $withval | sed 's/[^0-9]//g'`
5951     MOZ_CRASHREPORTER_ENABLE_PERCENT="$val"])
5953 if test -z "$MOZ_CRASHREPORTER_ENABLE_PERCENT"; then
5954    MOZ_CRASHREPORTER_ENABLE_PERCENT=100
5956 AC_DEFINE_UNQUOTED(MOZ_CRASHREPORTER_ENABLE_PERCENT, $MOZ_CRASHREPORTER_ENABLE_PERCENT)
5958 dnl ========================================================
5959 dnl = libjpeg-turbo configuration
5960 dnl ========================================================
5961 MOZ_LIBJPEG_TURBO=
5962 if test -z "$MOZ_NATIVE_JPEG"; then
5963     MOZ_LIBJPEG_TURBO=1
5966 MOZ_ARG_DISABLE_BOOL(libjpeg_turbo,
5967 [ --disable-libjpeg-turbo  Disable optimized jpeg decoding routines],
5968     MOZ_LIBJPEG_TURBO=,
5969     MOZ_LIBJPEG_TURBO=1)
5971 if test "$MOZ_NATIVE_JPEG" = 1 -a "$MOZ_LIBJPEG_TURBO" = 1; then
5972     AC_MSG_ERROR([cannot use --with-system-jpeg with --enable-libjpeg-turbo.])
5975 dnl Detect if we can use yasm to compile libjpeg-turbo's optimized assembly
5976 dnl files.
5978 if test -n "$MOZ_LIBJPEG_TURBO"; then
5980   dnl Do we support libjpeg-turbo on this platform?
5981   case "$OS_ARCH:$OS_TEST" in
5982   Darwin:i?86)
5983     LIBJPEG_TURBO_ASFLAGS="-f macho32 -rnasm -pnasm -DPIC -DMACHO"
5984     LIBJPEG_TURBO_X86_ASM=1
5985   ;;
5986   Darwin:x86_64)
5987     LIBJPEG_TURBO_ASFLAGS="-f macho64 -rnasm -pnasm -D__x86_64__ -DPIC -DMACHO"
5988     LIBJPEG_TURBO_X64_ASM=1
5989   ;;
5990   WINNT:x86|WINNT:i?86)
5991     LIBJPEG_TURBO_ASFLAGS="-f win32 -rnasm -pnasm -DPIC -DWIN32"
5992     LIBJPEG_TURBO_X86_ASM=1
5993   ;;
5994   WINNT:x86_64)
5995     LIBJPEG_TURBO_ASFLAGS="-f win64 -rnasm -pnasm -D__x86_64__ -DPIC -DWIN64 -DMSVC"
5996     LIBJPEG_TURBO_X64_ASM=1
5997   ;;
5998   *:arm*)
5999     LIBJPEG_TURBO_ASFLAGS="-march=armv7-a -mfpu=neon"
6000     LIBJPEG_TURBO_ARM_ASM=1
6001   ;;
6002   *:x86|*:i?86)
6003     if $CC -E -dM -</dev/null | grep -q __ELF__; then
6004       LIBJPEG_TURBO_ASFLAGS="-f elf32 -rnasm -pnasm -DPIC -DELF"
6005       LIBJPEG_TURBO_X86_ASM=1
6006     fi
6007   ;;
6008   *:x86_64)
6009     if $CC -E -dM -</dev/null | grep -q __ELF__; then
6010       LIBJPEG_TURBO_ASFLAGS="-f elf64 -rnasm -pnasm -D__x86_64__ -DPIC -DELF"
6011       LIBJPEG_TURBO_X64_ASM=1
6012     fi
6013   ;;
6014   esac
6018 dnl If we're on an x86 or x64 system which supports libjpeg-turbo's asm routines
6019 dnl and --disable-libjpeg-turbo wasn't passed, check for Yasm, and error out if
6020 dnl it doesn't exist or we have too old of a version.
6021 if test -n "$LIBJPEG_TURBO_X86_ASM" -o -n "$LIBJPEG_TURBO_X64_ASM" ; then
6022     LIBJPEG_TURBO_AS=$YASM
6024     if test -z "$LIBJPEG_TURBO_AS" ; then
6025         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.])
6026     fi
6028     dnl Check that we have the right yasm version.  We require 1.0.1 or newer
6029     dnl on Linux and 1.1 or newer everywhere else.
6030     if test "$OS_ARCH" = "Linux" ; then
6031         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
6032             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.])
6033         fi
6034     else
6035         if test "$_YASM_MAJOR_VERSION" -lt "1" -o \( "$_YASM_MAJOR_VERSION" -eq "1" -a "$_YASM_MINOR_VERSION" -lt "1" \) ; then
6036             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.])
6037         fi
6038     fi
6041 dnl If we're on an ARM system which supports libjpeg-turbo's asm routines and
6042 dnl --disable-libjpeg-turbo wasn't passed, use the C compiler as the assembler.
6043 if test -n "$LIBJPEG_TURBO_ARM_ASM" ; then
6044     echo "Using $AS as the assembler for ARM code."
6045     LIBJPEG_TURBO_AS=$AS
6048 if test -n "$LIBJPEG_TURBO_X86_ASM"; then
6049     AC_DEFINE(LIBJPEG_TURBO_X86_ASM)
6050 elif test -n "$LIBJPEG_TURBO_X64_ASM"; then
6051     AC_DEFINE(LIBJPEG_TURBO_X64_ASM)
6052 elif test -n "$LIBJPEG_TURBO_ARM_ASM"; then
6053     AC_DEFINE(LIBJPEG_TURBO_ARM_ASM)
6054 elif test -n "$MOZ_LIBJPEG_TURBO"; then
6055     dnl Warn if we're not building the optimized routines, even though the user
6056     dnl didn't specify --disable-libjpeg-turbo.
6057     AC_MSG_WARN([No assembler or assembly support for libjpeg-turbo.  Using unoptimized C routines.])
6060 dnl ========================================================
6061 dnl = Enable compilation of specific extension modules
6062 dnl ========================================================
6064 MOZ_ARG_ENABLE_STRING(extensions,
6065 [  --enable-extensions     Enable extensions],
6066 [ for option in `echo $enableval | sed 's/,/ /g'`; do
6067     if test "$option" = "yes" -o "$option" = "all"; then
6068         AC_MSG_ERROR([--enable-extensions=$option is no longer supported.])
6069     elif test "$option" = "no" -o "$option" = "none"; then
6070         MOZ_EXTENSIONS=""
6071     elif test "$option" = "default"; then
6072         MOZ_EXTENSIONS="$MOZ_EXTENSIONS $MOZ_EXTENSIONS_DEFAULT"
6073     elif test `echo "$option" | grep -c \^-` != 0; then
6074         option=`echo $option | sed 's/^-//'`
6075         MOZ_EXTENSIONS=`echo "$MOZ_EXTENSIONS" | sed "s/ ${option}//"`
6076     else
6077         MOZ_EXTENSIONS="$MOZ_EXTENSIONS $option"
6078     fi
6079 done],
6080     MOZ_EXTENSIONS="$MOZ_EXTENSIONS_DEFAULT")
6082 if test -z "$MOZ_ENABLE_GNOMEVFS" -a `echo "$MOZ_EXTENSIONS" | grep -c gnomevfs` -ne 0; then
6083     # Suppress warning on non-X11 platforms
6084     if test -n "$MOZ_X11"; then
6085         AC_MSG_WARN([Removing gnomevfs from MOZ_EXTENSIONS due to no --enable-gnomevfs.])
6086     fi
6087     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gnomevfs||'`
6090 dnl Do not build gnomevfs with libxul based apps
6091 if test -n "$LIBXUL_SDK_DIR" -a `echo "$MOZ_EXTENSIONS" | grep -c gnomevfs` -ne 0; then
6092     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gnomevfs||'`
6095 if test -z "$MOZ_ENABLE_GIO" -a `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then
6096     # Suppress warning on non-X11 platforms
6097     if test -n "$MOZ_X11"; then
6098         AC_MSG_WARN([Removing gio from MOZ_EXTENSIONS due to --disable-gio.])
6099     fi
6100     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'`
6103 dnl Do not build gio with libxul based apps
6104 if test -n "$LIBXUL_SDK_DIR" -a `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then
6105     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'`
6108 if test `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then
6109     MOZ_GIO_COMPONENT=1
6110     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'`
6112 AC_SUBST(MOZ_GIO_COMPONENT)
6114 if test -z "$MOZ_JSDEBUGGER" -a `echo "$MOZ_EXTENSIONS" | grep -c venkman` -ne 0; then
6115     AC_MSG_WARN([Cannot build venkman without JavaScript debug library. Removing venkman from MOZ_EXTENSIONS.])
6116     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'`
6119 dnl Remove dupes
6120 MOZ_EXTENSIONS=`${PERL} ${srcdir}/build/unix/uniq.pl ${MOZ_EXTENSIONS}`
6122 dnl Ensure every extension exists, to avoid mostly-inscrutable error messages
6123 dnl when trying to build a nonexistent extension.
6124 for extension in $MOZ_EXTENSIONS; do
6125     if test ! -d "${srcdir}/extensions/${extension}"; then
6126         AC_MSG_ERROR([Unrecognized extension provided to --enable-extensions: ${extension}.])
6127     fi
6128 done
6130 if test -n "$MOZ_USE_NATIVE_POPUP_WINDOWS"; then
6131   AC_DEFINE(MOZ_USE_NATIVE_POPUP_WINDOWS)
6134 dnl ========================================================
6135 dnl Build Freetype in the tree
6136 dnl ========================================================
6137 MOZ_ARG_ENABLE_BOOL(tree-freetype,
6138 [  --enable-tree-freetype  Enable Tree FreeType],
6139     MOZ_TREE_FREETYPE=1,
6140     MOZ_TREE_FREETYPE= )
6141 if test -n "$MOZ_TREE_FREETYPE"; then
6142    if test -n "$_WIN32_MSVC"; then
6143       AC_ERROR("building with in-tree freetype is not supported on MSVC")
6144    fi
6145    AC_DEFINE(MOZ_TREE_FREETYPE)
6146    AC_SUBST(MOZ_TREE_FREETYPE)
6147    MOZ_ENABLE_CAIRO_FT=1
6148    FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
6149    FT2_CFLAGS='-I$(topsrcdir)/modules/freetype2/include'
6150    CAIRO_FT_CFLAGS='-I$(topsrcdir)/modules/freetype2/include'
6151    FT2_LIBS='$(call EXPAND_LIBNAME_PATH,freetype,$(DEPTH)/modules/freetype2/.libs)'
6152    CAIRO_FT_OSLIBS=''
6153    AC_DEFINE(HAVE_FT_BITMAP_SIZE_Y_PPEM)
6154    AC_DEFINE(HAVE_FT_GLYPHSLOT_EMBOLDEN)
6155    AC_DEFINE(HAVE_FT_LOAD_SFNT_TABLE)
6156    AC_SUBST(CAIRO_FT_CFLAGS)
6159 dnl ========================================================
6160 dnl Installer
6161 dnl ========================================================
6162 dnl Abort Windows build if the required major version and
6163 dnl minimum minor version of Unicode NSIS isn't in the path
6164 dnl (unless in case of cross compiling, for which Unicode
6165 dnl is not yet sufficient).
6166 if test "$OS_ARCH" = "WINNT"; then
6167     REQ_NSIS_MAJOR_VER=2
6168     MIN_NSIS_MINOR_VER=46
6169     MOZ_PATH_PROGS(MAKENSISU, $MAKENSISU makensisu-2.46 makensis)
6170     if test -n "$MAKENSISU" -a "$MAKENSISU" != ":"; then
6171       AC_MSG_RESULT([yes])
6172       changequote(,)
6173       MAKENSISU_VER=`"$MAKENSISU" -version 2>/dev/null | sed -e '/-Unicode/!s/.*//g' -e 's/^v\([0-9]\+\.[0-9]\+\).*\-Unicode$/\1/g'`
6174       changequote([,])
6175       if test ! "$MAKENSISU_VER" = ""; then
6176           MAKENSISU_MAJOR_VER=`echo $MAKENSISU_VER | $AWK -F\. '{ print $1 }'`
6177           MAKENSISU_MINOR_VER=`echo $MAKENSISU_VER | $AWK -F\. '{ print $2 }'`
6178       fi
6179       AC_MSG_CHECKING([for Unicode NSIS with major version == $REQ_NSIS_MAJOR_VER and minor version >= $MIN_NSIS_MINOR_VER])
6180       if test "$MAKENSISU_VER" = "" || \
6181          test ! "$MAKENSISU_MAJOR_VER" = "$REQ_NSIS_MAJOR_VER" -o \
6182               ! "$MAKENSISU_MINOR_VER" -ge $MIN_NSIS_MINOR_VER; then
6183           AC_MSG_RESULT([no])
6184           if test -z "$CROSS_COMPILE"; then
6185             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.])
6186           else
6187             MAKENSISU=
6188           fi
6189       fi
6190     elif test -z "$CROSS_COMPILE"; then
6191       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.])
6192     else
6193       MAKENSISU=
6194     fi
6197 dnl ========================================================
6198 dnl Web App Runtime
6199 dnl ========================================================
6200 MOZ_ARG_DISABLE_BOOL(webapp-runtime,
6201 [  --disable-webapp-runtime  Disable Web App Runtime],
6202     MOZ_WEBAPP_RUNTIME=,
6203     MOZ_WEBAPP_RUNTIME=1)
6204 if test "$MOZ_WIDGET_TOOLKIT" != "windows" -a "$MOZ_WIDGET_TOOLKIT" != "cocoa" -a "$MOZ_WIDGET_TOOLKIT" != "gtk2"; then
6205     MOZ_WEBAPP_RUNTIME=
6207 if test "$OS_ARCH" = "WINNT" -a -z "$MAKENSISU" -a -n "$CROSS_COMPILE"; then
6208     MOZ_WEBAPP_RUNTIME=
6210 AC_SUBST(MOZ_WEBAPP_RUNTIME)
6211 if test "$MOZ_WEBAPP_RUNTIME"; then
6212     AC_DEFINE(MOZ_WEBAPP_RUNTIME)
6215 AC_MSG_CHECKING([for tar archiver])
6216 AC_CHECK_PROGS(TAR, gnutar gtar tar, "")
6217 if test -z "$TAR"; then
6218     AC_MSG_ERROR([no tar archiver found in \$PATH])
6220 AC_MSG_RESULT([$TAR])
6221 AC_SUBST(TAR)
6223 AC_MSG_CHECKING([for wget])
6224 AC_CHECK_PROGS(WGET, wget, "")
6225 AC_MSG_RESULT([$WGET])
6226 AC_SUBST(WGET)
6228 dnl ========================================================
6229 dnl Signing
6230 dnl ========================================================
6232 if test -n "$MOZ_SIGN_CMD"; then
6233     AC_DEFINE(MOZ_SIGNING)
6236 dnl ========================================================
6237 dnl Maintenance Service
6238 dnl ========================================================
6240 MOZ_ARG_ENABLE_BOOL(maintenance-service,
6241 [  --enable-maintenance-service       Enable building of maintenanceservice],
6242     MOZ_MAINTENANCE_SERVICE=1,
6243     MOZ_MAINTENANCE_SERVICE= )
6245 if test -n "$MOZ_MAINTENANCE_SERVICE"; then
6246   if test "$OS_ARCH" = "WINNT"; then
6247     AC_DEFINE(MOZ_MAINTENANCE_SERVICE)
6248   else
6249     AC_MSG_ERROR([Can only build with --enable-maintenance-service with a Windows target])
6250   fi
6253 dnl ========================================================
6254 dnl Verify MAR signatures
6255 dnl ========================================================
6257 MOZ_ARG_ENABLE_BOOL(verify-mar,
6258 [  --enable-verify-mar     Enable verifying MAR signatures],
6259     MOZ_VERIFY_MAR_SIGNATURE=1,
6260     MOZ_VERIFY_MAR_SIGNATURE= )
6262 if test -n "$MOZ_VERIFY_MAR_SIGNATURE"; then
6263   if test "$OS_ARCH" = "WINNT"; then
6264     AC_DEFINE(MOZ_VERIFY_MAR_SIGNATURE)
6265   else
6266     AC_MSG_ERROR([Can only build with --enable-verify-mar with a Windows target])
6267   fi
6270 dnl ========================================================
6271 dnl Enable building the signmar program.
6272 dnl This option is much different than the --enable-verify-mar option.
6273 dnl --enable-verify-mar is for enabling the verification check on MAR
6274 dnl files in the updater.  The --enable-signmar option is for building
6275 dnl the signmar program.
6276 dnl ========================================================
6278 MOZ_ARG_ENABLE_BOOL(signmar,
6279 [  --enable-signmar     Enable building the signmar program],
6280     MOZ_ENABLE_SIGNMAR=1,
6281     MOZ_ENABLE_SIGNMAR= )
6283 if test -n "$MOZ_ENABLE_SIGNMAR"; then
6284   AC_DEFINE(MOZ_ENABLE_SIGNMAR)
6287 dnl ========================================================
6288 dnl Updater
6289 dnl ========================================================
6291 MOZ_ARG_DISABLE_BOOL(updater,
6292 [  --disable-updater       Disable building of updater],
6293     MOZ_UPDATER=,
6294     MOZ_UPDATER=1 )
6296 if test -n "$MOZ_UPDATER"; then
6297     AC_DEFINE(MOZ_UPDATER)
6300 # tools/update-packaging is not checked out by default.
6301 MOZ_ARG_ENABLE_BOOL(update-packaging,
6302 [  --enable-update-packaging
6303                           Enable tools/update-packaging],
6304     MOZ_UPDATE_PACKAGING=1,
6305     MOZ_UPDATE_PACKAGING= )
6306 AC_SUBST(MOZ_UPDATE_PACKAGING)
6308 dnl ========================================================
6309 dnl build the tests by default
6310 dnl ========================================================
6311 MOZ_ARG_DISABLE_BOOL(tests,
6312 [  --disable-tests         Do not build test libraries & programs],
6313     ENABLE_TESTS=,
6314     ENABLE_TESTS=1 )
6316 if test -n "$ENABLE_TESTS"; then
6317     MOZ_ENABLE_GTEST=1
6318     GTEST_HAS_RTTI=0
6319     AC_DEFINE(MOZ_ENABLE_GTEST)
6320     AC_DEFINE_UNQUOTED(GTEST_HAS_RTTI, 0)
6321     AC_SUBST(MOZ_ENABLE_GTEST)
6322     AC_SUBST(GTEST_HAS_RTTI)
6323     if test -n "$_WIN32_MSVC"; then
6324           AC_DEFINE_UNQUOTED(_VARIADIC_MAX, 10)
6325     fi
6326     if test "${OS_TARGET}" = "Android"; then
6327         AC_DEFINE(GTEST_OS_LINUX_ANDROID)
6328         AC_DEFINE(GTEST_USE_OWN_TR1_TUPLE)
6329         AC_DEFINE_UNQUOTED(GTEST_HAS_CLONE, 0)
6330         AC_SUBST(GTEST_OS_LINUX_ANDROID)
6331         AC_SUBST(GTEST_USE_OWN_TR1_TUPLE)
6332         AC_SUBST(GTEST_HAS_CLONE)
6333     fi
6336 dnl ========================================================
6337 dnl parental controls (for Windows Vista)
6338 dnl ========================================================
6339 MOZ_ARG_DISABLE_BOOL(parental-controls,
6340 [  --disable-parental-controls
6341                           Do not build parental controls],
6342    MOZ_DISABLE_PARENTAL_CONTROLS=1,
6343    MOZ_DISABLE_PARENTAL_CONTROLS=)
6344 if test -n "$MOZ_DISABLE_PARENTAL_CONTROLS"; then
6345     AC_DEFINE(MOZ_DISABLE_PARENTAL_CONTROLS)
6348 AC_SUBST(MOZ_DISABLE_PARENTAL_CONTROLS)
6350 dnl ========================================================
6351 dnl = Disable DOMCrypto
6352 dnl ========================================================
6353 if test -n "$MOZ_DISABLE_CRYPTOLEGACY"; then
6354     AC_DEFINE(MOZ_DISABLE_CRYPTOLEGACY)
6356 AC_SUBST(MOZ_DISABLE_CRYPTOLEGACY)
6358 dnl ========================================================
6359 dnl = Disable libpkix
6360 dnl ========================================================
6361 if test -n "$NSS_NO_LIBPKIX"; then
6362     AC_DEFINE(NSS_NO_LIBPKIX)
6364 AC_SUBST(NSS_NO_LIBPKIX)
6366 dnl ========================================================
6367 dnl = Content process sandboxing
6368 dnl ========================================================
6369 if test -n "$gonkdir"; then
6370     MOZ_CONTENT_SANDBOX=1
6373 MOZ_ARG_ENABLE_BOOL(content-sandbox,
6374 [  --enable-content-sandbox        Enable sandboxing support for content-processes],
6375     MOZ_CONTENT_SANDBOX=1,
6376     MOZ_CONTENT_SANDBOX=)
6378 if test -n "$MOZ_CONTENT_SANDBOX"; then
6379     AC_DEFINE(MOZ_CONTENT_SANDBOX)
6382 AC_SUBST(MOZ_CONTENT_SANDBOX)
6384 MOZ_ARG_ENABLE_BOOL(content-sandbox-reporter,
6385 [ --enable-content-sandbox-reporter        Enable syscall reporter to troubleshoot syscalls denied by the content-processes sandbox],
6386     MOZ_CONTENT_SANDBOX_REPORTER=1,
6387     MOZ_CONTENT_SANDBOX_REPORTER=)
6389 if test -n "$MOZ_CONTENT_SANDBOX_REPORTER"; then
6390     AC_DEFINE(MOZ_CONTENT_SANDBOX_REPORTER)
6393 AC_SUBST(MOZ_CONTENT_SANDBOX_REPORTER)
6395 dnl ========================================================
6396 dnl =
6397 dnl = Module specific options
6398 dnl =
6399 dnl ========================================================
6400 MOZ_ARG_HEADER(Individual module options)
6402 dnl ========================================================
6403 dnl = Disable feed handling components
6404 dnl ========================================================
6405 MOZ_ARG_DISABLE_BOOL(feeds,
6406 [  --disable-feeds         Disable feed handling and processing components],
6407     MOZ_FEEDS=,
6408     MOZ_FEEDS=1 )
6409 if test -n "$MOZ_FEEDS"; then
6410     AC_DEFINE(MOZ_FEEDS)
6411 else
6412     if test "$MOZ_BUILD_APP" = "browser"; then
6413         AC_MSG_ERROR([Cannot build Firefox with --disable-feeds.])
6414     fi
6417 dnl ========================================================
6418 dnl Check for sqlite
6419 dnl ========================================================
6421 MOZ_NATIVE_SQLITE=
6422 MOZ_ARG_ENABLE_BOOL(system-sqlite,
6423 [  --enable-system-sqlite  Use system sqlite (located with pkgconfig)],
6424 MOZ_NATIVE_SQLITE=1,
6425 MOZ_NATIVE_SQLITE= )
6427 if test -z "$MOZ_NATIVE_SQLITE"
6428 then
6429     SQLITE_CFLAGS=
6430     SQLITE_LIBS='$(call EXPAND_LIBNAME_PATH,mozsqlite3,$(DIST)/lib)'
6431 else
6432     dnl ============================
6433     dnl === SQLite Version check ===
6434     dnl ============================
6435     dnl Check to see if the system SQLite package is new enough.
6436     PKG_CHECK_MODULES(SQLITE, sqlite3 >= $SQLITE_VERSION)
6438     dnl ==================================
6439     dnl === SQLITE_SECURE_DELETE check ===
6440     dnl ==================================
6441     dnl Check to see if the system SQLite package is compiled with
6442     dnl SQLITE_SECURE_DELETE enabled.
6443     AC_MSG_CHECKING(for SQLITE_SECURE_DELETE support in system SQLite)
6444     _SAVE_CFLAGS="$CFLAGS"
6445     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6446     _SAVE_LIBS="$LIBS"
6447     LIBS="$LIBS $SQLITE_LIBS"
6448     AC_CACHE_VAL(ac_cv_sqlite_secure_delete,[
6449         AC_TRY_RUN([
6450             #include "sqlite3.h"
6452             int main(int argc, char **argv){
6453               return !sqlite3_compileoption_used("SQLITE_SECURE_DELETE");
6454             }],
6455             ac_cv_sqlite_secure_delete=yes,
6456             ac_cv_sqlite_secure_delete=no,
6457             ac_cv_sqlite_secure_delete=no
6458         )
6459     ])
6460     AC_MSG_RESULT($ac_cv_sqlite_secure_delete)
6461     CFLAGS="$_SAVE_CFLAGS"
6462     LIBS="$_SAVE_LIBS"
6463     if test "x$ac_cv_sqlite_secure_delete" = "xno"; then
6464         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_SECURE_DELETE.])
6465     fi
6467     dnl ===============================
6468     dnl === SQLITE_THREADSAFE check ===
6469     dnl ===============================
6470     dnl Check to see if the system SQLite package is compiled with
6471     dnl SQLITE_THREADSAFE enabled.
6472     AC_MSG_CHECKING(for SQLITE_THREADSAFE support in system SQLite)
6473     _SAVE_CFLAGS="$CFLAGS"
6474     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6475     _SAVE_LIBS="$LIBS"
6476     LIBS="$LIBS $SQLITE_LIBS"
6477     AC_CACHE_VAL(ac_cv_sqlite_threadsafe,[
6478         AC_TRY_RUN([
6479             #include "sqlite3.h"
6481             int main(int argc, char **argv){
6482               return !sqlite3_compileoption_used("SQLITE_THREADSAFE=1");
6483             }],
6484             ac_cv_sqlite_threadsafe=yes,
6485             ac_cv_sqlite_threadsafe=no,
6486             ac_cv_sqlite_threadsafe=no
6487         )
6488     ])
6489     AC_MSG_RESULT($ac_cv_sqlite_threadsafe)
6490     CFLAGS="$_SAVE_CFLAGS"
6491     LIBS="$_SAVE_LIBS"
6492     if test "x$ac_cv_sqlite_threadsafe" = "xno"; then
6493         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_THREADSAFE.])
6494     fi
6496     dnl ================================
6497     dnl === SQLITE_ENABLE_FTS3 check ===
6498     dnl ================================
6499     dnl check to see if the system SQLite package is compiled with
6500     dnl SQLITE_ENABLE_FTS3 enabled.
6501     AC_MSG_CHECKING(for SQLITE_ENABLE_FTS3 support in system SQLite)
6502     _SAVE_CFLAGS="$CFLAGS"
6503     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6504     _SAVE_LIBS="$LIBS"
6505     LIBS="$LIBS $SQLITE_LIBS"
6506     AC_CACHE_VAL(ac_cv_sqlite_enable_fts3,[
6507         AC_TRY_RUN([
6508             #include "sqlite3.h"
6510             int main(int argc, char **argv){
6511               return !sqlite3_compileoption_used("SQLITE_ENABLE_FTS3");
6512             }],
6513             ac_cv_sqlite_enable_fts3=yes,
6514             ac_cv_sqlite_enable_fts3=no,
6515             ac_cv_sqlite_enable_fts3=no
6516         )
6517     ])
6518     AC_MSG_RESULT($ac_cv_sqlite_enable_fts3)
6519     CFLAGS="$_SAVE_CFLAGS"
6520     LIBS="$_SAVE_LIBS"
6521     if test "x$ac_cv_sqlite_enable_fts3" = "xno"; then
6522         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_ENABLE_FTS3.])
6523     fi
6525     dnl =========================================
6526     dnl === SQLITE_ENABLE_UNLOCK_NOTIFY check ===
6527     dnl =========================================
6528     dnl check to see if the system SQLite package is compiled with
6529     dnl SQLITE_ENABLE_UNLOCK_NOTIFY enabled.
6530     AC_MSG_CHECKING(for SQLITE_ENABLE_UNLOCK_NOTIFY support in system SQLite)
6531     _SAVE_CFLAGS="$CFLAGS"
6532     CFLAGS="$CFLAGS $SQLITE_CFLAGS"
6533     _SAVE_LIBS="$LIBS"
6534     LIBS="$LIBS $SQLITE_LIBS"
6535     AC_CACHE_VAL(ac_cv_sqlite_enable_unlock_notify,[
6536         AC_TRY_RUN([
6537             #include "sqlite3.h"
6539             int main(int argc, char **argv){
6540               return !sqlite3_compileoption_used("SQLITE_ENABLE_UNLOCK_NOTIFY");
6541             }],
6542             ac_cv_sqlite_enable_unlock_notify=yes,
6543             ac_cv_sqlite_enable_unlock_notify=no,
6544             ac_cv_sqlite_enable_unlock_notify=no
6545         )
6546     ])
6547     AC_MSG_RESULT($ac_cv_sqlite_enable_unlock_notify)
6548     CFLAGS="$_SAVE_CFLAGS"
6549     LIBS="$_SAVE_LIBS"
6550     if test "x$ac_cv_sqlite_enable_unlock_notify" = "xno"; then
6551         AC_MSG_ERROR([System SQLite library is not compiled with SQLITE_ENABLE_UNLOCK_NOTIFY.])
6552     fi
6555 if test -n "$MOZ_NATIVE_SQLITE"; then
6556     AC_DEFINE(MOZ_NATIVE_SQLITE)
6558 AC_SUBST(MOZ_NATIVE_SQLITE)
6560 dnl ========================================================
6561 dnl = Enable help viewer (off by default)
6562 dnl ========================================================
6563 if test -n "$MOZ_HELP_VIEWER"; then
6564      dnl Do this if defined in confvars.sh
6565      AC_DEFINE(MOZ_HELP_VIEWER)
6568 dnl ========================================================
6569 dnl = Enable safe browsing (anti-phishing)
6570 dnl ========================================================
6571 MOZ_ARG_ENABLE_BOOL(safe-browsing,
6572 [  --enable-safe-browsing  Enable safe browsing (anti-phishing) implementation],
6573     MOZ_SAFE_BROWSING=1,
6574     MOZ_SAFE_BROWSING= )
6575 if test -n "$MOZ_SAFE_BROWSING"; then
6576     AC_DEFINE(MOZ_SAFE_BROWSING)
6578 AC_SUBST(MOZ_SAFE_BROWSING)
6580 dnl ========================================================
6581 dnl = Enable url-classifier
6582 dnl ========================================================
6583 dnl Implicitly enabled by default if building with safe-browsing
6584 if test -n "$MOZ_SAFE_BROWSING"; then
6585     MOZ_URL_CLASSIFIER=1
6587 MOZ_ARG_ENABLE_BOOL(url-classifier,
6588 [  --enable-url-classifier Enable url classifier module],
6589     MOZ_URL_CLASSIFIER=1,
6590     MOZ_URL_CLASSIFIER= )
6591 if test -n "$MOZ_URL_CLASSIFIER"; then
6592     AC_DEFINE(MOZ_URL_CLASSIFIER)
6594 AC_SUBST(MOZ_URL_CLASSIFIER)
6596 dnl ========================================================
6597 dnl = Disable zipwriter
6598 dnl ========================================================
6599 MOZ_ARG_DISABLE_BOOL(zipwriter,
6600 [  --disable-zipwriter     Disable zipwriter component],
6601     MOZ_ZIPWRITER=,
6602     MOZ_ZIPWRITER=1 )
6603 AC_SUBST(MOZ_ZIPWRITER)
6605 dnl ========================================================
6606 dnl GL provider
6607 dnl ========================================================
6608 MOZ_GL_PROVIDER=
6609 MOZ_ARG_WITH_STRING(gl-provider,
6610 [  --with-gl-provider=ID
6611                           Set GL provider backend type],
6612 [ val=`echo $withval`
6613     MOZ_GL_PROVIDER="$val"])
6615 if test -n "$MOZ_GL_PROVIDER"; then
6616 MOZ_GL_DEFAULT_PROVIDER=$MOZ_GL_PROVIDER
6617 AC_SUBST(MOZ_GL_PROVIDER)
6618 AC_DEFINE_UNQUOTED(MOZ_GL_PROVIDER, GLContextProvider$MOZ_GL_PROVIDER)
6620 AC_SUBST(MOZ_GL_DEFAULT_PROVIDER)
6621 AC_DEFINE_UNQUOTED(GL_PROVIDER_$MOZ_GL_DEFAULT_PROVIDER)
6623 dnl ========================================================
6624 dnl = faststripe theme
6625 dnl ========================================================
6626 MOZ_ARG_ENABLE_BOOL(faststripe,
6627 [  --enable-faststripe     Use faststripe theme],
6628     MOZ_THEME_FASTSTRIPE=1,
6629     MOZ_THEME_FASTSTRIPE= )
6630 AC_SUBST(MOZ_THEME_FASTSTRIPE)
6632 dnl ========================================================
6633 dnl =
6634 dnl = Feature options that require extra sources to be pulled
6635 dnl =
6636 dnl ========================================================
6637 dnl MOZ_ARG_HEADER(Features that require extra sources)
6639 dnl ========================================================
6640 dnl =
6641 dnl = Runtime debugging and Optimization Options
6642 dnl =
6643 dnl ========================================================
6644 MOZ_ARG_HEADER(Runtime debugging and Optimizations)
6646 dnl ========================================================
6647 dnl enable mobile optimizations
6648 dnl ========================================================
6649 MOZ_ARG_ENABLE_BOOL(mobile-optimize,
6650 [  --enable-mobile-optimize
6651                           Enable mobile optimizations],
6652     MOZ_GFX_OPTIMIZE_MOBILE=1)
6654 AC_SUBST(MOZ_GFX_OPTIMIZE_MOBILE)
6656 if test "$MOZ_GFX_OPTIMIZE_MOBILE"; then
6657     AC_DEFINE(MOZ_GFX_OPTIMIZE_MOBILE)
6660 dnl ========================================================
6661 dnl = Enable code optimization. ON by default.
6662 dnl ========================================================
6663 if test -z "$MOZ_OPTIMIZE_FLAGS"; then
6664         MOZ_OPTIMIZE_FLAGS="-O"
6667 MOZ_ARG_ENABLE_STRING(optimize,
6668 [  --disable-optimize      Disable compiler optimization
6669   --enable-optimize=[OPT] Specify compiler optimization flags [OPT=-O]],
6670 [ if test "$enableval" != "no"; then
6671     MOZ_OPTIMIZE=1
6672     if test -n "$enableval" -a "$enableval" != "yes"; then
6673         MOZ_OPTIMIZE_FLAGS=`echo "$enableval" | sed -e 's|\\\ | |g'`
6674         MOZ_OPTIMIZE=2
6675     fi
6676 else
6677     MOZ_OPTIMIZE=
6678 fi ], MOZ_OPTIMIZE=1)
6680 MOZ_SET_FRAMEPTR_FLAGS
6682 if test "$COMPILE_ENVIRONMENT"; then
6683 if test -n "$MOZ_OPTIMIZE"; then
6684     AC_MSG_CHECKING([for valid optimization flags])
6685     _SAVE_CFLAGS=$CFLAGS
6686     CFLAGS="$CFLAGS $MOZ_OPTIMIZE_FLAGS"
6687     AC_TRY_COMPILE([#include <stdio.h>],
6688         [printf("Hello World\n");],
6689         _results=yes,
6690         _results=no)
6691     AC_MSG_RESULT([$_results])
6692     if test "$_results" = "no"; then
6693         AC_MSG_ERROR([These compiler flags are invalid: $MOZ_OPTIMIZE_FLAGS])
6694     fi
6695     CFLAGS=$_SAVE_CFLAGS
6697 fi # COMPILE_ENVIRONMENT
6699 AC_SUBST(MOZ_OPTIMIZE)
6700 AC_SUBST(MOZ_FRAMEPTR_FLAGS)
6701 AC_SUBST(MOZ_OPTIMIZE_FLAGS)
6702 AC_SUBST(MOZ_OPTIMIZE_LDFLAGS)
6703 AC_SUBST(MOZ_ALLOW_HEAP_EXECUTE_FLAGS)
6704 AC_SUBST(MOZ_OPTIMIZE_SIZE_TWEAK)
6705 AC_SUBST(MOZ_PGO_OPTIMIZE_FLAGS)
6707 dnl ========================================================
6708 dnl = Enable any treating of compile warnings as errors
6709 dnl ========================================================
6710 MOZ_ARG_ENABLE_BOOL(warnings-as-errors,
6711 [  --enable-warnings-as-errors
6712                           Enable treating of warnings as errors],
6713     MOZ_ENABLE_WARNINGS_AS_ERRORS=1,
6714     MOZ_ENABLE_WARNINGS_AS_ERRORS=)
6715 if test -z "$MOZ_ENABLE_WARNINGS_AS_ERRORS"; then
6716    WARNINGS_AS_ERRORS=''
6717 elif test "$GNU_CC"; then
6718     # Prevent the following GCC warnings from being treated as errors:
6719     # -Wuninitialized - too many false positives
6720     # -Wmaybe-uninitialized - too many false positives
6721     # -Wdeprecated-declarations - we don't want our builds held hostage when a
6722     #   platform-specific API becomes deprecated.
6723     MOZ_C_SUPPORTS_WARNING(-W, no-error=uninitialized, ac_c_has_noerror_uninitialized)
6724     MOZ_CXX_SUPPORTS_WARNING(-W, no-error=uninitialized, ac_cxx_has_noerror_uninitialized)
6725     MOZ_C_SUPPORTS_WARNING(-W, no-error=maybe-uninitialized, ac_c_has_noerror_maybe_uninitialized)
6726     MOZ_CXX_SUPPORTS_WARNING(-W, no-error=maybe-uninitialized, ac_cxx_has_noerror_maybe_uninitialized)
6727     MOZ_C_SUPPORTS_WARNING(-W, no-error=deprecated-declarations, ac_c_has_noerror_deprecated_declarations)
6728     MOZ_CXX_SUPPORTS_WARNING(-W, no-error=deprecated-declarations, ac_cxx_has_noerror_deprecated_declarations)
6731 dnl ========================================================
6732 dnl = Disable runtime logging checks
6733 dnl ========================================================
6734 MOZ_ARG_DISABLE_BOOL(logging,
6735 [  --disable-logging       Disable logging facilities],
6736     NS_DISABLE_LOGGING=1,
6737     NS_DISABLE_LOGGING= )
6738 if test "$NS_DISABLE_LOGGING"; then
6739     AC_DEFINE(NS_DISABLE_LOGGING)
6740 else
6741     AC_DEFINE(MOZ_LOGGING)
6744 dnl ========================================================
6745 dnl = This will enable logging of addref, release, ctor, dtor.
6746 dnl ========================================================
6747 _ENABLE_LOGREFCNT=42
6748 MOZ_ARG_ENABLE_BOOL(logrefcnt,
6749 [  --enable-logrefcnt      Enable logging of refcounts (default=debug) ],
6750     _ENABLE_LOGREFCNT=1,
6751     _ENABLE_LOGREFCNT= )
6752 if test "$_ENABLE_LOGREFCNT" = "1"; then
6753     AC_DEFINE(FORCE_BUILD_REFCNT_LOGGING)
6754 elif test -z "$_ENABLE_LOGREFCNT"; then
6755     AC_DEFINE(NO_BUILD_REFCNT_LOGGING)
6758 dnl ========================================================
6759 dnl moz_dump_painting
6760 dnl ========================================================
6761 MOZ_ARG_ENABLE_BOOL(dump-painting,
6762 [  --enable-dump-painting          Enable paint debugging.],
6763     MOZ_DUMP_PAINTING=1,
6764     MOZ_DUMP_PAINTING= )
6765 if test -n "$MOZ_DUMP_PAINTING"; then
6766     AC_DEFINE(MOZ_DUMP_PAINTING)
6767     AC_DEFINE(MOZ_LAYERS_HAVE_LOG)
6769 if test -n "$MOZ_DEBUG"; then
6770     AC_DEFINE(MOZ_DUMP_PAINTING)
6773 dnl ========================================================
6774 dnl = Enable trace malloc
6775 dnl ========================================================
6776 NS_TRACE_MALLOC=${MOZ_TRACE_MALLOC}
6777 MOZ_ARG_ENABLE_BOOL(trace-malloc,
6778 [  --enable-trace-malloc   Enable malloc tracing; also disables DMD and jemalloc],
6779     NS_TRACE_MALLOC=1,
6780     NS_TRACE_MALLOC= )
6781 if test "$NS_TRACE_MALLOC"; then
6782   # Please, Mr. Linker Man, don't take away our symbol names
6783   MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS=
6784   USE_ELF_DYNSTR_GC=
6785   AC_DEFINE(NS_TRACE_MALLOC)
6787 AC_SUBST(NS_TRACE_MALLOC)
6789 dnl ========================================================
6790 dnl = Enable DMD
6791 dnl ========================================================
6793 MOZ_ARG_ENABLE_BOOL(dmd,
6794 [  --enable-dmd            Enable DMD; also enables jemalloc and replace-malloc],
6795     MOZ_DMD=1,
6796     MOZ_DMD= )
6798 dnl The two options are conflicting. Fails the configure to alert the user.
6799 if test "$NS_TRACE_MALLOC" -a "$MOZ_DMD"; then
6800     AC_MSG_ERROR([--enable-trace-malloc and --enable-dmd are conflicting options])
6803 if test "$MOZ_DMD"; then
6804     USE_ELF_DYNSTR_GC=
6805     AC_DEFINE(MOZ_DMD)
6807     if test "${CPU_ARCH}" = "arm"; then
6808         CFLAGS="$CFLAGS -funwind-tables"
6809         CXXFLAGS="$CXXFLAGS -funwind-tables"
6810     fi
6812     MOZ_MEMORY=1                        # DMD enables jemalloc
6813     MOZ_REPLACE_MALLOC=1                # DMD enables replace-malloc
6815 AC_SUBST(MOZ_DMD)
6817 dnl ========================================================
6818 dnl = Enable jemalloc
6819 dnl ========================================================
6820 MOZ_ARG_ENABLE_BOOL(jemalloc,
6821 [  --enable-jemalloc       Replace memory allocator with jemalloc],
6822     MOZ_MEMORY=1,
6823     MOZ_MEMORY=)
6825 if test "$NS_TRACE_MALLOC"; then
6826     MOZ_MEMORY=
6829 if test "${OS_TARGET}" = "Android"; then
6830   dnl On Android, we use WRAP_LDFLAGS to link everything to mozglue
6831   :
6832 elif test "${OS_TARGET}" = "WINNT" -o "${OS_TARGET}" = "Darwin" -o "${OS_TARGET}" = "OS2"; then
6833   dnl On Windows, OSX and OS2, we want to link all our binaries against mozglue
6834   if test -z "$GNU_CC"; then
6835     MOZ_GLUE_LDFLAGS='$(call EXPAND_LIBNAME_PATH,mozglue,$(LIBXUL_DIST)/lib)'
6836   else
6837     MOZ_GLUE_LDFLAGS='-L$(LIBXUL_DIST)/lib $(call EXPAND_LIBNAME,mozglue)'
6838   fi
6839 else
6840   dnl On other Unix systems, we only want to link executables against mozglue
6841   MOZ_GLUE_PROGRAM_LDFLAGS='$(MKSHLIB_FORCE_ALL) $(call EXPAND_LIBNAME_PATH,mozglue,$(LIBXUL_DIST)/lib)'
6842   dnl On other Unix systems, where mozglue is a static library, jemalloc is
6843   dnl separated for the SDK, so we need to add it here.
6844   if test "$MOZ_MEMORY" = 1 -o \( "$LIBXUL_SDK" -a -f "$LIBXUL_SDK/lib/${LIB_PREFIX}memory.${LIB_SUFFIX}" \); then
6845     MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS "'$(call EXPAND_LIBNAME_PATH,memory,$(LIBXUL_DIST)/lib)'
6846   fi
6847   MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS "'$(MKSHLIB_UNFORCE_ALL)'
6848   if test -n "$GNU_CC"; then
6849     dnl And we need mozglue symbols to be exported.
6850     MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS -rdynamic"
6851   fi
6852   if test "$MOZ_LINKER" = 1; then
6853     MOZ_GLUE_PROGRAM_LDFLAGS="$MOZ_GLUE_PROGRAM_LDFLAGS $MOZ_ZLIB_LIBS"
6854   fi
6857 dnl ========================================================
6858 dnl = Enable dynamic replacement of malloc implementation
6859 dnl ========================================================
6860 MOZ_ARG_ENABLE_BOOL(replace-malloc,
6861 [  --enable-replace-malloc   Enable ability to dynamically replace the malloc implementation],
6862     MOZ_REPLACE_MALLOC=1,
6863     MOZ_REPLACE_MALLOC= )
6865 dnl The two options are conflicting. Fails the configure to alert the user.
6866 if test "$NS_TRACE_MALLOC" -a "$MOZ_REPLACE_MALLOC"; then
6867     AC_MSG_ERROR([--enable-trace-malloc and --enable-replace-malloc are conflicting options])
6870 if test -n "$MOZ_REPLACE_MALLOC" -a -z "$MOZ_MEMORY"; then
6871     dnl We don't want to enable jemalloc unconditionally because it may be a
6872     dnl deliberate choice not to enable it (bug 702250, for instance)
6873     AC_MSG_ERROR([--enable-replace-malloc requires --enable-jemalloc])
6874 elif test -n "$MOZ_REPLACE_MALLOC"; then
6875     MOZ_NATIVE_JEMALLOC=
6877     dnl Replace-malloc Mac linkage quirks
6878     if test -n "$MACOSX_DEPLOYMENT_TARGET"; then
6879         AC_CACHE_CHECK([how to do weak dynamic linking],
6880             ac_cv_weak_dynamic_linking,
6881             [echo 'extern void foo() __attribute__((weak_import));int bar() { if (foo) foo(); return 0; }' > conftest.c
6882              if AC_TRY_COMMAND([${CC-cc} -o conftest${DLL_SUFFIX} $CFLAGS -dynamiclib $LDFLAGS -Wl,-U,_foo conftest.c $LIBS 1>&5]) &&
6883                 test -s conftest${DLL_SUFFIX}; then
6884                  dnl There are several ways the linker can put link edit rules in a binary:
6885                  dnl - classic info only (for OSX < 10.6)
6886                  dnl - dyld info only
6887                  dnl - both
6888                  if otool -l conftest${DLL_SUFFIX} 2> /dev/null | grep "LC_DYLD_INFO_ONLY" > /dev/null; then
6889                      _CLASSIC_INFO=
6890                  else
6891                      _CLASSIC_INFO=1
6892                  fi
6893                  if otool -l conftest${DLL_SUFFIX} 2> /dev/null | grep "LC_DYLD_INFO" > /dev/null; then
6894                      _DYLD_INFO=1
6895                  else
6896                      _DYLD_INFO=
6897                  fi
6898                  dnl With classic info, we need to build with -flat_namespace.
6899                  dnl With dyld info, Xcode 4.5 does the right thing without additional flags,
6900                  dnl but Xcode < 4.5 requires a dummy library and -flat_namespace because it
6901                  dnl forgets to set the weak flag in the dyld info.
6902                  dnl See http://glandium.org/blog/?p=2764 for more details.
6903                  dnl
6904                  dnl Values for ac_cv_weak_dynamic_linking, and subsequently
6905                  dnl MOZ_REPLACE_MALLOC_LINKAGE are thus:
6906                  dnl - "flat namespace" when -flat_namespace alone is needed
6907                  dnl - "dummy library" when a dummy library and -flat_namespace are needed
6908                  dnl - "compiler support" when nothing is needed
6909                  if test -n "$_DYLD_INFO" && dyldinfo -bind conftest${DLL_SUFFIX} 2> /dev/null | grep "_foo (weak import)" > /dev/null; then
6910                      if test -n "$_CLASSIC_INFO"; then
6911                          ac_cv_weak_dynamic_linking="flat namespace"
6912                      else
6913                          ac_cv_weak_dynamic_linking="compiler support"
6914                      fi
6915                  else
6916                      if test -n "$_DYLD_INFO"; then
6917                          ac_cv_weak_dynamic_linking="dummy library"
6918                      else
6919                          ac_cv_weak_dynamic_linking="flat namespace"
6920                      fi
6921                  fi
6922              else
6923                  AC_ERROR([couldn't compile a simple C file])
6924              fi
6925              rm -rf conftest*])
6926         MOZ_REPLACE_MALLOC_LINKAGE="$ac_cv_weak_dynamic_linking"
6927     fi
6929 AC_SUBST(MOZ_REPLACE_MALLOC)
6930 AC_SUBST(MOZ_REPLACE_MALLOC_LINKAGE)
6932 dnl ========================================================
6933 dnl = Jemalloc build setup
6934 dnl ========================================================
6935 if test -z "$MOZ_MEMORY"; then
6936   if test -n "$MOZ_JEMALLOC3" -a -z "$MOZ_REPLACE_MALLOC"; then
6937     MOZ_NATIVE_JEMALLOC=1
6938     AC_CHECK_FUNCS(mallctl nallocm,,
6939       [MOZ_NATIVE_JEMALLOC=
6940        break])
6941     if test -n "$MOZ_NATIVE_JEMALLOC"; then
6942       MOZ_MEMORY=1
6943       AC_DEFINE(MOZ_MEMORY)
6944       AC_DEFINE(MOZ_JEMALLOC3)
6945       AC_DEFINE(MOZ_NATIVE_JEMALLOC)
6946     fi
6947   fi
6948   case "${target}" in
6949     *-mingw*)
6950       if test -z "$WIN32_REDIST_DIR" -a -z "$MOZ_DEBUG"; then
6951         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.])
6952       fi
6953       ;;
6954   esac
6955 else
6956   AC_DEFINE(MOZ_MEMORY)
6957   if test -n "$MOZ_JEMALLOC3"; then
6958     AC_DEFINE(MOZ_JEMALLOC3)
6959   fi
6960   if test "x$MOZ_DEBUG" = "x1"; then
6961     AC_DEFINE(MOZ_MEMORY_DEBUG)
6962   fi
6963   dnl The generic feature tests that determine how to compute ncpus are long and
6964   dnl complicated.  Therefore, simply define special cpp variables for the
6965   dnl platforms we have special knowledge of.
6966   case "${target}" in
6967   *-darwin*)
6968     AC_DEFINE(MOZ_MEMORY_DARWIN)
6969     ;;
6970   *-*freebsd*)
6971     AC_DEFINE(MOZ_MEMORY_BSD)
6972     ;;
6973   *-android*|*-linuxandroid*)
6974     AC_DEFINE(MOZ_MEMORY_LINUX)
6975     AC_DEFINE(MOZ_MEMORY_ANDROID)
6976     if test -z "$gonkdir"; then
6977       _WRAP_MALLOC=1
6978     else
6979       AC_DEFINE(MOZ_MEMORY_GONK)
6980     fi
6981     MOZ_GLUE_LDFLAGS=
6982     ;;
6983   *-*linux*)
6984     AC_DEFINE(MOZ_MEMORY_LINUX)
6985     ;;
6986   *-netbsd*)
6987     AC_DEFINE(MOZ_MEMORY_BSD)
6988     ;;
6989   *-solaris*)
6990     AC_DEFINE(MOZ_MEMORY_SOLARIS)
6991     ;;
6992   *-mingw*)
6993     AC_DEFINE(MOZ_MEMORY_WINDOWS)
6994     if test -z "$MOZ_DEBUG"; then
6995       WIN32_CRT_LIBS="msvcrt.lib msvcprt.lib"
6996     else
6997       WIN32_CRT_LIBS="msvcrtd.lib msvcprtd.lib"
6998     fi
6999     dnl Look for a broken crtdll.obj
7000     WIN32_CRTDLL_FULLPATH=`lib -nologo -list $WIN32_CRT_LIBS | grep crtdll\\.obj`
7001     lib -NOLOGO -OUT:crtdll.obj $WIN32_CRT_LIBS -EXTRACT:$WIN32_CRTDLL_FULLPATH
7002     if grep -q '__imp__\{0,1\}free' crtdll.obj; then
7003       MOZ_GLUE_LDFLAGS='-LIBPATH:$(DIST)/lib -NODEFAULTLIB:msvcrt -NODEFAULTLIB:msvcrtd -NODEFAULTLIB:msvcprt -NODEFAULTLIB:msvcprtd -DEFAULTLIB:mozcrt'
7004       dnl Also pass this to NSPR/NSS
7005       DLLFLAGS="$DLLFLAGS $MOZ_GLUE_LDFLAGS"
7006     else
7007       DLLFLAGS="$DLLFLAGS -LIBPATH:\$(DIST)/lib -DEFAULTLIB:mozglue"
7008     fi
7009     rm crtdll.obj
7011     export DLLFLAGS
7012     ;;
7013   *)
7014     AC_MSG_ERROR([--enable-jemalloc not supported on ${target}])
7015     ;;
7016   esac
7017 fi # MOZ_MEMORY
7018 AC_SUBST(MOZ_MEMORY)
7019 AC_SUBST(MOZ_JEMALLOC3)
7020 AC_SUBST(MOZ_NATIVE_JEMALLOC)
7021 AC_SUBST(MOZ_GLUE_LDFLAGS)
7022 AC_SUBST(MOZ_GLUE_PROGRAM_LDFLAGS)
7023 AC_SUBST(WIN32_CRT_LIBS)
7024 dnl Need to set this for make because NSS doesn't have configure
7025 AC_SUBST(DLLFLAGS)
7027 dnl We need to wrap dlopen and related functions on Android because we use
7028 dnl our own linker.
7029 if test "$OS_TARGET" = Android; then
7030     WRAP_LDFLAGS="${WRAP_LDFLAGS} -L$_objdir/dist/lib -lmozglue"
7031     WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=getaddrinfo,--wrap=freeaddrinfo,--wrap=gai_strerror"
7032     WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=PR_GetEnv,--wrap=PR_SetEnv"
7033     if test -z "$gonkdir"; then
7034         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=fork,--wrap=pthread_atfork,--wrap=raise"
7035         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"
7036     fi
7037     if test "$MOZ_WIDGET_TOOLKIT" = gonk -a -n "$MOZ_NUWA_PROCESS"; then
7038         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"
7039     fi
7042 dnl ========================================================
7043 dnl = Use malloc wrapper lib
7044 dnl ========================================================
7045 MOZ_ARG_ENABLE_BOOL(wrap-malloc,
7046 [  --enable-wrap-malloc    Wrap malloc calls (gnu linker only)],
7047     _WRAP_MALLOC=1,
7048     _WRAP_MALLOC= )
7050 if test -n "$_WRAP_MALLOC"; then
7051     if test -n "$GNU_CC"; then
7052         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=malloc,--wrap=calloc,--wrap=valloc,--wrap=free,--wrap=realloc,--wrap=memalign"
7053         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=__builtin_new,--wrap=__builtin_vec_new,--wrap=__builtin_delete,--wrap=__builtin_vec_delete"
7054         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=strdup,--wrap=strndup"
7055         WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=posix_memalign,--wrap=malloc_usable_size"
7056         dnl Wrap operator new and operator delete on Android.
7057         if test "$OS_TARGET" = "Android"; then
7058             WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=_Znwj,--wrap=_Znaj,--wrap=_ZdlPv,--wrap=_ZdaPv"
7059             dnl Wrap the nothrow variants too.
7060             WRAP_LDFLAGS="${WRAP_LDFLAGS} -Wl,--wrap=_ZnwjRKSt9nothrow_t,--wrap=_ZnajRKSt9nothrow_t,--wrap=_ZdlPvRKSt9nothrow_t,--wrap=_ZdaPvRKSt9nothrow_t"
7061         fi
7062     else
7063         AC_MSG_ERROR([--enable-wrap-malloc is not supported for non-GNU toolchains])
7064     fi
7067 dnl ========================================================
7068 dnl = Location of malloc wrapper lib
7069 dnl ========================================================
7070 MOZ_ARG_WITH_STRING(wrap-malloc,
7071 [  --with-wrap-malloc=DIR  Location of malloc wrapper library],
7072     WRAP_LDFLAGS="${WRAP_LDFLAGS} $withval")
7074 dnl ========================================================
7075 dnl = Use JS Call tracing
7076 dnl ========================================================
7077 MOZ_ARG_ENABLE_BOOL(trace-jscalls,
7078 [  --enable-trace-jscalls  Enable JS call enter/exit callback (default=no)],
7079     MOZ_TRACE_JSCALLS=1,
7080     MOZ_TRACE_JSCALLS= )
7081 if test -n "$MOZ_TRACE_JSCALLS"; then
7082     AC_DEFINE(MOZ_TRACE_JSCALLS)
7085 dnl ========================================================
7086 dnl = Use incremental GC
7087 dnl ========================================================
7088 JSGC_INCREMENTAL=1
7089 MOZ_ARG_DISABLE_BOOL(gcincremental,
7090 [  --disable-gcincremental Disable incremental GC],
7091     JSGC_INCREMENTAL= )
7092 if test -n "$JSGC_INCREMENTAL"; then
7093     AC_DEFINE(JSGC_INCREMENTAL)
7096 dnl ========================================================
7097 dnl Zealous JavaScript GC
7098 dnl ========================================================
7099 MOZ_ARG_ENABLE_BOOL(gczeal,
7100 [  --enable-gczeal         Enable zealous JavaScript GCing],
7101     JS_GC_ZEAL=1,
7102     JS_GC_ZEAL= )
7103 if test -n "$JS_GC_ZEAL" -o -n "$MOZ_DEBUG"; then
7104     AC_DEFINE(JS_GC_ZEAL)
7107 dnl ========================================================
7108 dnl JS opt-mode assertions and minidump instrumentation
7109 dnl ========================================================
7110 MOZ_ARG_ENABLE_BOOL(js-diagnostics,
7111 [  --enable-js-diagnostics
7112                           Enable JS diagnostic assertions and breakpad data],
7113     JS_CRASH_DIAGNOSTICS=1,
7114     JS_CRASH_DIAGNOSTICS= )
7115 if test -n "$JS_CRASH_DIAGNOSTICS"; then
7116     AC_DEFINE(JS_CRASH_DIAGNOSTICS)
7119 MOZ_CHECK_CCACHE
7120 MOZ_CHECK_COMPILER_WRAPPER
7122 dnl ========================================================
7123 dnl = Enable static checking using gcc-dehydra
7124 dnl ========================================================
7126 MOZ_ARG_WITH_STRING(static-checking,
7127 [  --with-static-checking=path/to/gcc_dehydra.so
7128                           Enable static checking of code using GCC-dehydra],
7129     DEHYDRA_PATH=$withval,
7130     DEHYDRA_PATH= )
7132 if test -n "$DEHYDRA_PATH"; then
7133     if test ! -f "$DEHYDRA_PATH"; then
7134         AC_MSG_ERROR([The dehydra plugin is not at the specified path.])
7135     fi
7136     AC_DEFINE(NS_STATIC_CHECKING)
7138 AC_SUBST(DEHYDRA_PATH)
7140 dnl ========================================================
7141 dnl = Enable using the clang plugin to build
7142 dnl ========================================================
7144 MOZ_ARG_ENABLE_BOOL(clang-plugin,
7145 [  --enable-clang-plugin   Enable building with the mozilla clang plugin ],
7146    ENABLE_CLANG_PLUGIN=1,
7147    ENABLE_CLANG_PLUGIN= )
7148 if test -n "$ENABLE_CLANG_PLUGIN"; then
7149     if test -z "$CLANG_CC"; then
7150         AC_MSG_ERROR([Can't use clang plugin without clang.])
7151     fi
7152     AC_DEFINE(MOZ_CLANG_PLUGIN)
7155 AC_SUBST(ENABLE_CLANG_PLUGIN)
7157 dnl ========================================================
7158 dnl = Enable stripping of libs & executables
7159 dnl ========================================================
7160 MOZ_ARG_ENABLE_BOOL(strip,
7161 [  --enable-strip          Enable stripping of libs & executables ],
7162     ENABLE_STRIP=1,
7163     ENABLE_STRIP= )
7165 dnl ========================================================
7166 dnl = Enable stripping of libs & executables when packaging
7167 dnl ========================================================
7168 MOZ_ARG_ENABLE_BOOL(install-strip,
7169 [  --enable-install-strip  Enable stripping of libs & executables when packaging ],
7170     PKG_SKIP_STRIP= ,
7171     PKG_SKIP_STRIP=1)
7173 dnl ========================================================
7174 dnl = --enable-elf-dynstr-gc
7175 dnl ========================================================
7176 MOZ_ARG_ENABLE_BOOL(elf-dynstr-gc,
7177 [  --enable-elf-dynstr-gc  Enable elf dynstr garbage collector (opt builds only)],
7178     USE_ELF_DYNSTR_GC=1,
7179     USE_ELF_DYNSTR_GC= )
7181 dnl ========================================================
7182 dnl = --disable-elf-hack
7183 dnl ========================================================
7185 USE_ELF_HACK=1
7186 MOZ_ARG_DISABLE_BOOL(elf-hack,
7187 [  --disable-elf-hack      Disable elf hacks],
7188     [USE_ELF_HACK=],
7189     [USE_ELF_HACK=F # Force enable elf-hack])
7191 # Disable elf hack for profiling because the built in profiler
7192 # doesn't read the segments properly with elf hack. This is
7193 # temporary and should be fixed soon in the profiler.
7194 if test "$MOZ_PROFILING" = 1; then
7195   if test "$USE_ELF_HACK" = F; then
7196     AC_ERROR([--enable-elf-hack is not compatible with --enable-profiling])
7197   fi
7198   USE_ELF_HACK=
7201 # Only enable elfhack where supported
7202 if test "$USE_ELF_HACK" = 1; then
7203     case "${HOST_OS_ARCH},${OS_ARCH}" in
7204     Linux,Linux)
7205         case "${CPU_ARCH}" in
7206         arm | x86 | x86_64)
7207             USE_ELF_HACK=1
7208             ;;
7209         *)
7210             USE_ELF_HACK=
7211             ;;
7212         esac
7213         ;;
7214     *)
7215         USE_ELF_HACK=
7216         ;;
7217     esac
7220 if test -n "$COMPILE_ENVIRONMENT" -a -n "$USE_ELF_HACK"; then
7221     dnl PT_GNU_RELRO segment makes the dynamic linker set a read-only flag on
7222     dnl memory addresses it maps to. The result is that by the time elfhack
7223     dnl kicks in, it is not possible to apply relocations because of that,
7224     dnl thus elfhack effectively skips relocations inside the PT_GNU_RELRO
7225     dnl segment. It makes elfhack mostly useless, so considering the problems
7226     dnl we have we PT_GNU_RELRO (e.g. bug 664366), and until elfhack can deal
7227     dnl with PT_GNU_RELRO segments, it's just simpler to disable elfhack when
7228     dnl the linker creates PT_GNU_RELRO segments. However, when we do want
7229     dnl elfhack enabled, disable PT_GNU_RELRO instead.
7230     AC_CACHE_CHECK([whether linker creates PT_GNU_RELRO segments],
7231         LINK_WITH_PT_GNU_RELRO,
7232         [echo "int main() {return 0;}" > conftest.${ac_ext}
7233          if AC_TRY_COMMAND(${CC-cc} -o conftest${ac_exeext} $LDFLAGS conftest.${ac_ext} $LIBS 1>&2) &&
7234             test -s conftest${ac_exeext}; then
7235             if ${TOOLCHAIN_PREFIX}readelf -l conftest${ac_exeext} | grep GNU_RELRO > /dev/null; then
7236                 LINK_WITH_PT_GNU_RELRO=yes
7237             else
7238                 LINK_WITH_PT_GNU_RELRO=no
7239             fi
7240          else
7241              dnl We really don't expect to get here, but just in case
7242              AC_ERROR([couldn't compile a simple C file])
7243          fi
7244          rm -rf conftest*])
7245     if test "$LINK_WITH_PT_GNU_RELRO" = yes; then
7246         if test "$USE_ELF_HACK" = F; then
7247             AC_MSG_CHECKING([for -z norelro option to ld])
7248             _SAVE_LDFLAGS=$LDFLAGS
7249             LDFLAGS="$LDFLAGS -Wl,-z,norelro"
7250             AC_TRY_LINK(,,AC_MSG_RESULT([yes])
7251                         [NSPR_LDFLAGS="$NSPR_LDFLAGS -Wl,-z,norelro"],
7252                         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.]))
7253             USE_ELF_HACK=1
7254         else
7255             AC_MSG_WARN([Disabling elfhack])
7256             USE_ELF_HACK=
7257         fi
7258     fi
7261 dnl ========================================================
7262 dnl = libstdc++ compatibility hacks
7263 dnl ========================================================
7265 STDCXX_COMPAT=
7266 MOZ_ARG_ENABLE_BOOL(stdcxx-compat,
7267 [  --enable-stdcxx-compat  Enable compatibility with older libstdc++],
7268     STDCXX_COMPAT=1)
7270 if test -n "$STDCXX_COMPAT"; then
7271    eval $(CXX="$CXX" HOST_CXX="$HOST_CXX" $PYTHON $_topsrcdir/build/autoconf/libstdcxx.py)
7272    AC_SUBST(MOZ_LIBSTDCXX_TARGET_VERSION)
7273    AC_SUBST(MOZ_LIBSTDCXX_HOST_VERSION)
7276 dnl ========================================================
7277 dnl =
7278 dnl = Profiling and Instrumenting
7279 dnl =
7280 dnl ========================================================
7281 MOZ_ARG_HEADER(Profiling and Instrumenting)
7283 dnl ========================================================
7284 dnl = Enable runtime visual profiling logger
7285 dnl ========================================================
7286 MOZ_ARG_ENABLE_BOOL(visual-event-tracer,
7287 [  --enable-visual-event-tracer   Enable visual event tracer instrumentation],
7288     MOZ_VISUAL_EVENT_TRACER=1,
7289     MOZ_VISUAL_EVENT_TRACER=)
7290 if test -n "$MOZ_VISUAL_EVENT_TRACER"; then
7291     AC_DEFINE(MOZ_VISUAL_EVENT_TRACER)
7294 dnl ========================================================
7295 dnl Turn on reflow counting
7296 dnl ========================================================
7297 MOZ_ARG_ENABLE_BOOL(reflow-perf,
7298 [  --enable-reflow-perf    Enable reflow performance tracing],
7299     MOZ_REFLOW_PERF=1,
7300     MOZ_REFLOW_PERF= )
7301 if test -n "$MOZ_REFLOW_PERF"; then
7302     AC_DEFINE(MOZ_REFLOW_PERF)
7305 dnl ========================================================
7306 dnl = Enable Radio Interface for B2G (Gonk usually)
7307 dnl ========================================================
7308 MOZ_ARG_ENABLE_BOOL(b2g-ril,
7309 [  --enable-b2g-ril      Set compile flags necessary for testing B2G Radio Interface Layer via network sockets ],
7310     MOZ_B2G_RIL=1,
7311     MOZ_B2G_RIL=,
7312     MOZ_B2G_RIL=$_PLATFORM_HAVE_RIL )
7313 if test -n "$MOZ_B2G_RIL"; then
7314     if test -n "$_PLATFORM_HAVE_RIL"; then
7315         AC_DEFINE(MOZ_B2G_RIL)
7316     else
7317         AC_MSG_ERROR([b2g-ril cannot be enabled because target platform doesn't support it.])
7318     fi
7320 AC_SUBST(MOZ_B2G_RIL)
7322 dnl ========================================================
7323 dnl = Enable Radio FM for B2G (Gonk usually)
7324 dnl ========================================================
7325 if test -n "$MOZ_B2G_FM"; then
7326     AC_DEFINE(MOZ_B2G_FM)
7328 AC_SUBST(MOZ_B2G_FM)
7330 dnl ========================================================
7331 dnl = Enable Bluetooth Interface for B2G (Gonk usually)
7332 dnl ========================================================
7333 MOZ_ARG_ENABLE_BOOL(b2g-bt,
7334 [  --enable-b2g-bt      Set compile flags necessary for compiling Bluetooth API for B2G ],
7335     MOZ_B2G_BT=1,
7336     MOZ_B2G_BT= )
7337 if test -n "$MOZ_B2G_BT"; then
7338     AC_DEFINE(MOZ_B2G_BT)
7340 AC_SUBST(MOZ_B2G_BT)
7341 AC_SUBST(MOZ_B2G_BT_BLUEZ)
7342 AC_SUBST(MOZ_B2G_BT_BLUEDROID)
7344 dnl ========================================================
7345 dnl = Enable NFC Interface for B2G (Gonk usually)
7346 dnl ========================================================
7347 MOZ_ARG_ENABLE_BOOL(nfc,
7348 [  --enable-nfc         Set compile flags necessary for compiling NFC API ],
7349     MOZ_NFC=1,
7350     MOZ_NFC= )
7351 if test -n "$MOZ_NFC"; then
7352    AC_DEFINE(MOZ_NFC)
7354 AC_SUBST(MOZ_NFC)
7356 dnl ========================================================
7357 dnl = Enable Pico Speech Synthesis (Gonk usually)
7358 dnl ========================================================
7359 MOZ_ARG_ENABLE_BOOL(synth-pico,
7360 [  --enable-synth-pico  Set compile flags necessary for compiling Pico Web Speech API ],
7361     MOZ_SYNTH_PICO=1,
7362     MOZ_SYNTH_PICO= )
7363 if test -n "$MOZ_SYNTH_PICO"; then
7364     AC_DEFINE(MOZ_SYNTH_PICO)
7366 AC_SUBST(MOZ_SYNTH_PICO)
7368 dnl ========================================================
7369 dnl = Enable Support for Time Manager API
7370 dnl ========================================================
7371 if test -n "$MOZ_TIME_MANAGER"; then
7372     AC_DEFINE(MOZ_TIME_MANAGER)
7374 AC_SUBST(MOZ_TIME_MANAGER)
7376 dnl ========================================================
7377 dnl = Enable Camera Interface for B2G (Gonk usually)
7378 dnl ========================================================
7379 MOZ_ARG_ENABLE_BOOL(b2g-camera,
7380 [  --enable-b2g-camera      Set compile flags necessary for compiling camera API for B2G ],
7381     MOZ_B2G_CAMERA=1,
7382     MOZ_B2G_CAMERA= )
7383 if test -n "$MOZ_B2G_CAMERA"; then
7384    AC_DEFINE(MOZ_B2G_CAMERA)
7386 AC_SUBST(MOZ_B2G_CAMERA)
7388 dnl ========================================================
7389 dnl = Enable Support B2G-specific changes to the NSS
7390 dnl = certificate trust database.
7391 dnl ========================================================
7392 if test -n "$MOZ_B2G_CERTDATA"; then
7393     AC_DEFINE(MOZ_B2G_CERTDATA)
7395 AC_SUBST(MOZ_B2G_CERTDATA)
7397 dnl ========================================================
7398 dnl = Enable Support for Payment API
7399 dnl ========================================================
7400 if test -n "$MOZ_PAY"; then
7401     AC_DEFINE(MOZ_PAY)
7403 AC_SUBST(MOZ_PAY)
7405 dnl ========================================================
7406 dnl = Enable Browser Support for Activities
7407 dnl ========================================================
7408 if test -n "$MOZ_ACTIVITIES"; then
7409     AC_DEFINE(MOZ_ACTIVITIES)
7411 AC_SUBST(MOZ_ACTIVITIES)
7413 dnl ========================================================
7414 dnl = Enable Support for AudioChannelManager API
7415 dnl ========================================================
7416 if test -n "$MOZ_AUDIO_CHANNEL_MANAGER"; then
7417     AC_DEFINE(MOZ_AUDIO_CHANNEL_MANAGER)
7419 AC_SUBST(MOZ_AUDIO_CHANNEL_MANAGER)
7421 dnl ========================================================
7422 dnl = Support for demangling undefined symbols
7423 dnl ========================================================
7424 if test -z "$SKIP_LIBRARY_CHECKS"; then
7425     AC_LANG_SAVE
7426     AC_LANG_CPLUSPLUS
7427     AC_CHECK_FUNCS(__cxa_demangle, HAVE_DEMANGLE=1, HAVE_DEMANGLE=)
7428     AC_LANG_RESTORE
7431 # Demangle only for debug or trace-malloc or DMD builds
7432 MOZ_DEMANGLE_SYMBOLS=
7433 if test "$HAVE_DEMANGLE" && test "$MOZ_DEBUG" -o "$NS_TRACE_MALLOC" -o "$MOZ_DMD"; then
7434     MOZ_DEMANGLE_SYMBOLS=1
7435     AC_DEFINE(MOZ_DEMANGLE_SYMBOLS)
7437 AC_SUBST(MOZ_DEMANGLE_SYMBOLS)
7439 dnl ========================================================
7440 dnl = Support for gcc stack unwinding (from gcc 3.3)
7441 dnl ========================================================
7442 if test -z "$SKIP_LIBRARY_CHECKS"; then
7443     MOZ_CHECK_HEADER(unwind.h, AC_CHECK_FUNCS(_Unwind_Backtrace))
7446 dnl ========================================================
7447 dnl JIT observers
7448 dnl ========================================================
7450 MOZ_ARG_WITH_STRING(jitreport-granularity,
7451 [  --jitreport-granularity=N
7452                            Default granularity at which to report JIT code
7453                            to external tools
7454                              0 - no info
7455                              1 - code ranges for whole functions only
7456                              2 - per-line information
7457                              3 - per-op information],
7458   JITREPORT_GRANULARITY=$withval,
7459   JITREPORT_GRANULARITY=3)
7461 AC_DEFINE_UNQUOTED(JS_DEFAULT_JITREPORT_GRANULARITY, $JITREPORT_GRANULARITY)
7463 dnl ========================================================
7464 dnl =
7465 dnl = Misc. Options
7466 dnl =
7467 dnl ========================================================
7468 MOZ_ARG_HEADER(Misc. Options)
7470 dnl ========================================================
7471 dnl update xterm title
7472 dnl ========================================================
7473 MOZ_ARG_ENABLE_BOOL(xterm-updates,
7474 [  --enable-xterm-updates  Update XTERM titles with current command.],
7475     MOZ_UPDATE_XTERM=1,
7476     MOZ_UPDATE_XTERM= )
7478 dnl =========================================================
7479 dnl = Chrome format
7480 dnl =========================================================
7481 MOZ_ARG_ENABLE_STRING([chrome-format],
7482 [  --enable-chrome-format=jar|flat|omni
7483                           Select FORMAT of chrome files during packaging],
7484     MOZ_CHROME_FILE_FORMAT=`echo $enableval | tr A-Z a-z`)
7486 if test -z "$MOZ_CHROME_FILE_FORMAT"; then
7487     MOZ_CHROME_FILE_FORMAT=jar
7490 if test "$MOZ_CHROME_FILE_FORMAT" = "symlink"; then
7491     AC_MSG_ERROR([--enable-chrome-format=symlink has been deprecated. It is now used by default in $DIST/bin on platforms that support it])
7494 if test "$MOZ_CHROME_FILE_FORMAT" != "jar" &&
7495     test "$MOZ_CHROME_FILE_FORMAT" != "flat" &&
7496     test "$MOZ_CHROME_FILE_FORMAT" != "omni"; then
7497     AC_MSG_ERROR([--enable-chrome-format must be set to either jar, flat, or omni])
7500 dnl =========================================================
7501 dnl Omnijar packaging (bug 552121)
7502 dnl =========================================================
7503 dnl Omnijar packaging is compatible with flat packaging.
7504 dnl In unpackaged builds, omnijar looks for files as if
7505 dnl things were flat packaged. After packaging, all files
7506 dnl are loaded from a single jar. MOZ_CHROME_FILE_FORMAT
7507 dnl is set to flat since putting files into jars is only
7508 dnl done during packaging with omnijar.
7509 if test "$MOZ_CHROME_FILE_FORMAT" = "omni"; then
7510     MOZ_OMNIJAR=1
7511     AC_DEFINE(MOZ_OMNIJAR)
7513 MOZ_PACKAGER_FORMAT="$MOZ_CHROME_FILE_FORMAT"
7514 if test "$OS_ARCH" = "WINNT" -o "$OS_ARCH" = "OS2" -o "$MOZ_WIDGET_TOOLKIT" = "android"; then
7515     MOZ_CHROME_FILE_FORMAT=flat
7516 else
7517     MOZ_CHROME_FILE_FORMAT=symlink
7520 if test "$MOZ_WIDGET_TOOLKIT" = "android"; then
7521     dnl Fennec's static resources live in the assets/ folder of the
7522     dnl APK.  Adding a path to the name here works because we only
7523     dnl have one omnijar file in the final package (which is not the
7524     dnl case on desktop), and necessitates some contortions during
7525     dnl packaging so that the resources in the omnijar are considered
7526     dnl as rooted at / and not as rooted at assets/ (which again is
7527     dnl not the case on desktop: there are omnijars rooted at webrtc/,
7528     dnl etc). packager.mk handles changing the rooting of the single
7529     dnl omnijar.
7530     OMNIJAR_NAME=assets/omni.ja
7531 else
7532     OMNIJAR_NAME=omni.ja
7535 AC_SUBST(OMNIJAR_NAME)
7536 AC_SUBST(MOZ_OMNIJAR)
7537 AC_SUBST(MOZ_PACKAGER_FORMAT)
7539 dnl ========================================================
7540 dnl = Define default location for MOZILLA_FIVE_HOME
7541 dnl ========================================================
7542 MOZ_ARG_WITH_STRING(default-mozilla-five-home,
7543 [  --with-default-mozilla-five-home
7544                           Set the default value for MOZILLA_FIVE_HOME],
7545 [ val=`echo $withval`
7546   AC_DEFINE_UNQUOTED(MOZ_DEFAULT_MOZILLA_FIVE_HOME,"$val") ])
7548 dnl ========================================================
7549 dnl = Location of the mozilla user directory (default is ~/.mozilla).],
7550 dnl ========================================================
7551 MOZ_ARG_WITH_STRING(user-appdir,
7552 [  --with-user-appdir=DIR  Set user-specific appdir (default=.mozilla)],
7553 [ val=`echo $withval`
7554 if echo "$val" | grep "\/" >/dev/null; then
7555     AC_MSG_ERROR("Homedir must be single relative path.")
7556 else
7557     MOZ_USER_DIR="$val"
7558 fi])
7560 AC_DEFINE_UNQUOTED(MOZ_USER_DIR,"$MOZ_USER_DIR")
7562 dnl ========================================================
7563 dnl = Doxygen configuration
7564 dnl ========================================================
7565 dnl Use commas to specify multiple dirs to this arg
7566 MOZ_DOC_INPUT_DIRS='./dist/include ./dist/idl'
7567 MOZ_ARG_WITH_STRING(doc-input-dirs,
7568 [  --with-doc-input-dirs=DIRS
7569                           Header/idl dirs to create docs from],
7570 [ MOZ_DOC_INPUT_DIRS=`echo "$withval" | sed "s/,/ /g"` ] )
7571 AC_SUBST(MOZ_DOC_INPUT_DIRS)
7573 dnl Use commas to specify multiple dirs to this arg
7574 MOZ_DOC_INCLUDE_DIRS='./dist/include ./dist/include/nspr'
7575 MOZ_ARG_WITH_STRING(doc-include-dirs,
7576 [  --with-doc-include-dirs=DIRS
7577                           Include dirs to preprocess doc headers],
7578 [ MOZ_DOC_INCLUDE_DIRS=`echo "$withval" | sed "s/,/ /g"` ] )
7579 AC_SUBST(MOZ_DOC_INCLUDE_DIRS)
7581 MOZ_DOC_OUTPUT_DIR='./dist/docs'
7582 MOZ_ARG_WITH_STRING(doc-output-dir,
7583 [  --with-doc-output-dir=DIR
7584                           Dir to generate docs into],
7585 [ MOZ_DOC_OUTPUT_DIR=$withval ] )
7586 AC_SUBST(MOZ_DOC_OUTPUT_DIR)
7588 if test -z "$SKIP_COMPILER_CHECKS"; then
7589 dnl ========================================================
7590 dnl =
7591 dnl = Compiler Options
7592 dnl =
7593 dnl ========================================================
7594 MOZ_ARG_HEADER(Compiler Options)
7596 dnl ========================================================
7597 dnl Check for gcc -pipe support
7598 dnl ========================================================
7599 AC_MSG_CHECKING([for -pipe support])
7600 if test -n "$GNU_CC" -a -n "$GNU_CXX"; then
7601     dnl Any gcc that supports firefox supports -pipe.
7602     CFLAGS="$CFLAGS -pipe"
7603     CXXFLAGS="$CXXFLAGS -pipe"
7604     AC_MSG_RESULT([yes])
7605 else
7606     AC_MSG_RESULT([no])
7609 dnl ========================================================
7610 dnl Profile guided optimization (gcc checks)
7611 dnl ========================================================
7612 dnl Test for profiling options
7613 dnl Under gcc 3.4+, use -fprofile-generate/-fprofile-use
7615 _SAVE_CFLAGS="$CFLAGS"
7616 CFLAGS="$CFLAGS -fprofile-generate -fprofile-correction"
7618 AC_MSG_CHECKING([whether C compiler supports -fprofile-generate])
7619 AC_TRY_COMPILE([], [return 0;],
7620                [ PROFILE_GEN_CFLAGS="-fprofile-generate"
7621                  result="yes" ], result="no")
7622 AC_MSG_RESULT([$result])
7624 if test $result = "yes"; then
7625   PROFILE_GEN_LDFLAGS="-fprofile-generate"
7626   PROFILE_USE_CFLAGS="-fprofile-use -fprofile-correction -Wcoverage-mismatch"
7627   PROFILE_USE_LDFLAGS="-fprofile-use"
7630 CFLAGS="$_SAVE_CFLAGS"
7632 if test -n "$INTEL_CC"; then
7633   PROFILE_GEN_CFLAGS="-prof-gen -prof-dir ."
7634   PROFILE_GEN_LDFLAGS=
7635   PROFILE_USE_CFLAGS="-prof-use -prof-dir ."
7636   PROFILE_USE_LDFLAGS=
7639 dnl Sun Studio on Solaris
7640 if test "$SOLARIS_SUNPRO_CC"; then
7641   PROFILE_GEN_CFLAGS="-xprofile=collect:$_objdir/$enable_application"
7642   PROFILE_GEN_LDFLAGS="-xprofile=collect:$_objdir/$enable_application"
7643   PROFILE_USE_CFLAGS="-xprofile=use:$_objdir/$enable_application"
7644   PROFILE_USE_LDFLAGS="-xprofile=use:$_objdir/$enable_application"
7647 AC_SUBST(PROFILE_GEN_CFLAGS)
7648 AC_SUBST(PROFILE_GEN_LDFLAGS)
7649 AC_SUBST(PROFILE_USE_CFLAGS)
7650 AC_SUBST(PROFILE_USE_LDFLAGS)
7652 AC_LANG_CPLUSPLUS
7654 dnl ========================================================
7655 dnl Autoconf test for gcc 2.7.2.x (and maybe others?) so that we don't
7656 dnl provide non-const forms of the operator== for comparing nsCOMPtrs to
7657 dnl raw pointers in nsCOMPtr.h.  (VC++ has the same bug.)
7658 dnl ========================================================
7659 _SAVE_CXXFLAGS=$CXXFLAGS
7660 CXXFLAGS="$CXXFLAGS ${_WARNINGS_CXXFLAGS}"
7661 AC_CACHE_CHECK(for correct overload resolution with const and templates,
7662     ac_nscap_nonconst_opeq_bug,
7663     [AC_TRY_COMPILE([
7664                       template <class T>
7665                       class Pointer
7666                         {
7667                         public:
7668                           T* myPtr;
7669                         };
7671                       template <class T, class U>
7672                       int operator==(const Pointer<T>& rhs, U* lhs)
7673                         {
7674                           return rhs.myPtr == lhs;
7675                         }
7677                       template <class T, class U>
7678                       int operator==(const Pointer<T>& rhs, const U* lhs)
7679                         {
7680                           return rhs.myPtr == lhs;
7681                         }
7682                     ],
7683                     [
7684                       Pointer<int> foo;
7685                       const int* bar;
7686                       return foo == bar;
7687                     ],
7688                     ac_nscap_nonconst_opeq_bug="no",
7689                     ac_nscap_nonconst_opeq_bug="yes")])
7690 CXXFLAGS="$_SAVE_CXXFLAGS"
7692 if test "$ac_nscap_nonconst_opeq_bug" = "yes" ; then
7693     AC_DEFINE(NSCAP_DONT_PROVIDE_NONCONST_OPEQ)
7695 fi # ! SKIP_COMPILER_CHECKS
7697 AC_DEFINE(CPP_THROW_NEW, [throw()])
7698 AC_LANG_C
7700 if test "$COMPILE_ENVIRONMENT"; then
7701 MOZ_EXPAND_LIBS
7702 fi # COMPILE_ENVIRONMENT
7704 dnl ========================================================
7705 dnl =
7706 dnl = Build depencency options
7707 dnl =
7708 dnl ========================================================
7709 MOZ_ARG_HEADER(Build dependencies)
7711 if test "$GNU_CC" -a "$GNU_CXX"; then
7712   _DEPEND_CFLAGS='-MD -MP -MF $(MDDEPDIR)/$(@F).pp'
7713 dnl Sun Studio on Solaris use -xM instead of -MD, see config/rules.mk
7714 elif test "$SOLARIS_SUNPRO_CC"; then
7715   _DEPEND_CFLAGS=
7716 else
7717   dnl Don't override this for MSVC
7718   if test -z "$_WIN32_MSVC"; then
7719     _USE_CPP_INCLUDE_FLAG=
7720     _DEFINES_CFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
7721     _DEFINES_CXXFLAGS='$(ACDEFINES) -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT'
7722   else
7723     echo '#include <stdio.h>' > dummy-hello.c
7724     changequote(,)
7725     CL_INCLUDES_PREFIX=`${CC} -showIncludes -c -Fonul dummy-hello.c 2>&1 | sed -ne 's/^\([^:]*:[^:]*:\).*stdio.h$/\1/p'`
7726     changequote([,])
7727     if test -z "$CL_INCLUDES_PREFIX"; then
7728         AC_MSG_ERROR([Cannot find cl -showIncludes prefix.])
7729     fi
7730     AC_SUBST(CL_INCLUDES_PREFIX)
7731     rm -f dummy-hello.c
7732   fi
7735 dnl ========================================================
7736 dnl =
7737 dnl = Static Build Options
7738 dnl =
7739 dnl ========================================================
7740 MOZ_ARG_HEADER(Static build options)
7742 # split JS out by default to avoid VS2005 PGO crash (bug 591836).
7743 if test "$OS_ARCH" = "WINNT"; then
7744   ENABLE_SHARED_JS=1
7747 MOZ_ARG_ENABLE_BOOL(shared-js,
7748 [  --enable-shared-js
7749                           Create a shared JavaScript library.],
7750     ENABLE_SHARED_JS=1,
7751     ENABLE_SHARED_JS=)
7753 if test -n "$ENABLE_SHARED_JS"; then
7754   JS_SHARED_LIBRARY=1
7755   MOZ_JS_LIBS="$MOZ_JS_SHARED_LIBS"
7756 else
7757   MOZ_JS_LIBS="$MOZ_JS_STATIC_LIBS"
7758   AC_DEFINE(MOZ_STATIC_JS)
7760 AC_SUBST(JS_SHARED_LIBRARY)
7762 AC_SUBST(LIBXUL_LIBS)
7763 XPCOM_LIBS="$LIBXUL_LIBS"
7765 dnl ========================================================
7766 dnl =
7767 dnl = Standalone module options
7768 dnl =
7769 dnl ========================================================
7770 MOZ_ARG_HEADER(Standalone module options (Not for building Mozilla))
7772 dnl Check for GLib.
7773 dnl ========================================================
7775 if test -z "$SKIP_PATH_CHECKS"; then
7776 if test -z "${GLIB_CFLAGS}" -o -z "${GLIB_LIBS}" ; then
7777     if test "$MOZ_ENABLE_GTK2" -o "$USE_ELF_DYNSTR_GC" ; then
7778         PKG_CHECK_MODULES(GLIB, glib-2.0 >= 1.3.7 gobject-2.0)
7779     fi
7783 if test -z "${GLIB_GMODULE_LIBS}" \
7784    -a -n "${GLIB_CONFIG}"\
7785     -a "${GLIB_CONFIG}" != no\
7786 ; then
7787     GLIB_GMODULE_LIBS=`$GLIB_CONFIG gmodule --libs`
7790 AC_SUBST(GLIB_CFLAGS)
7791 AC_SUBST(GLIB_LIBS)
7792 AC_SUBST(GLIB_GMODULE_LIBS)
7794 dnl ========================================================
7795 dnl Graphics checks.
7796 dnl ========================================================
7798 if test "${OS_TARGET}" = "WINNT"; then
7799   if $PERL -e "exit($MOZ_WINSDK_MAXVER < 0x06020000)"; then
7800     MOZ_ENABLE_DIRECT2D1_1=1
7801     AC_SUBST(MOZ_ENABLE_DIRECT2D1_1)
7802   fi
7805 if test "${OS_TARGET}" = "WINNT" -o \
7806         "${OS_ARCH}" = "Darwin" -o \
7807         "${MOZ_WIDGET_TOOLKIT}" = "android" -o \
7808         "${MOZ_WIDGET_TOOLKIT}" = "gonk" -o \
7809         "${MOZ_WIDGET_TOOLKIT}" = "gtk2" -o \
7810         "${MOZ_WIDGET_TOOLKIT}" = "gtk3"; then
7811     case "${target_cpu}" in
7812     i*86*|x86_64|arm)
7813         MOZ_ENABLE_SKIA=1
7814         ;;
7815     *)
7816         MOZ_ENABLE_SKIA=
7817         ;;
7818     esac
7819 else
7820 MOZ_ENABLE_SKIA=
7823 MOZ_ARG_ENABLE_BOOL(skia,
7824 [  --enable-skia   Enable use of Skia],
7825 MOZ_ENABLE_SKIA=1,
7826 MOZ_ENABLE_SKIA=)
7828 if test "$USE_FC_FREETYPE"; then
7829     if test "$COMPILE_ENVIRONMENT"; then
7830         dnl ========================================================
7831         dnl = Check for freetype2 and its functionality
7832         dnl ========================================================
7833         PKG_CHECK_MODULES(FT2, freetype2 >= 6.1.0, _HAVE_FREETYPE2=1, _HAVE_FREETYPE2=)
7835         if test "$_HAVE_FREETYPE2"; then
7836             _SAVE_LIBS="$LIBS"
7837             _SAVE_CFLAGS="$CFLAGS"
7838             LIBS="$LIBS $FT2_LIBS"
7839             CFLAGS="$CFLAGS $FT2_CFLAGS"
7841             AC_CACHE_CHECK(for FT_Bitmap_Size.y_ppem,
7842                 ac_cv_member_FT_Bitmap_Size_y_ppem,
7843                 [AC_TRY_COMPILE([#include <ft2build.h>
7844                                  #include FT_FREETYPE_H],
7845                                 [FT_Bitmap_Size s;
7846                                  if (sizeof s.y_ppem) return 0;
7847                                  return 1],
7848                                 ac_cv_member_FT_Bitmap_Size_y_ppem=yes,
7849                                 ac_cv_member_FT_Bitmap_Size_y_ppem=no)])
7850             if test "$ac_cv_member_FT_Bitmap_Size_y_ppem" = yes; then
7851                 HAVE_FT_BITMAP_SIZE_Y_PPEM=1
7852             else
7853                 HAVE_FT_BITMAP_SIZE_Y_PPEM=0
7854             fi
7855             AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,
7856                                $HAVE_FT_BITMAP_SIZE_Y_PPEM,
7857                                [FT_Bitmap_Size structure includes y_ppem field])
7859             AC_CHECK_FUNCS(FT_GlyphSlot_Embolden FT_Load_Sfnt_Table FT_Select_Size)
7861             LIBS="$_SAVE_LIBS"
7862             CFLAGS="$_SAVE_CFLAGS"
7863         fi
7865         _SAVE_CPPFLAGS="$CPPFLAGS"
7866         CPPFLAGS="$CPPFLAGS $FT2_CFLAGS $XCFLAGS"
7867         MOZ_CHECK_HEADERS([fontconfig/fcfreetype.h], ,
7868             [AC_MSG_ERROR(Can't find header fontconfig/fcfreetype.h.)], [#include <fontconfig/fontconfig.h>])
7869         CPPFLAGS="$_SAVE_CPPFLAGS"
7870     else
7871         AC_DEFINE(HAVE_FONTCONFIG_FCFREETYPE_H)
7872     fi
7874     PKG_CHECK_MODULES(_FONTCONFIG, fontconfig,
7875     [
7876         if test "$MOZ_PANGO"; then
7877             MOZ_PANGO_CFLAGS="$MOZ_PANGO_CFLAGS $_FONTCONFIG_CFLAGS"
7878             MOZ_PANGO_LIBS="$MOZ_PANGO_LIBS $_FONTCONFIG_LIBS"
7879         else
7880             FT2_CFLAGS="$FT2_CFLAGS $_FONTCONFIG_CFLAGS"
7881             FT2_LIBS="$FT2_LIBS $_FONTCONFIG_LIBS"
7882         fi
7883     ])
7886 dnl ========================================================
7887 dnl Check for pixman and cairo
7888 dnl ========================================================
7890 MOZ_TREE_CAIRO=1
7891 MOZ_ARG_ENABLE_BOOL(system-cairo,
7892 [  --enable-system-cairo   Use system cairo (located with pkgconfig)],
7893 MOZ_TREE_CAIRO=,
7894 MOZ_TREE_CAIRO=1 )
7896 MOZ_TREE_PIXMAN=1
7897 MOZ_ARG_ENABLE_BOOL(system-pixman,
7898 [ --enable-system-pixman Use system pixman (located with pkgconfig)],
7899 MOZ_TREE_PIXMAN=,
7900 MOZ_TREE_PIXMAN=force,
7901 MOZ_TREE_PIXMAN=1 )
7903 # System cairo depends on system pixman
7904 if test "$MOZ_TREE_PIXMAN" = "force"; then
7905     if test -z "$MOZ_TREE_CAIRO"; then
7906         AC_MSG_ERROR([--disable-system-pixman is incompatible with --enable-system-cairo.])
7907     else
7908         MOZ_TREE_PIXMAN=1
7909     fi
7910 elif test -z "$MOZ_TREE_CAIRO"; then
7911     MOZ_TREE_PIXMAN=
7914 if test "$MOZ_TREE_PIXMAN"; then
7915     AC_DEFINE(MOZ_TREE_PIXMAN)
7916     MOZ_PIXMAN_CFLAGS=""
7917     MOZ_PIXMAN_LIBS='$(call EXPAND_LIBNAME_PATH,mozlibpixman,$(DEPTH)/gfx/cairo/libpixman/src)'
7918 else
7919     PKG_CHECK_MODULES(PIXMAN, pixman-1 >= 0.19.2)
7920     MOZ_PIXMAN_CFLAGS="$PIXMAN_CFLAGS"
7921     MOZ_PIXMAN_LIBS="$PIXMAN_LIBS"
7923 AC_SUBST(MOZ_PIXMAN_CFLAGS)
7924 AC_SUBST(MOZ_PIXMAN_LIBS)
7926 # Check for headers defining standard int types.
7927 if test -n "$COMPILE_ENVIRONMENT"; then
7928     MOZ_CHECK_HEADERS(stdint.h inttypes.h sys/int_types.h)
7931 if test "$MOZ_TREE_CAIRO"; then
7932     MOZ_CAIRO_CFLAGS='-I$(LIBXUL_DIST)/include/cairo'
7933     AC_DEFINE(MOZ_TREE_CAIRO)
7935     # For now we assume that we will have a uint64_t available through
7936     # one of the above headers or mozstdint.h.
7937     AC_DEFINE(HAVE_UINT64_T)
7939     # Define macros for cairo-features.h
7940     TEE_SURFACE_FEATURE="#define CAIRO_HAS_TEE_SURFACE 1"
7941     if test "$MOZ_X11"; then
7942         XLIB_SURFACE_FEATURE="#define CAIRO_HAS_XLIB_SURFACE 1"
7943         XLIB_XRENDER_SURFACE_FEATURE="#define CAIRO_HAS_XLIB_XRENDER_SURFACE 1"
7944         PS_SURFACE_FEATURE="#define CAIRO_HAS_PS_SURFACE 1"
7945         FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
7946         MOZ_ENABLE_CAIRO_FT=1
7947         CAIRO_FT_CFLAGS="$FT2_CFLAGS"
7948     fi
7949     case "$MOZ_WIDGET_TOOLKIT" in
7950       qt)
7951         QT_SURFACE_FEATURE="#define CAIRO_HAS_QT_SURFACE 1"
7952         ;;
7953       cocoa | uikit)
7954         QUARTZ_SURFACE_FEATURE="#define CAIRO_HAS_QUARTZ_SURFACE 1"
7955         QUARTZ_IMAGE_SURFACE_FEATURE="#define CAIRO_HAS_QUARTZ_IMAGE_SURFACE 1"
7956         QUARTZ_FONT_FEATURE="#define CAIRO_HAS_QUARTZ_FONT 1"
7957         ;;
7958       windows)
7959         WIN32_SURFACE_FEATURE="#define CAIRO_HAS_WIN32_SURFACE 1"
7960         WIN32_FONT_FEATURE="#define CAIRO_HAS_WIN32_FONT 1"
7961         if test "$MOZ_WINSDK_TARGETVER" -ge "06010000"; then
7962             WIN32_DWRITE_FONT_FEATURE="#define CAIRO_HAS_DWRITE_FONT 1"
7963             WIN32_D2D_SURFACE_FEATURE="#define CAIRO_HAS_D2D_SURFACE 1"
7964             MOZ_ENABLE_D2D_SURFACE=1
7965             MOZ_ENABLE_DWRITE_FONT=1
7966         else
7967             WIN32_DWRITE_FONT_FEATURE=
7968             WIN32_D2D_SURFACE_FEATURE=
7969         fi
7971         MOZ_CHECK_HEADER(d3d9.h, MOZ_ENABLE_D3D9_LAYER=1)
7973         dnl D3D10 Layers depend on D2D Surfaces.
7974         if test -n "$WIN32_D2D_SURFACE_FEATURE"; then
7975           MOZ_CHECK_HEADER(d3d10.h, MOZ_ENABLE_D3D10_LAYER=1)
7976         fi
7977         ;;
7978       os2)
7979         OS2_SURFACE_FEATURE="#define CAIRO_HAS_OS2_SURFACE 1"
7980         FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
7981         MOZ_ENABLE_CAIRO_FT=1
7982         CAIRO_FT_CFLAGS="-I${MZFTCFGFT2}/include"
7983         CAIRO_FT_OSLIBS="-L${MZFTCFGFT2}/lib -lmozft -lmzfntcfg"
7984         ;;
7985     esac
7986     if test "$USE_FC_FREETYPE"; then
7987         FC_FONT_FEATURE="#define CAIRO_HAS_FC_FONT 1"
7988     fi
7989     AC_SUBST(MOZ_ENABLE_CAIRO_FT)
7990     AC_SUBST(MOZ_ENABLE_DWRITE_FONT)
7991     AC_SUBST(MOZ_ENABLE_D2D_SURFACE)
7992     AC_SUBST(MOZ_ENABLE_D3D9_LAYER)
7993     AC_SUBST(MOZ_ENABLE_D3D10_LAYER)
7994     AC_SUBST(CAIRO_FT_CFLAGS)
7996     AC_SUBST(PS_SURFACE_FEATURE)
7997     AC_SUBST(PDF_SURFACE_FEATURE)
7998     AC_SUBST(SVG_SURFACE_FEATURE)
7999     AC_SUBST(XLIB_SURFACE_FEATURE)
8000     AC_SUBST(XLIB_XRENDER_SURFACE_FEATURE)
8001     AC_SUBST(QUARTZ_SURFACE_FEATURE)
8002     AC_SUBST(QUARTZ_IMAGE_SURFACE_FEATURE)
8003     AC_SUBST(WIN32_SURFACE_FEATURE)
8004     AC_SUBST(OS2_SURFACE_FEATURE)
8005     AC_SUBST(DIRECTFB_SURFACE_FEATURE)
8006     AC_SUBST(FT_FONT_FEATURE)
8007     AC_SUBST(FC_FONT_FEATURE)
8008     AC_SUBST(WIN32_FONT_FEATURE)
8009     AC_SUBST(WIN32_DWRITE_FONT_FEATURE)
8010     AC_SUBST(WIN32_D2D_SURFACE_FEATURE)
8011     AC_SUBST(QUARTZ_FONT_FEATURE)
8012     AC_SUBST(PNG_FUNCTIONS_FEATURE)
8013     AC_SUBST(QT_SURFACE_FEATURE)
8014     AC_SUBST(TEE_SURFACE_FEATURE)
8016     MOZ_CAIRO_OSLIBS='${CAIRO_FT_OSLIBS}'
8018     if test "$MOZ_X11"; then
8019         MOZ_CAIRO_OSLIBS="$MOZ_CAIRO_OSLIBS $XLDFLAGS -lXrender"
8020     fi
8022     CAIRO_FEATURES_H=gfx/cairo/cairo/src/cairo-features.h
8023 else
8024     PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_VERSION)
8025     MOZ_CAIRO_CFLAGS="$CAIRO_CFLAGS"
8026     MOZ_CAIRO_LIBS="$CAIRO_LIBS"
8027     PKG_CHECK_MODULES(CAIRO_TEE, cairo-tee >= $CAIRO_VERSION)
8028     if test "$MOZ_X11"; then
8029         PKG_CHECK_MODULES(CAIRO_XRENDER, cairo-xlib-xrender >= $CAIRO_VERSION)
8030         MOZ_CAIRO_LIBS="$MOZ_CAIRO_LIBS $XLDFLAGS $CAIRO_XRENDER_LIBS"
8031         MOZ_CAIRO_OSLIBS="$MOZ_CAIRO_LIBS"
8032         MOZ_CAIRO_CFLAGS="$MOZ_CAIRO_CFLAGS $CAIRO_XRENDER_CFLAGS"
8033     fi
8036 AC_SUBST(MOZ_TREE_CAIRO)
8037 AC_SUBST(MOZ_CAIRO_CFLAGS)
8038 AC_SUBST(MOZ_CAIRO_LIBS)
8039 AC_SUBST(MOZ_CAIRO_OSLIBS)
8040 AC_SUBST(MOZ_TREE_PIXMAN)
8042 dnl ========================================================
8043 dnl Skia 
8044 dnl ========================================================
8045 if test "$MOZ_ENABLE_SKIA"; then
8046   AC_DEFINE(MOZ_ENABLE_SKIA)
8047   AC_DEFINE(USE_SKIA)
8048   if test "${MOZ_WIDGET_TOOLKIT}" = "android" -o x"$MOZ_WIDGET_TOOLKIT" = x"gonk"; then
8049     AC_DEFINE(SK_BUILD_FOR_ANDROID_NDK)
8050   elif test "$OS_ARCH" = "WINNT"; then
8051     AC_DEFINE(SKIA_DLL)
8052     AC_DEFINE(GR_DLL)
8053   fi
8055   if test "${CPU_ARCH}" != "ppc" -a "${CPU_ARCH}" != "ppc64"; then
8056     MOZ_ENABLE_SKIA_GPU=1
8057     AC_DEFINE(USE_SKIA_GPU)
8058     AC_SUBST(MOZ_ENABLE_SKIA_GPU)
8059   fi
8061 AC_SUBST(MOZ_ENABLE_SKIA)
8063 dnl ========================================================
8064 dnl disable xul
8065 dnl ========================================================
8066 MOZ_ARG_DISABLE_BOOL(xul,
8067 [  --disable-xul           Disable XUL],
8068     MOZ_XUL= )
8069 if test "$MOZ_XUL"; then
8070   AC_DEFINE(MOZ_XUL)
8071 else
8072   dnl remove extensions that require XUL
8073   MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's/inspector//' -e 's/venkman//' -e 's/irc//' -e 's/tasks//'`
8076 AC_SUBST(MOZ_XUL)
8078 dnl ========================================================
8079 dnl disable profile locking
8080 dnl   do no use this in applications that can have more than
8081 dnl   one process accessing the profile directory.
8082 dnl ========================================================
8083 MOZ_ARG_DISABLE_BOOL(profilelocking,
8084 [  --disable-profilelocking
8085                           Disable profile locking],
8086     MOZ_PROFILELOCKING=,
8087     MOZ_PROFILELOCKING=1 )
8088 if test "$MOZ_PROFILELOCKING"; then
8089   AC_DEFINE(MOZ_PROFILELOCKING)
8092 dnl ========================================================
8093 dnl necko configuration options
8094 dnl ========================================================
8097 dnl option to disable various necko protocols
8099 MOZ_ARG_ENABLE_STRING(necko-protocols,
8100 [  --enable-necko-protocols[={http,ftp,default,all,none}]
8101                           Enable/disable specific protocol handlers],
8102 [ for option in `echo $enableval | sed 's/,/ /g'`; do
8103     if test "$option" = "yes" -o "$option" = "all"; then
8104         NECKO_PROTOCOLS="$NECKO_PROTOCOLS $NECKO_PROTOCOLS_DEFAULT"
8105     elif test "$option" = "no" -o "$option" = "none"; then
8106         NECKO_PROTOCOLS=""
8107     elif test "$option" = "default"; then
8108         NECKO_PROTOCOLS="$NECKO_PROTOCOLS $NECKO_PROTOCOLS_DEFAULT"
8109     elif test `echo "$option" | grep -c \^-` != 0; then
8110         option=`echo $option | sed 's/^-//'`
8111         NECKO_PROTOCOLS=`echo "$NECKO_PROTOCOLS" | sed "s/ ${option}//"`
8112     else
8113         NECKO_PROTOCOLS="$NECKO_PROTOCOLS $option"
8114     fi
8115 done],
8116     NECKO_PROTOCOLS="$NECKO_PROTOCOLS_DEFAULT")
8117 dnl Remove dupes
8118 NECKO_PROTOCOLS=`${PERL} ${srcdir}/build/unix/uniq.pl ${NECKO_PROTOCOLS}`
8119 AC_SUBST_SET(NECKO_PROTOCOLS)
8120 for p in $NECKO_PROTOCOLS; do
8121     AC_DEFINE_UNQUOTED(NECKO_PROTOCOL_$p)
8122     _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_PROTOCOL_$p"
8123 done
8126 dnl option to disable necko's wifi scanner
8129 case "$OS_TARGET" in
8130   Android)
8131     if test -n "$gonkdir"; then
8132       NECKO_WIFI=1
8133     fi
8134     ;;
8135   Darwin|SunOS|WINNT)
8136     NECKO_WIFI=1
8137     ;;
8138   Linux)
8139     NECKO_WIFI=1
8140     NECKO_WIFI_DBUS=1
8141     ;;
8142 esac
8144 MOZ_ARG_DISABLE_BOOL(necko-wifi,
8145 [  --disable-necko-wifi    Disable necko wifi scanner],
8146     NECKO_WIFI=,
8147     NECKO_WIFI=1)
8149 if test "$NECKO_WIFI"; then
8150   if test -z "$MOZ_ENABLE_DBUS" -a -n "$NECKO_WIFI_DBUS"; then
8151     AC_MSG_ERROR([Necko WiFi scanning needs DBus on your platform, remove --disable-dbus or use --disable-necko-wifi])
8152   fi
8153   AC_DEFINE(NECKO_WIFI)
8154   _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_WIFI"
8156 AC_SUBST(NECKO_WIFI)
8157 AC_SUBST(NECKO_WIFI_DBUS)
8160 dnl option to disable cookies
8162 MOZ_ARG_DISABLE_BOOL(cookies,
8163 [  --disable-cookies       Disable cookie support],
8164     NECKO_COOKIES=,
8165     NECKO_COOKIES=1)
8166 AC_SUBST(NECKO_COOKIES)
8167 if test "$NECKO_COOKIES"; then
8168     AC_DEFINE(NECKO_COOKIES)
8169     _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_COOKIES"
8173 dnl Build jsctypes on the platforms we can, unless it's explicitly disabled.
8175 MOZ_ARG_DISABLE_BOOL(ctypes,
8176 [  --disable-ctypes        Disable js-ctypes],
8177     BUILD_CTYPES=,
8178     BUILD_CTYPES=1)
8179 AC_SUBST(BUILD_CTYPES)
8180 if test "$BUILD_CTYPES"; then
8181     AC_DEFINE(BUILD_CTYPES)
8184 dnl Build Places if required
8185 if test "$MOZ_PLACES"; then
8186   AC_DEFINE(MOZ_PLACES)
8189 dnl Build SocialAPI if required
8190 if test "$MOZ_SOCIAL"; then
8191   AC_DEFINE(MOZ_SOCIAL)
8194 dnl Build Common JS modules provided by services.
8195 AC_SUBST(MOZ_SERVICES_COMMON)
8196 if test -n "$MOZ_SERVICES_COMMON"; then
8197   AC_DEFINE(MOZ_SERVICES_COMMON)
8200 dnl Build Services crypto component (used by Sync)
8201 AC_SUBST(MOZ_SERVICES_CRYPTO)
8202 if test -n "$MOZ_SERVICES_CRYPTO"; then
8203   AC_DEFINE(MOZ_SERVICES_CRYPTO)
8206 dnl Build Firefox Health Reporter Service
8207 AC_SUBST(MOZ_SERVICES_HEALTHREPORT)
8208 if test -n "$MOZ_SERVICES_HEALTHREPORT"; then
8209   AC_DEFINE(MOZ_SERVICES_HEALTHREPORT)
8212 dnl Build Services metrics component
8213 AC_SUBST(MOZ_SERVICES_METRICS)
8214 if test -n "$MOZ_SERVICES_METRICS"; then
8215   AC_DEFINE(MOZ_SERVICES_METRICS)
8218 dnl Build Notifications if required
8219 AC_SUBST(MOZ_SERVICES_NOTIFICATIONS)
8220 if test -n "$MOZ_SERVICES_NOTIFICATIONS"; then
8221   AC_DEFINE(MOZ_SERVICES_NOTIFICATIONS)
8224 dnl Build Sync Services if required
8225 AC_SUBST(MOZ_SERVICES_SYNC)
8226 if test -n "$MOZ_SERVICES_SYNC"; then
8227   AC_DEFINE(MOZ_SERVICES_SYNC)
8230 dnl Build Captive Portal Detector if required
8231 AC_SUBST(MOZ_CAPTIVEDETECT)
8232 if test -n "$MOZ_CAPTIVEDETECT"; then
8233   AC_DEFINE(MOZ_CAPTIVEDETECT)
8236 dnl ========================================================
8237 if test "$MOZ_DEBUG" -o "$NS_TRACE_MALLOC" -o "$MOZ_DMD"; then
8238     MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS=
8241 if test "$MOZ_APP_COMPONENT_INCLUDE"; then
8242   AC_DEFINE_UNQUOTED(MOZ_APP_COMPONENT_INCLUDE, "$MOZ_APP_COMPONENT_INCLUDE")
8245 if test "$MOZ_APP_COMPONENT_MODULES"; then
8246   AC_DEFINE_UNQUOTED(MOZ_APP_COMPONENT_MODULES, $MOZ_APP_COMPONENT_MODULES)
8249 dnl ========================================================
8250 dnl =
8251 dnl = Maintainer debug option (no --enable equivalent)
8252 dnl =
8253 dnl ========================================================
8255 AC_SUBST(AR)
8256 AC_SUBST(AR_FLAGS)
8257 AC_SUBST(AR_LIST)
8258 AC_SUBST(AR_EXTRACT)
8259 AC_SUBST(AR_DELETE)
8260 AC_SUBST(AS)
8261 AC_SUBST(ASFLAGS)
8262 AC_SUBST(AS_DASH_C_FLAG)
8263 AC_SUBST(LD)
8264 AC_SUBST(RC)
8265 AC_SUBST(RCFLAGS)
8266 AC_SUBST(MC)
8267 AC_SUBST(WINDRES)
8268 AC_SUBST(IMPLIB)
8269 AC_SUBST(FILTER)
8270 AC_SUBST(BIN_FLAGS)
8271 AC_SUBST(MOZ_WIDGET_TOOLKIT)
8272 AC_SUBST(MOZ_UPDATE_XTERM)
8273 AC_SUBST(MOZ_AUTH_EXTENSION)
8274 AC_SUBST(MOZ_PERMISSIONS)
8275 AC_SUBST(MOZ_PREF_EXTENSIONS)
8276 AC_SUBST(MOZ_JS_LIBS)
8277 AC_SUBST(MOZ_DEBUG)
8278 AC_SUBST(MOZ_DEBUG_SYMBOLS)
8279 AC_SUBST(MOZ_DEBUG_ENABLE_DEFS)
8280 AC_SUBST(MOZ_DEBUG_DISABLE_DEFS)
8281 AC_SUBST(MOZ_DEBUG_FLAGS)
8282 AC_SUBST(MOZ_DEBUG_LDFLAGS)
8283 AC_SUBST(WARNINGS_AS_ERRORS)
8284 AC_SUBST(MOZ_EXTENSIONS)
8285 AC_SUBST(MOZ_JSDEBUGGER)
8286 AC_SUBST(MOZ_ENABLE_PROFILER_SPS)
8287 AC_SUBST(MOZ_JPROF)
8288 AC_SUBST(MOZ_SHARK)
8289 AC_SUBST(MOZ_INSTRUMENTS)
8290 AC_SUBST(MOZ_CALLGRIND)
8291 AC_SUBST(MOZ_VTUNE)
8292 AC_SUBST(MOZ_PROFILING)
8293 AC_SUBST(LIBICONV)
8294 AC_SUBST(MOZ_PLACES)
8295 AC_SUBST(MOZ_SOCIAL)
8296 AC_SUBST(MOZ_TOOLKIT_SEARCH)
8297 AC_SUBST(MOZ_FEEDS)
8298 AC_SUBST(NS_PRINTING)
8299 AC_SUBST(MOZ_WEBGL)
8300 AC_SUBST(MOZ_HELP_VIEWER)
8301 AC_SUBST(TOOLCHAIN_PREFIX)
8303 AC_SUBST(JAVA)
8304 AC_SUBST(JAVAC)
8305 AC_SUBST(JAVAH)
8306 AC_SUBST(JAR)
8307 AC_SUBST(JARSIGNER)
8308 AC_SUBST(KEYTOOL)
8310 AC_SUBST(MOZ_PROFILELOCKING)
8312 AC_SUBST(ENABLE_TESTS)
8313 AC_SUBST(ENABLE_MARIONETTE)
8314 AC_SUBST(IBMBIDI)
8315 AC_SUBST(MOZ_UNIVERSALCHARDET)
8316 AC_SUBST(ACCESSIBILITY)
8317 AC_SUBST(MOZ_SPELLCHECK)
8318 AC_SUBST(MOZ_ANDROID_OMTC)
8319 AC_SUBST(MOZ_ANDROID_ANR_REPORTER)
8320 AC_SUBST(MOZ_CRASHREPORTER)
8321 AC_SUBST(MOZ_CRASHREPORTER_INJECTOR)
8322 AC_SUBST(MOZ_CRASHREPORTER_UPLOAD_FULL_SYMBOLS)
8323 AC_SUBST(MOZ_MAINTENANCE_SERVICE)
8324 AC_SUBST(MOZ_STUB_INSTALLER)
8325 AC_SUBST(MOZ_VERIFY_MAR_SIGNATURE)
8326 AC_SUBST(MOZ_ENABLE_SIGNMAR)
8327 AC_SUBST(MOZ_UPDATER)
8328 AC_SUBST(MOZ_ANGLE_RENDERER)
8329 AC_SUBST(MOZ_DIRECTX_SDK_PATH)
8330 AC_SUBST(MOZ_DIRECTX_SDK_CPU_SUFFIX)
8331 AC_SUBST(MOZ_D3DX9_VERSION)
8332 AC_SUBST(MOZ_D3DCOMPILER_CAB)
8333 AC_SUBST(MOZ_D3DCOMPILER_DLL)
8334 AC_SUBST(MOZ_METRO)
8336 AC_SUBST(MOZ_ANDROID_HISTORY)
8337 AC_SUBST(MOZ_WEBSMS_BACKEND)
8338 AC_SUBST(MOZ_ANDROID_BEAM)
8339 AC_SUBST(MOZ_DISABLE_GECKOVIEW)
8340 AC_SUBST(ENABLE_STRIP)
8341 AC_SUBST(PKG_SKIP_STRIP)
8342 AC_SUBST(STRIP_FLAGS)
8343 AC_SUBST(USE_ELF_DYNSTR_GC)
8344 AC_SUBST(USE_ELF_HACK)
8345 AC_SUBST(INCREMENTAL_LINKER)
8346 AC_SUBST(MOZ_COMPONENTS_VERSION_SCRIPT_LDFLAGS)
8347 AC_SUBST(MOZ_COMPONENT_NSPR_LIBS)
8349 AC_SUBST(MOZ_FIX_LINK_PATHS)
8350 AC_SUBST(XPCOM_LIBS)
8351 AC_SUBST(XPCOM_FROZEN_LDOPTS)
8352 AC_SUBST(XPCOM_GLUE_LDOPTS)
8353 AC_SUBST(XPCOM_STANDALONE_GLUE_LDOPTS)
8354 AC_SUBST(XPCOM_STATICRUNTIME_GLUE_LDOPTS)
8355 AC_SUBST(XPCOM_STANDALONE_STATICRUNTIME_GLUE_LDOPTS)
8357 AC_SUBST(USE_DEPENDENT_LIBS)
8359 AC_SUBST(MOZ_BUILD_ROOT)
8360 AC_SUBST(MOZ_OS2_TOOLS)
8362 AC_SUBST(MOZ_POST_DSO_LIB_COMMAND)
8363 AC_SUBST(MOZ_POST_PROGRAM_COMMAND)
8364 AC_SUBST(MOZ_LINKER_EXTRACT)
8366 AC_SUBST(MOZ_JSDOWNLOADS)
8367 if test -n "$MOZ_JSDOWNLOADS"; then
8368   AC_DEFINE(MOZ_JSDOWNLOADS)
8371 dnl ========================================================
8372 dnl = Mac bundle name prefix
8373 dnl ========================================================
8374 MOZ_ARG_WITH_STRING(macbundlename-prefix,
8375 [  --with-macbundlename-prefix=prefix
8376                           Prefix for MOZ_MACBUNDLE_NAME],
8377 [ MOZ_MACBUNDLE_NAME_PREFIX="$withval"])
8379 MOZ_MACBUNDLE_NAME=`echo $MOZ_APP_DISPLAYNAME | tr -d ' '`
8380 if test "$MOZ_MACBUNDLE_NAME_PREFIX"; then
8381   MOZ_MACBUNDLE_NAME="${MOZ_MACBUNDLE_NAME_PREFIX}${MOZ_MACBUNDLE_NAME}"
8384 if test "$MOZ_DEBUG"; then
8385   MOZ_MACBUNDLE_NAME=${MOZ_MACBUNDLE_NAME}Debug.app
8386 else
8387   MOZ_MACBUNDLE_NAME=${MOZ_MACBUNDLE_NAME}.app
8389 AC_SUBST(MOZ_MACBUNDLE_NAME)
8391 dnl Mac bundle identifier (based on MOZ_APP_DISPLAYNAME)
8392 MOZ_MACBUNDLE_ID=`echo $MOZ_APP_DISPLAYNAME | tr '[A-Z]' '[a-z]'`
8393 MOZ_MACBUNDLE_ID=${MOZ_DISTRIBUTION_ID}.${MOZ_MACBUNDLE_ID}
8394 if test "$MOZ_DEBUG"; then
8395   MOZ_MACBUNDLE_ID=${MOZ_MACBUNDLE_ID}debug
8398 AC_DEFINE_UNQUOTED(MOZ_MACBUNDLE_ID,$MOZ_MACBUNDLE_ID)
8399 AC_SUBST(MOZ_MACBUNDLE_ID)
8401 dnl ========================================================
8402 dnl = Child Process Name for IPC
8403 dnl ========================================================
8404 if test "$MOZ_WIDGET_TOOLKIT" != "android"; then
8405   MOZ_CHILD_PROCESS_NAME="plugin-container${BIN_SUFFIX}"
8406 else
8407   # We want to let Android unpack the file at install time, but it only does
8408   # so if the file is named libsomething.so. The lib/ path is also required
8409   # because the unpacked file will be under the lib/ subdirectory and will
8410   # need to be executed from that path.
8411   MOZ_CHILD_PROCESS_NAME="lib/libplugin-container.so"
8413 MOZ_CHILD_PROCESS_BUNDLE="plugin-container.app/Contents/MacOS/"
8415 AC_SUBST(MOZ_CHILD_PROCESS_NAME)
8416 AC_SUBST(MOZ_CHILD_PROCESS_BUNDLE)
8418 # The following variables are available to branding and application
8419 # configuration ($BRANDING/configure.sh and $APPLICATION/confvars.sh):
8420 # - MOZ_APP_VENDOR: Used for application.ini's "Vendor" field, which also
8421 # impacts profile location and user-visible fields.
8422 # - MOZ_APP_BASENAME: Typically stays consistent for multiple branded
8423 # versions of a given application (e.g. Aurora and Firefox both use
8424 # "Firefox"), but may vary for full rebrandings (e.g. Iceweasel). Used
8425 # for application.ini's "Name" field, which controls profile location in
8426 # the absence of a "Profile" field (see below), and various system
8427 # integration hooks (Unix remoting, Windows MessageWindow name, etc.)
8428 # - MOZ_APP_DISPLAYNAME: Used in user-visible fields (DLL properties,
8429 # Mac Bundle name, Updater, Installer), it is typically used for nightly
8430 # builds (e.g. Aurora for Firefox).
8431 # - MOZ_APP_VERSION: Defines the application version number.
8432 # - MOZ_APP_NAME: Used for e.g. the binary program file name. If not set,
8433 # defaults to a lowercase form of MOZ_APP_BASENAME.
8434 # - MOZ_APP_PROFILE: When set, used for application.ini's
8435 # "Profile" field, which controls profile location.
8436 # - MOZ_APP_ID: When set, used for application.ini's "ID" field, and
8437 # crash reporter server url.
8438 # - MOZ_PROFILE_MIGRATOR: When set, enables profile migrator.
8439 # - MOZ_EXTENSION_MANAGER: When set, enabled extension manager.
8441 if test -z "$MOZ_APP_NAME"; then
8442    MOZ_APP_NAME=`echo $MOZ_APP_BASENAME | tr A-Z a-z`
8445 # For extensions and langpacks, we require a max version that is compatible
8446 # across security releases. MOZ_APP_MAXVERSION is our method for doing that.
8447 # 10.0a1 and 10.0a2 aren't affected
8448 # 10.0 becomes 10.0.*
8449 # 10.0.1 becomes 10.0.*
8450 IS_ALPHA=`echo $MOZ_APP_VERSION | grep a`
8451 if test -z "$IS_ALPHA"; then
8452   changequote(,)
8453   MOZ_APP_MAXVERSION=`echo $MOZ_APP_VERSION | sed "s|\(^[0-9]*.[0-9]*\).*|\1|"`.*
8454   changequote([,])
8455 else
8456   MOZ_APP_MAXVERSION=$MOZ_APP_VERSION
8459 MOZ_B2G_VERSION=${MOZ_B2G_VERSION:-"1.0.0"}
8460 AC_DEFINE_UNQUOTED(MOZ_B2G_VERSION,"$MOZ_B2G_VERSION")
8461 AC_DEFINE_UNQUOTED(MOZ_B2G_OS_NAME,"$MOZ_B2G_OS_NAME")
8463 AC_SUBST(MOZ_APP_NAME)
8464 AC_SUBST(MOZ_APP_DISPLAYNAME)
8465 AC_SUBST(MOZ_APP_BASENAME)
8466 AC_SUBST(MOZ_APP_VENDOR)
8467 AC_SUBST(MOZ_APP_PROFILE)
8468 AC_SUBST(MOZ_APP_ID)
8469 AC_SUBST(MAR_CHANNEL_ID)
8470 AC_SUBST(ACCEPTED_MAR_CHANNEL_IDS)
8471 AC_SUBST(MOZ_PROFILE_MIGRATOR)
8472 AC_SUBST(MOZ_EXTENSION_MANAGER)
8473 AC_DEFINE_UNQUOTED(MOZ_APP_UA_NAME, "$MOZ_APP_UA_NAME")
8474 AC_SUBST(MOZ_APP_UA_NAME)
8475 AC_DEFINE_UNQUOTED(MOZ_APP_UA_VERSION, "$MOZ_APP_VERSION")
8476 AC_SUBST(MOZ_APP_VERSION)
8477 AC_SUBST(MOZ_APP_MAXVERSION)
8478 AC_DEFINE_UNQUOTED(FIREFOX_VERSION,$FIREFOX_VERSION)
8479 AC_SUBST(FIREFOX_VERSION)
8480 AC_SUBST(MOZ_UA_OS_AGNOSTIC)
8481 if test -n "$MOZ_UA_OS_AGNOSTIC"; then
8482   AC_DEFINE(MOZ_UA_OS_AGNOSTIC)
8485 AC_SUBST(MOZ_APP_STATIC_INI)
8487 AC_SUBST(MOZ_PKG_SPECIAL)
8489 AC_SUBST(MOZILLA_OFFICIAL)
8491 AC_DEFINE_UNQUOTED(MOZ_TELEMETRY_DISPLAY_REV, 2)
8492 AC_SUBST(MOZ_TELEMETRY_DISPLAY_REV)
8494 if test "$MOZ_TELEMETRY_REPORTING"; then
8495     AC_DEFINE(MOZ_TELEMETRY_REPORTING)
8497     # Enable Telemetry by default for nightly and aurora channels
8498     if test -z "$RELEASE_BUILD"; then
8499       AC_DEFINE(MOZ_TELEMETRY_ON_BY_DEFAULT)
8500     fi
8503 dnl If we have any service that uploads data (and requires data submission
8504 dnl policy alert), set MOZ_DATA_REPORTING.
8505 dnl We need SUBST for build system and DEFINE for xul preprocessor.
8506 if test -n "$MOZ_TELEMETRY_REPORTING" || test -n "$MOZ_SERVICES_HEALTHREPORT" || test -n "$MOZ_CRASHREPORTER"; then
8507   MOZ_DATA_REPORTING=1
8508   AC_DEFINE(MOZ_DATA_REPORTING)
8509   AC_SUBST(MOZ_DATA_REPORTING)
8512 dnl win32 options
8513 AC_SUBST(MOZ_BROWSE_INFO)
8514 AC_SUBST(MOZ_TOOLS_DIR)
8515 AC_SUBST(WIN32_REDIST_DIR)
8516 AC_SUBST(MAKENSISU)
8518 dnl Echo the CFLAGS to remove extra whitespace.
8519 CFLAGS=`echo \
8520         $_WARNINGS_CFLAGS \
8521         $CFLAGS`
8523 CXXFLAGS=`echo \
8524         $_WARNINGS_CXXFLAGS \
8525         $CXXFLAGS`
8527 COMPILE_CFLAGS=`echo \
8528     $_DEFINES_CFLAGS \
8529         $_DEPEND_CFLAGS \
8530     $COMPILE_CFLAGS`
8532 COMPILE_CXXFLAGS=`echo \
8533     $_DEFINES_CXXFLAGS \
8534         $_DEPEND_CFLAGS \
8535     $COMPILE_CXXFLAGS`
8537 HOST_CFLAGS=`echo \
8538     $HOST_CFLAGS \
8539     $_DEPEND_CFLAGS`
8541 HOST_CXXFLAGS=`echo \
8542     $HOST_CXXFLAGS \
8543     $_DEPEND_CFLAGS`
8545 AC_SUBST(SYSTEM_LIBXUL)
8546 AC_SUBST(MOZ_NATIVE_JPEG)
8547 AC_SUBST(MOZ_NATIVE_PNG)
8548 AC_SUBST(MOZ_NATIVE_BZ2)
8550 AC_SUBST(MOZ_JPEG_CFLAGS)
8551 AC_SUBST(MOZ_JPEG_LIBS)
8552 AC_SUBST(MOZ_BZ2_CFLAGS)
8553 AC_SUBST(MOZ_BZ2_LIBS)
8554 AC_SUBST(MOZ_PNG_CFLAGS)
8555 AC_SUBST(MOZ_PNG_LIBS)
8557 if test "$MOZ_WIDGET_TOOLKIT" = gonk -a -n "$MOZ_NUWA_PROCESS"; then
8558     export MOZ_NUWA_PROCESS
8559     AC_DEFINE(MOZ_NUWA_PROCESS)
8561 AC_SUBST(MOZ_NUWA_PROCESS)
8563 AC_SUBST(NSPR_CFLAGS)
8564 AC_SUBST(NSPR_LIBS)
8565 AC_SUBST(MOZ_NATIVE_NSPR)
8567 AC_SUBST(NSS_CFLAGS)
8568 AC_SUBST(NSS_LIBS)
8569 AC_SUBST(MOZ_NATIVE_NSS)
8570 AC_SUBST(NSS_DISABLE_DBM)
8572 OS_CFLAGS="$CFLAGS"
8573 OS_CXXFLAGS="$CXXFLAGS"
8574 OS_CPPFLAGS="$CPPFLAGS"
8575 OS_COMPILE_CFLAGS="$COMPILE_CFLAGS"
8576 OS_COMPILE_CXXFLAGS="$COMPILE_CXXFLAGS"
8577 OS_LDFLAGS="$LDFLAGS"
8578 OS_LIBS="$LIBS"
8579 AC_SUBST(OS_CFLAGS)
8580 AC_SUBST(OS_CXXFLAGS)
8581 AC_SUBST(OS_CPPFLAGS)
8582 AC_SUBST(OS_COMPILE_CFLAGS)
8583 AC_SUBST(OS_COMPILE_CXXFLAGS)
8584 AC_SUBST(OS_LDFLAGS)
8585 AC_SUBST(OS_LIBS)
8586 AC_SUBST(CROSS_COMPILE)
8587 AC_SUBST(WCHAR_CFLAGS)
8589 AC_SUBST(HOST_CC)
8590 AC_SUBST(HOST_CXX)
8591 AC_SUBST(HOST_CFLAGS)
8592 AC_SUBST(HOST_CXXFLAGS)
8593 AC_SUBST(HOST_LDFLAGS)
8594 AC_SUBST(HOST_OPTIMIZE_FLAGS)
8595 AC_SUBST(HOST_AR)
8596 AC_SUBST(HOST_AR_FLAGS)
8597 AC_SUBST(HOST_LD)
8598 AC_SUBST(HOST_RANLIB)
8599 AC_SUBST(HOST_NSPR_MDCPUCFG)
8600 AC_SUBST(HOST_BIN_SUFFIX)
8601 AC_SUBST(HOST_OS_ARCH)
8603 AC_SUBST(TARGET_CPU)
8604 AC_SUBST(TARGET_VENDOR)
8605 AC_SUBST(TARGET_OS)
8606 AC_SUBST(TARGET_NSPR_MDCPUCFG)
8607 AC_SUBST(TARGET_MD_ARCH)
8608 AC_SUBST(TARGET_XPCOM_ABI)
8609 AC_SUBST(OS_TARGET)
8610 AC_SUBST(OS_ARCH)
8611 AC_SUBST(OS_RELEASE)
8612 AC_SUBST(OS_TEST)
8613 AC_SUBST(CPU_ARCH)
8614 AC_SUBST(INTEL_ARCHITECTURE)
8615 AC_SUBST(HAVE_TOOLCHAIN_SUPPORT_MSSSE3)
8616 AC_SUBST(HAVE_TOOLCHAIN_SUPPORT_MSSE4_1)
8618 AC_SUBST(MOZ_CHROME_FILE_FORMAT)
8620 AC_SUBST(WRAP_LDFLAGS)
8621 AC_SUBST(MKSHLIB)
8622 AC_SUBST(MKCSHLIB)
8623 AC_SUBST(MKSHLIB_FORCE_ALL)
8624 AC_SUBST(MKSHLIB_UNFORCE_ALL)
8625 AC_SUBST(DSO_CFLAGS)
8626 AC_SUBST(DSO_PIC_CFLAGS)
8627 AC_SUBST(DSO_LDOPTS)
8628 AC_SUBST(LIB_PREFIX)
8629 AC_SUBST(DLL_PREFIX)
8630 AC_SUBST(DLL_SUFFIX)
8631 AC_DEFINE_UNQUOTED(MOZ_DLL_SUFFIX, "$DLL_SUFFIX")
8632 AC_SUBST(LIB_SUFFIX)
8633 AC_SUBST(OBJ_SUFFIX)
8634 AC_SUBST(BIN_SUFFIX)
8635 AC_SUBST(ASM_SUFFIX)
8636 AC_SUBST(IMPORT_LIB_SUFFIX)
8637 AC_SUBST(USE_N32)
8638 AC_SUBST(CC_VERSION)
8639 AC_SUBST(CXX_VERSION)
8640 AC_SUBST(MSMANIFEST_TOOL)
8641 AC_SUBST(NS_ENABLE_TSF)
8642 AC_SUBST(MOZ_NSS_PATCH)
8643 AC_SUBST(MOZ_APP_COMPONENT_LIBS)
8644 AC_SUBST(MOZ_APP_EXTRA_LIBS)
8646 AC_SUBST(MOZ_SPEEX_RESAMPLER)
8647 AC_SUBST(MOZ_SOUNDTOUCH)
8648 AC_SUBST(MOZ_CUBEB)
8649 AC_SUBST(MOZ_WAVE)
8650 AC_SUBST(MOZ_VORBIS)
8651 AC_SUBST(MOZ_TREMOR)
8652 AC_SUBST(MOZ_OPUS)
8653 AC_SUBST(MOZ_WEBM)
8654 AC_SUBST(MOZ_WMF)
8655 AC_SUBST(MOZ_FMP4)
8656 AC_SUBST(MOZ_DIRECTSHOW)
8657 AC_SUBST(MOZ_MEDIA_PLUGINS)
8658 AC_SUBST(MOZ_APPLEMEDIA)
8659 AC_SUBST(MOZ_OMX_PLUGIN)
8660 AC_SUBST(MOZ_VP8_ERROR_CONCEALMENT)
8661 AC_SUBST(MOZ_VP8_ENCODER)
8662 AC_SUBST(MOZ_VP8)
8663 AC_SUBST(MOZ_OGG)
8664 AC_SUBST(VPX_AS)
8665 AC_SUBST(VPX_ASFLAGS)
8666 AC_SUBST(VPX_DASH_C_FLAG)
8667 AC_SUBST(VPX_AS_CONVERSION)
8668 AC_SUBST(VPX_ASM_SUFFIX)
8669 AC_SUBST(VPX_X86_ASM)
8670 AC_SUBST(VPX_ARM_ASM)
8671 AC_SUBST(VPX_NEED_OBJ_INT_EXTRACT)
8672 AC_SUBST(MOZ_INSTRUMENT_EVENT_LOOP)
8673 AC_SUBST(LIBJPEG_TURBO_AS)
8674 AC_SUBST(LIBJPEG_TURBO_ASFLAGS)
8675 AC_SUBST(LIBJPEG_TURBO_X86_ASM)
8676 AC_SUBST(LIBJPEG_TURBO_X64_ASM)
8677 AC_SUBST(LIBJPEG_TURBO_ARM_ASM)
8679 AC_SUBST(MOZ_PACKAGE_JSSHELL)
8680 AC_SUBST(MOZ_FOLD_LIBS)
8682 AC_SUBST(MOZ_ENABLE_SZIP)
8683 AC_SUBST(MOZ_SZIP_FLAGS)
8685 if test -n "$COMPILE_ENVIRONMENT"; then
8686 AC_MSG_CHECKING([for posix_fallocate])
8687 AC_TRY_LINK([#define _XOPEN_SOURCE 600
8688   #include <fcntl.h>],
8689                  [posix_fallocate(0, 0, 0);],
8690                  [ac_cv___posix_fallocate=true],
8691                  [ac_cv___posix_fallocate=false])
8693 if test "$ac_cv___posix_fallocate" = true ; then
8694   AC_DEFINE(HAVE_POSIX_FALLOCATE)
8695   AC_MSG_RESULT(yes)
8696 else
8697   AC_MSG_RESULT(no)
8700 dnl Check for missing components
8701 if test "$MOZ_X11"; then
8702     if test "$WITHOUT_X11"; then
8703         AC_MSG_ERROR([--without-x specified and MOZ_X11 still defined])
8704     fi
8705     dnl ====================================================
8706     dnl = Check if X headers exist
8707     dnl ====================================================
8708     _SAVE_CFLAGS=$CFLAGS
8709     CFLAGS="$CFLAGS $XCFLAGS"
8710     AC_TRY_COMPILE([
8711         #include <stdio.h>
8712         #include <stdlib.h>
8713         #include <X11/Xlib.h>
8714         #include <X11/Intrinsic.h>
8715         #include <X11/extensions/XShm.h>
8716     ],
8717     [
8718         Display *dpy = 0;
8719         if ((dpy = XOpenDisplay(NULL)) == NULL) {
8720             fprintf(stderr, ": can't open %s\n", XDisplayName(NULL));
8721             exit(1);
8722         }
8723     ], [],
8724     [ AC_MSG_ERROR([Could not compile basic X program.]) ])
8725     CFLAGS="$_SAVE_CFLAGS"
8727     if test -n "$MISSING_X"; then
8728         AC_MSG_ERROR([ Could not find the following X libraries: $MISSING_X ]);
8729     fi
8731 fi # MOZ_X11
8733 fi # COMPILE_ENVIRONMENT
8735 dnl Set various defines and substitutions
8736 dnl ========================================================
8738 if test "$OS_ARCH" = "Darwin"; then
8739   AC_DEFINE(XP_UNIX)
8740 elif test "$OS_ARCH" != "WINNT" -a "$OS_ARCH" != "OS2"; then
8741   AC_DEFINE(XP_UNIX)
8744 if test "$MOZ_DEBUG"; then
8745     AC_DEFINE(MOZ_REFLOW_PERF)
8746     AC_DEFINE(MOZ_REFLOW_PERF_DSP)
8749 if test "$ACCESSIBILITY" -a "$MOZ_ENABLE_GTK" ; then
8750     AC_DEFINE(MOZ_ACCESSIBILITY_ATK)
8751     ATK_FULL_VERSION=`$PKG_CONFIG --modversion atk`
8752     ATK_MAJOR_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $1 }'`
8753     ATK_MINOR_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $2 }'`
8754     ATK_REV_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $3 }'`
8755     AC_DEFINE_UNQUOTED(ATK_MAJOR_VERSION, $ATK_MAJOR_VERSION)
8756     AC_DEFINE_UNQUOTED(ATK_MINOR_VERSION, $ATK_MINOR_VERSION)
8757     AC_DEFINE_UNQUOTED(ATK_REV_VERSION, $ATK_REV_VERSION)
8760 AC_SUBST(MOZILLA_VERSION)
8762 AC_SUBST(ac_configure_args)
8764 dnl Spit out some output
8765 dnl ========================================================
8767 dnl The following defines are used by xpcom
8768 _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES
8769 CPP_THROW_NEW
8770 HAVE_CPP_AMBIGUITY_RESOLVING_USING
8771 HAVE_CPP_DYNAMIC_CAST_TO_VOID_PTR
8772 HAVE_CPP_PARTIAL_SPECIALIZATION
8773 HAVE_CPP_TROUBLE_COMPARING_TO_ZERO
8774 NEED_CPP_UNUSED_IMPLEMENTATIONS
8775 HAVE_GETPAGESIZE
8776 HAVE_ICONV
8777 HAVE_ICONV_WITH_CONST_INPUT
8778 HAVE_MBRTOWC
8779 HAVE_WCRTOMB
8780 HAVE_STATVFS64
8781 HAVE_STATVFS
8782 HAVE_STATFS64
8783 HAVE_STATFS
8784 HAVE_SYS_STATVFS_H
8785 HAVE_SYS_STATFS_H
8786 HAVE_SYS_VFS_H
8787 HAVE_SYS_MOUNT_H
8790 AC_SUBST(STLPORT_LIBS)
8792 export WRITE_MOZINFO=1
8793 AC_OUTPUT()
8794 unset WRITE_MOZINFO
8796 # Hack around an Apple bug that affects the egrep that comes with OS X 10.7.
8797 # "env ARCHPREFERENCE=i386,x86_64 arch egrep" first tries to use the 32-bit
8798 # Intel part of the egrep fat binary, even on 64-bit systems, and falls back on
8799 # the 64-bit part if it's not a fat binary, as can happen with MacPorts. We
8800 # (apparently) only need this hack when egrep's "pattern" is particularly long
8801 # (as in the following code) and the first egrep on our $PATH is Apple's.  See
8802 # bug 655339.
8803 case "$host" in
8804 *-apple-darwin11*)
8805     FIXED_EGREP="env ARCHPREFERENCE=i386,x86_64 arch egrep"
8806     ;;
8808     FIXED_EGREP="egrep"
8809     ;;
8810 esac
8812 # Generate Makefiles for WebRTC directly from .gyp files
8813 if test "${OS_TARGET}" = "WINNT"; then
8814    if test "$HAVE_64BIT_OS"; then
8815       OS_BITS=64
8816    else
8817       OS_BITS=32
8818    fi
8819    EXTRA_GYP_DEFINES="-D MSVS_VERSION=${_MSVS_VERSION} -D MSVS_OS_BITS=${OS_BITS}"
8821 elif test "${OS_TARGET}" = "Android"; then
8822    if test "${MOZ_WIDGET_TOOLKIT}" = "gonk"; then
8823       EXTRA_GYP_DEFINES="-G os=linux "
8824    else
8825       EXTRA_GYP_DEFINES="-D gtest_target_type=executable -D android_toolchain=${android_toolchain} -G os=android "
8826    fi
8829 if test -n "$ARM_ARCH"; then
8830     if test "$ARM_ARCH" -lt 7; then
8831         EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=0 "
8832     else
8833         if test "${OS_TARGET}" = "Android"; then
8834             EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=1 "
8835         else
8836             dnl CPU detection for ARM works on Android only.  armv7 always uses CPU detection, so
8837             dnl we have to set armv7=0 for non-Android target
8838             EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=0 "
8839         fi
8840     fi
8843 # Keep libcubeb and audio_device backends in sync
8844 if test -n "$MOZ_ALSA"; then
8845    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_alsa_audio=1"
8846 else
8847    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_alsa_audio=0"
8849 if test -n "$MOZ_PULSEAUDIO"; then
8850    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_pulse_audio=1"
8851 else
8852    EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D include_pulse_audio=0"
8855 # Don't try to compile ssse3/sse4.1 code if toolchain doesn't support
8856 if test -n "$INTEL_ARCHITECTURE"; then
8857   if test -z "$HAVE_TOOLCHAIN_SUPPORT_MSSSE3" -o -z "$HAVE_TOOLCHAIN_SUPPORT_MSSE4_1"; then
8858     EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D yuv_disable_asm=1"
8859   fi
8862 if test -n "$MOZ_WEBRTC"; then
8863    AC_MSG_RESULT("generating WebRTC Makefiles...")
8865    if test "${MOZ_WIDGET_TOOLKIT}" = "gonk"; then
8866       EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D build_with_gonk=1"
8867    fi
8869 dnl Any --include files must also appear in -D FORCED_INCLUDE_FILE= entries
8870 dnl so that regeneration via dependencies works correctly
8871    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"
8873    if test -n HAVE_CLOCK_MONOTONIC; then
8874       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_clock_monotonic=1"
8875    else
8876       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_clock_monotonic=0"
8877    fi
8879    if test -n "$MOZ_WEBRTC_HAVE_ETHTOOL_SPEED_HI"; then
8880       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_ethtool_cmd_speed_hi=1"
8881    else
8882       WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_ethtool_cmd_speed_hi=0"
8883    fi
8885    if test -n "$CROSS_COMPILE"; then
8886       case "$target" in
8887       *-mingw*)
8888         GYP_MOZMAKE_OPTIONS="-G os=win"
8889         ;;
8890       *-darwin*)
8891         GYP_MOZMAKE_OPTIONS="-G os=mac"
8892         if test "$MACOS_SDK_DIR"; then
8893            GYP_MOZMAKE_OPTIONS="${GYP_MOZMAKE_OPTIONS} -D mac_sdk_path=$MACOS_SDK_DIR"
8894         fi
8895         ;;
8896       *-*linux*)
8897         GYP_MOZMAKE_OPTIONS="-G os=linux"
8898         ;;
8899       *)
8900         AC_MSG_ERROR([Don't know what options to give to WebRTC for cross-compilation])
8901         ;;
8902       esac
8903    fi
8905    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}"
8907    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium \
8908      $GYP_WEBRTC_OPTIONS \
8909      --generator-output=${_objdir}/media/webrtc/trunk \
8910      ${srcdir}/media/webrtc/trunk/peerconnection.gyp
8911    if test "$?" != 0; then
8912       AC_MSG_ERROR([failed to generate WebRTC Makefiles])
8913    fi
8915    # XXX disable until we land the tranche with signaling
8916    if test -n "$MOZ_WEBRTC_SIGNALING"; then
8917      AC_MSG_RESULT("generating WebRTC/Signaling Makefiles...")
8918      $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium \
8919        $GYP_WEBRTC_OPTIONS \
8920        -D build_for_test=0 \
8921        --generator-output=${_objdir}/media/webrtc/signaling \
8922        ${srcdir}/media/webrtc/signaling/signaling.gyp
8923      if test "$?" != 0; then
8924         AC_MSG_ERROR([failed to generate WebRTC/Signaling Makefiles])
8925      fi
8927      AC_MSG_RESULT("generating WebRTC/SignalingTest Makefiles...")
8928      $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium --format=mozmake \
8929        $GYP_WEBRTC_OPTIONS \
8930        -D build_for_test=1 \
8931        --generator-output=${_objdir}/media/webrtc/signalingtest \
8932        ${srcdir}/media/webrtc/signaling/signaling.gyp
8933      if test "$?" != 0; then
8934        AC_MSG_ERROR([failed to generate WebRTC/SignalingTest Makefiles])
8935      fi
8936    fi
8938    AC_MSG_RESULT("generating gtest Makefiles...")
8939    # Ok to pass some extra -D's that are ignored here
8940    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium \
8941      $GYP_WEBRTC_OPTIONS \
8942      --generator-output=${_objdir}/media/webrtc/trunk/testing/ \
8943      ${srcdir}/media/webrtc/trunk/testing/gtest.gyp
8944    if test "$?" != 0; then
8945       AC_MSG_ERROR([failed to generate gtest Makefiles])
8946    fi
8948    AC_MSG_RESULT("generating nrappkit Makefiles...")
8949    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium --format=mozmake \
8950      $GYP_WEBRTC_OPTIONS \
8951      --generator-output=${_objdir}/media/mtransport/third_party/nrappkit \
8952      ${srcdir}/media/mtransport/third_party/nrappkit/nrappkit.gyp
8953    if test "$?" != 0; then
8954       AC_MSG_ERROR([failed to generate nrappkit Makefiles])
8955    fi
8957    AC_MSG_RESULT("generating nICEr Makefiles...")
8958    $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium --format=mozmake \
8959      $GYP_WEBRTC_OPTIONS \
8960      --generator-output=${_objdir}/media/mtransport/third_party/nICEr \
8961      ${srcdir}/media/mtransport/third_party/nICEr/nicer.gyp
8962    if test "$?" != 0; then
8963       AC_MSG_ERROR([failed to generate nICEr Makefiles])
8964    fi
8967 # Run jemalloc configure script
8969 if test -z "$MOZ_NATIVE_JEMALLOC" -a "$MOZ_MEMORY" && test -n "$MOZ_JEMALLOC3" -o -n "$MOZ_REPLACE_MALLOC"; then
8970   ac_configure_args="$_SUBDIR_CONFIG_ARGS --build=$build --host=$target --enable-stats --with-jemalloc-prefix=je_"
8971   if test -n "$MOZ_REPLACE_MALLOC"; then
8972     # When using replace_malloc, we always want memalign and valloc exported from jemalloc.
8973     ac_configure_args="$ac_configure_args ac_cv_func_memalign=yes"
8974     ac_configure_args="$ac_configure_args ac_cv_func_valloc=yes"
8975   fi
8976   if test -n "$MOZ_JEMALLOC3"; then
8977     case "${OS_ARCH}" in
8978       WINNT|Darwin)
8979         # We want jemalloc functions to be kept hidden on both Mac and Windows
8980         # See memory/build/mozmemory_wrap.h for details.
8981         ac_configure_args="$ac_configure_args --without-export"
8982         ;;
8983     esac
8984   elif test "${OS_ARCH}" = Darwin; then
8985     # When building as a replace-malloc lib, disabling the zone allocator
8986     # forces to use pthread_atfork.
8987     ac_configure_args="$ac_configure_args --disable-zone-allocator"
8988   fi
8989   _MANGLE="malloc posix_memalign aligned_alloc calloc realloc free memalign valloc malloc_usable_size"
8990   JEMALLOC_WRAPPER=
8991   if test -z "$MOZ_REPLACE_MALLOC"; then
8992     case "$OS_ARCH" in
8993       Linux|DragonFly|FreeBSD|NetBSD|OpenBSD)
8994         MANGLE=$_MANGLE
8995         ;;
8996     esac
8997   elif test -z "$MOZ_JEMALLOC3"; then
8998     MANGLE=$_MANGLE
8999     JEMALLOC_WRAPPER=replace_
9000   fi
9001   if test -n "$MANGLE"; then
9002     MANGLED=
9003     if test -n "$_WRAP_MALLOC" -a -z "$JEMALLOC_WRAPPER"; then
9004       JEMALLOC_WRAPPER=__wrap_
9005     fi
9006     for mangle in ${MANGLE}; do
9007       if test -n "$MANGLED"; then
9008         MANGLED="$mangle:$JEMALLOC_WRAPPER$mangle,$MANGLED"
9009       else
9010         MANGLED="$mangle:$JEMALLOC_WRAPPER$mangle"
9011       fi
9012     done
9013     ac_configure_args="$ac_configure_args --with-mangling=$MANGLED"
9014   fi
9015   unset CONFIG_FILES
9016   if test -z "$MOZ_TLS"; then
9017     ac_configure_args="$ac_configure_args --disable-tls"
9018   fi
9019   EXTRA_CFLAGS="$CFLAGS"
9020   for var in AS CC CXX CPP LD AR RANLIB STRIP CPPFLAGS EXTRA_CFLAGS LDFLAGS; do
9021     ac_configure_args="$ac_configure_args $var='`eval echo \\${${var}}`'"
9022   done
9023   if test "$CROSS_COMPILE"; then
9024     ac_configure_args="$ac_configure_args je_cv_static_page_shift=12"
9025   fi
9026   _save_cache_file="$cache_file"
9027   cache_file=$_objdir/memory/jemalloc/src/config.cache
9029   if ! test -e memory/jemalloc; then
9030     mkdir -p memory/jemalloc
9031   fi
9033   AC_OUTPUT_SUBDIRS(memory/jemalloc/src)
9034   cache_file="$_save_cache_file"
9035   ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9038 # Run freetype configure script
9040 if test "$MOZ_TREE_FREETYPE"; then
9041    export CFLAGS="$CFLAGS $MOZ_DEBUG_FLAGS -std=c99"
9042    export CPPFLAGS="$CPPFLAGS $MOZ_DEBUG_FLAGS"
9043    export CXXFLAGS="$CXXFLAGS $MOZ_DEBUG_FLAGS"
9044    export LDFLAGS="$LDFLAGS $MOZ_DEBUG_LDFLAGS"
9045    export CONFIG_FILES="unix-cc.mk:unix-cc.in unix-def.mk:unix-def.in freetype-config freetype2.pc:freetype2.in"
9046    ac_configure_args="$ac_configure_args --host=$target --disable-shared --with-pic=yes --without-png"
9048    if ! test -e modules; then
9049      mkdir modules
9050    fi
9052    AC_OUTPUT_SUBDIRS(modules/freetype2)
9055 if test -z "$direct_nspr_config"; then
9056     dnl ========================================================
9057     dnl = Setup a nice relatively clean build environment for
9058     dnl = sub-configures.
9059     dnl ========================================================
9060     CC="$_SUBDIR_CC"
9061     CXX="$_SUBDIR_CXX"
9062     CFLAGS="$_SUBDIR_CFLAGS"
9063     CPPFLAGS="$_SUBDIR_CPPFLAGS"
9064     CXXFLAGS="$_SUBDIR_CXXFLAGS"
9065     LDFLAGS="$_SUBDIR_LDFLAGS"
9066     HOST_CC="$_SUBDIR_HOST_CC"
9067     HOST_CFLAGS="$_SUBDIR_HOST_CFLAGS"
9068     HOST_LDFLAGS="$_SUBDIR_HOST_LDFLAGS"
9069     RC=
9072 unset MAKEFILES
9073 unset CONFIG_FILES
9075 # Run all configure scripts specified by a subconfigure
9076 if test -n "$_subconfigure_subdir"; then
9077   _save_ac_configure_args="$ac_configure_args"
9078   ac_configure_args="$_subconfigure_config_args"
9079   AC_OUTPUT_SUBDIRS("$_subconfigure_subdir")
9080   ac_configure_args="$_save_ac_configure_args"
9083 # No need to run subconfigures when building with LIBXUL_SDK_DIR
9084 if test "$COMPILE_ENVIRONMENT" -a -z "$LIBXUL_SDK_DIR"; then
9086 export WRAP_LDFLAGS
9088 if test -n "$_WRAP_MALLOC"; then
9089     # Avoid doubling wrap malloc arguments
9090     _SUBDIR_CONFIG_ARGS="`echo $_SUBDIR_CONFIG_ARGS | sed -e 's/--enable-wrap-malloc *//'`"
9093 if test -z "$MOZ_NATIVE_NSPR"; then
9094     ac_configure_args="$_SUBDIR_CONFIG_ARGS --with-dist-prefix=$MOZ_BUILD_ROOT/dist --with-mozilla"
9095     if test -z "$MOZ_DEBUG"; then
9096         ac_configure_args="$ac_configure_args --disable-debug"
9097     else
9098         ac_configure_args="$ac_configure_args --enable-debug"
9099     fi
9100     if test "$MOZ_OPTIMIZE" = "1"; then
9101         ac_configure_args="$ac_configure_args --enable-optimize"
9102     elif test -z "$MOZ_OPTIMIZE"; then
9103         ac_configure_args="$ac_configure_args --disable-optimize"
9104     fi
9105     if test -n "$HAVE_64BIT_OS"; then
9106         ac_configure_args="$ac_configure_args --enable-64bit"
9107     fi
9108     if test -n "$USE_ARM_KUSER"; then
9109         ac_configure_args="$ac_configure_args --with-arm-kuser"
9110     fi
9111     ac_configure_args="$ac_configure_args $NSPR_CONFIGURE_ARGS"
9113     # Save these, so we can mess with them for the subconfigure ..
9114     _SAVE_CFLAGS="$CFLAGS"
9115     _SAVE_CPPFLAGS="$CPPFLAGS"
9116     _SAVE_LDFLAGS="$LDFLAGS"
9118     if test -n "$MOZ_LINKER" -a "$ac_cv_func_dladdr" = no ; then
9119       # dladdr is supported by the new linker, even when the system linker doesn't
9120       # support it. Trick nspr into using dladdr when it's not supported.
9121       export CPPFLAGS="-include $_topsrcdir/mozglue/linker/dladdr.h $CPPFLAGS"
9122     fi
9123     export LDFLAGS="$LDFLAGS $NSPR_LDFLAGS"
9124     export CFLAGS="$CFLAGS $MOZ_FRAMEPTR_FLAGS"
9126     AC_OUTPUT_SUBDIRS(nsprpub)
9128     # .. and restore them
9129     unset CFLAGS
9130     unset CPPFLAGS
9131     unset LDFLAGS
9132     CFLAGS="$_SAVE_CFLAGS"
9133     CPPFLAGS="$_SAVE_CPPFLAGS"
9134     LDFLAGS="$_SAVE_LDFLAGS"
9136     ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9139 dnl ========================================================
9140 dnl = Setup a nice relatively clean build environment for
9141 dnl = sub-configures.
9142 dnl ========================================================
9143 CC="$_SUBDIR_CC"
9144 CXX="$_SUBDIR_CXX"
9145 CFLAGS="$_SUBDIR_CFLAGS"
9146 CPPFLAGS="$_SUBDIR_CPPFLAGS"
9147 CXXFLAGS="$_SUBDIR_CXXFLAGS"
9148 LDFLAGS="$_SUBDIR_LDFLAGS"
9149 HOST_CC="$_SUBDIR_HOST_CC"
9150 HOST_CFLAGS="$_SUBDIR_HOST_CFLAGS"
9151 HOST_LDFLAGS="$_SUBDIR_HOST_LDFLAGS"
9154 if test -n "$ENABLE_CLANG_PLUGIN"; then
9155     ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9156     AC_OUTPUT_SUBDIRS(build/clang-plugin)
9160 # Run the SpiderMonkey 'configure' script.
9161 dist=$MOZ_BUILD_ROOT/dist
9162 ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9163 ac_configure_args="$ac_configure_args --enable-threadsafe"
9165 MOZ_ARG_WITH_STRING(intl-api,
9166 [  --with-intl-api, --with-intl-api=build, --without-intl-api
9167     Determine the status of the ECMAScript Internationalization API.  The first
9168     (or lack of any of these) builds and exposes the API.  The second builds it
9169     but doesn't use ICU or expose the API to script.  The third doesn't build
9170     ICU at all.],
9171     WITH_INTL="--with-intl-api=$withval"
9173 if test -z "$WITH_INTL"; then
9174 if test "$MOZ_BUILD_APP" = "browser"; then
9175     WITH_INTL="--with-intl-api"
9176 else
9177     # Internationalization isn't built or exposed by default in non-desktop
9178     # builds.  Bugs to enable:
9179     #
9180     #   Android:  bug 864843
9181     #   B2G:      bug 866301
9182     WITH_INTL="--without-intl-api"
9185 ac_configure_args="$ac_configure_args $WITH_INTL"
9187 if test "$BUILD_CTYPES"; then
9188     # Build js-ctypes on the platforms we can.
9189     ac_configure_args="$ac_configure_args --enable-ctypes"
9191 if test -z "$JS_SHARED_LIBRARY" ; then
9192     ac_configure_args="$ac_configure_args --disable-shared-js"
9193     if test -n "$MOZ_DISABLE_EXPORT_JS"; then
9194         ac_configure_args="$ac_configure_args --disable-export-js"
9195     fi
9197 if test -z "$MOZ_NATIVE_NSPR"; then
9198     ac_configure_args="$ac_configure_args --with-nspr-cflags='$NSPR_CFLAGS'"
9199     ac_configure_args="$ac_configure_args --with-nspr-libs='$NSPR_LIBS'"
9201 ac_configure_args="$ac_configure_args --with-dist-dir=../../dist"
9202 ac_configure_args="$ac_configure_args --prefix=$dist"
9203 if test "$MOZ_MEMORY"; then
9204    ac_configure_args="$ac_configure_args --enable-jemalloc"
9206 if test -n "$MOZ_GLUE_LDFLAGS"; then
9207    export MOZ_GLUE_LDFLAGS
9209 if test -n "$MOZ_GLUE_PROGRAM_LDFLAGS"; then
9210    export MOZ_GLUE_PROGRAM_LDFLAGS
9212 if test "$MOZ_NATIVE_ZLIB" != 1 -a "$OS_ARCH" = "WINNT"; then
9213    MOZ_ZLIB_LIBS=
9215 export MOZ_NATIVE_ZLIB
9216 export MOZ_ZLIB_CFLAGS
9217 export MOZ_ZLIB_LIBS
9218 export MOZ_APP_NAME
9219 export DONT_POPULATE_VIRTUALENV=1
9220 export PYTHON
9221 export MOZILLA_CENTRAL_PATH=$_topsrcdir
9222 export STLPORT_CPPFLAGS
9223 export STLPORT_LDFLAGS
9224 export STLPORT_LIBS
9225 export JS_STANDALONE=no
9226 export MOZ_LINKER
9228 if ! test -e js; then
9229     mkdir js
9232 AC_OUTPUT_SUBDIRS(js/src)
9233 ac_configure_args="$_SUBDIR_CONFIG_ARGS"
9235 fi # COMPILE_ENVIRONMENT && !LIBXUL_SDK_DIR