Bug 1564761 [wpt PR 17620] - Document::CheckComplete should be nop when called from...
[gecko.git] / old-configure.in
blob7918afc66f34511797e2eced6782945905d109c7
1 dnl -*- Mode: Autoconf; tab-width: 4; indent-tabs-mode: nil; -*-
2 dnl vi: set tabstop=4 shiftwidth=4 expandtab syntax=m4:
3 dnl This Source Code Form is subject to the terms of the Mozilla Public
4 dnl License, v. 2.0. If a copy of the MPL was not distributed with this
5 dnl file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 dnl Process this file with autoconf to produce a configure script.
8 dnl ========================================================
9 AC_PREREQ(2.13)
10 AC_INIT(config/config.mk)
11 AC_CONFIG_AUX_DIR(${srcdir}/build/autoconf)
12 AC_CANONICAL_SYSTEM
14 dnl ========================================================
15 dnl =
16 dnl = Don't change the following lines. Doing so breaks:
17 dnl =
18 dnl = CFLAGS="-foo" ./configure
19 dnl =
20 dnl ========================================================
21 CFLAGS="${CFLAGS=}"
22 CPPFLAGS="${CPPFLAGS=}"
23 CXXFLAGS="${CXXFLAGS=}"
24 LDFLAGS="${LDFLAGS=}"
25 HOST_CFLAGS="${HOST_CFLAGS=}"
26 HOST_CXXFLAGS="${HOST_CXXFLAGS=}"
27 HOST_LDFLAGS="${HOST_LDFLAGS=}"
29 dnl ========================================================
30 dnl = Preserve certain environment flags passed to configure
31 dnl = We want sub projects to receive the same flags
32 dnl = untainted by this configure script
33 dnl ========================================================
34 _SUBDIR_CC="$CC"
35 _SUBDIR_CXX="$CXX"
36 _SUBDIR_CFLAGS="$CFLAGS"
37 _SUBDIR_CPPFLAGS="$CPPFLAGS"
38 _SUBDIR_CXXFLAGS="$CXXFLAGS"
39 _SUBDIR_LDFLAGS="$LDFLAGS"
40 _SUBDIR_HOST_CC="$HOST_CC"
41 _SUBDIR_HOST_CFLAGS="$HOST_CFLAGS"
42 _SUBDIR_HOST_CXXFLAGS="$HOST_CXXFLAGS"
43 _SUBDIR_HOST_LDFLAGS="$HOST_LDFLAGS"
44 _SUBDIR_CONFIG_ARGS="$ac_configure_args"
46 dnl Set the version number of the libs included with mozilla
47 dnl ========================================================
48 MOZPNG=10635
49 NSPR_VERSION=4
50 NSPR_MINVER=4.21
51 NSS_VERSION=3
53 dnl Set the minimum version of toolkit libs used by mozilla
54 dnl ========================================================
55 GLIB_VERSION=2.22
56 # 2_26 is the earliest version we can set GLIB_VERSION_MIN_REQUIRED.
57 # The macro won't be used when compiling with earlier versions anyway.
58 GLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26
59 CAIRO_VERSION=1.10
60 GTK2_VERSION=2.18.0
61 GTK3_VERSION=3.4.0
62 GDK_VERSION_MAX_ALLOWED=GDK_VERSION_3_4
63 W32API_VERSION=3.14
64 STARTUP_NOTIFICATION_VERSION=0.8
65 DBUS_VERSION=0.60
66 SQLITE_VERSION=3.29.0
68 dnl Set various checks
69 dnl ========================================================
70 MISSING_X=
72 dnl Initialize the Pthread test variables early so they can be
73 dnl  overridden by each platform.
74 dnl ========================================================
75 MOZ_USE_PTHREADS=
76 _PTHREAD_LDFLAGS=""
78 LDFLAGS="$LDFLAGS $LINKER_LDFLAGS"
80 if test "$COMPILE_ENVIRONMENT"; then
81     MOZ_ANDROID_NDK
82 fi # COMPILE_ENVIRONMENT
84 case "$target" in
85 *-android*|*-linuxandroid*)
86     AC_DEFINE(ANDROID)
87     ;;
88 *-linux*)
89     AC_PATH_PROG(OBJCOPY,objcopy)
90     ;;
91 esac
93 case "$target" in
94 *-apple-darwin*)
95     MOZ_IOS_SDK
96     ;;
97 esac
99 AC_SUBST(ANDROID_SOURCE)
100 AC_SUBST(ANDROID_PACKAGE_NAME)
101 AC_SUBST(OBJCOPY)
103 dnl ========================================================
104 dnl Checks for compilers.
105 dnl ========================================================
107 if test "$COMPILE_ENVIRONMENT"; then
109 if test "$target" != "$host"; then
110     MOZ_CROSS_COMPILER
111 else
112     AC_PROG_CC
113     case "$target" in
114     *-mingw*)
115       # Work around the conftest.exe access problem on Windows
116       sleep 2
117     esac
118     AC_PROG_CXX
119     AC_PROG_RANLIB
120     MOZ_PATH_PROGS(AS, $AS as, $CC)
121     AC_CHECK_PROGS(STRIP, strip, :)
122     AC_CHECK_PROGS(OTOOL, otool, :)
125 if test -n "$MOZ_WINCONSOLE"; then
126     AC_DEFINE(MOZ_WINCONSOLE)
129 MOZ_TOOL_VARIABLES
131 dnl ========================================================
132 dnl Special win32 checks
133 dnl ========================================================
135 WINVER=601
137 case "$target" in
138 *-mingw*)
139     if test "$GCC" != "yes"; then
140         # Check to see if we are really running in a msvc environemnt
141         _WIN32_MSVC=1
143         # Make sure compilers are valid
144         CFLAGS="$CFLAGS -nologo"
145         CXXFLAGS="$CXXFLAGS -TP -nologo"
146         AC_LANG_SAVE
147         AC_LANG_C
148         AC_TRY_COMPILE([#include <stdio.h>],
149             [ printf("Hello World\n"); ],,
150             AC_MSG_ERROR([\$(CC) test failed.  You must have MS VC++ in your path to build.]) )
152         AC_LANG_CPLUSPLUS
153         AC_TRY_COMPILE([#include <new.h>],
154             [ unsigned *test = new unsigned(42); ],,
155             AC_MSG_ERROR([\$(CXX) test failed.  You must have MS VC++ in your path to build.]) )
156         AC_LANG_RESTORE
158         changequote(,)
159         _MSVC_VER_FILTER='s|.*[^!-~]([0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?).*|\1|p'
160         changequote([,])
162         AC_DEFINE(_CRT_SECURE_NO_WARNINGS)
163         AC_DEFINE(_CRT_NONSTDC_NO_WARNINGS)
164         AC_DEFINE(_USE_MATH_DEFINES) # Otherwise MSVC's math.h doesn't #define M_PI.
166         _CC_SUITE=14
167         MSVC_C_RUNTIME_DLL=vcruntime140.dll
168         MSVC_CXX_RUNTIME_DLL=msvcp140.dll
170         # -Zc:sizedDealloc- disables C++14 global sized deallocation (see bug 1160146)
171         CXXFLAGS="$CXXFLAGS -Zc:sizedDealloc-"
173         if test -n "$WIN_UCRT_REDIST_DIR"; then
174           if test ! -d "$WIN_UCRT_REDIST_DIR"; then
175             AC_MSG_ERROR([Invalid Windows UCRT Redist directory: ${WIN_UCRT_REDIST_DIR}])
176           fi
177           WIN_UCRT_REDIST_DIR=`cd "$WIN_UCRT_REDIST_DIR" && pwd -W`
178         fi
180         AC_SUBST(MSVC_C_RUNTIME_DLL)
181         AC_SUBST(MSVC_CXX_RUNTIME_DLL)
183         AC_DEFINE(HAVE_SEH_EXCEPTIONS)
185         if test -n "$WIN32_REDIST_DIR"; then
186           if test ! -d "$WIN32_REDIST_DIR"; then
187             AC_MSG_ERROR([Invalid Win32 Redist directory: ${WIN32_REDIST_DIR}])
188           fi
189           WIN32_REDIST_DIR=`cd "$WIN32_REDIST_DIR" && pwd -W`
190         fi
192         # Check linker version, except in lld builds
193         case "$LINKER" in
194         *lld*)
195             ;;
196         *)
197             _LD_FULL_VERSION=`"${LINKER}" -v 2>&1 | sed -nre "$_MSVC_VER_FILTER"`
198             _LD_MAJOR_VERSION=`echo ${_LD_FULL_VERSION} | $AWK -F\. '{ print $1 }'`
199             if test "$_LD_MAJOR_VERSION" != "$_CC_SUITE"; then
200                 AC_MSG_ERROR([The linker major version, $_LD_FULL_VERSION,  does not match the compiler suite version, $_CC_SUITE.])
201             fi
202             ;;
203         esac
205         INCREMENTAL_LINKER=1
207         unset _MSVC_VER_FILTER
209         WRAP_STL_INCLUDES=1
210         STL_FLAGS="-I${DIST}/stl_wrappers"
211         CFLAGS="$CFLAGS -D_HAS_EXCEPTIONS=0"
212         CXXFLAGS="$CXXFLAGS -D_HAS_EXCEPTIONS=0"
213     else
214         # Check w32api version
215         _W32API_MAJOR_VERSION=`echo $W32API_VERSION | $AWK -F\. '{ print $1 }'`
216         _W32API_MINOR_VERSION=`echo $W32API_VERSION | $AWK -F\. '{ print $2 }'`
217         AC_MSG_CHECKING([for w32api version >= $W32API_VERSION])
218         AC_TRY_COMPILE([#include <w32api.h>],
219             #if (__W32API_MAJOR_VERSION < $_W32API_MAJOR_VERSION) || \
220                 (__W32API_MAJOR_VERSION == $_W32API_MAJOR_VERSION && \
221                  __W32API_MINOR_VERSION < $_W32API_MINOR_VERSION)
222                 #error "test failed."
223             #endif
224             , [ res=yes ], [ res=no ])
225         AC_MSG_RESULT([$res])
226         if test "$res" != "yes"; then
227             AC_MSG_ERROR([w32api version $W32API_VERSION or higher required.])
228         fi
229         # strsafe.h on mingw uses macros for function deprecation that pollutes namespace
230         # causing problems with local implementations with the same name.
231         AC_DEFINE(STRSAFE_NO_DEPRECATE)
232     fi # !GNU_CC
234     AC_DEFINE_UNQUOTED(WINVER,0x$WINVER)
235     AC_DEFINE_UNQUOTED(_WIN32_WINNT,0x$WINVER)
236     # Require OS features provided by IE 8.0 (Win7)
237     AC_DEFINE_UNQUOTED(_WIN32_IE,0x0800)
239     ;;
240 esac
242 if test -n "$_WIN32_MSVC"; then
243     SKIP_PATH_CHECKS=1
244     SKIP_COMPILER_CHECKS=1
245     SKIP_LIBRARY_CHECKS=1
247     # Since we're skipping compiler and library checks, hard-code
248     # some facts here.
249     AC_DEFINE(HAVE_IO_H)
250     AC_DEFINE(HAVE_ISATTY)
253 fi # COMPILE_ENVIRONMENT
255 AC_SUBST(GNU_CC)
256 AC_SUBST(GNU_CXX)
258 AC_SUBST_LIST(STL_FLAGS)
259 AC_SUBST(WRAP_STL_INCLUDES)
261 dnl ========================================================
262 dnl Checks for programs.
263 dnl ========================================================
264 if test "$COMPILE_ENVIRONMENT"; then
266 AC_PATH_XTRA
268 XCFLAGS="$X_CFLAGS"
270 fi # COMPILE_ENVIRONMENT
272 dnl ========================================================
273 dnl set the defaults first
274 dnl ========================================================
275 MOZ_USER_DIR=".mozilla"
277 MOZ_FIX_LINK_PATHS="-Wl,-rpath-link,${DIST}/bin -Wl,-rpath-link,${prefix}/lib"
279 MOZ_FS_LAYOUT=unix
281 dnl Configure platform-specific CPU architecture compiler options.
282 dnl ==============================================================
283 if test "$COMPILE_ENVIRONMENT"; then
284     MOZ_ARCH_OPTS
285 fi # COMPILE_ENVIRONMENT
287 dnl ========================================================
288 dnl Android libstdc++
289 dnl ========================================================
291 MOZ_ANDROID_CPU_ARCH
292 if test "$COMPILE_ENVIRONMENT"; then
293     MOZ_ANDROID_STLPORT
294 fi # COMPILE_ENVIRONMENT
296 dnl ========================================================
297 dnl Suppress Clang Argument Warnings
298 dnl ========================================================
299 WARNINGS_CFLAGS="$_WARNINGS_CFLAGS"
300 if test -n "${CLANG_CC}${CLANG_CL}"; then
301     WARNINGS_CFLAGS="-Qunused-arguments $WARNINGS_CFLAGS"
302     CPPFLAGS="-Qunused-arguments ${CPPFLAGS}"
304 if test -n "${CLANG_CXX}${CLANG_CL}"; then
305     _WARNINGS_CXXFLAGS="-Qunused-arguments ${_WARNINGS_CXXFLAGS}"
308 if test -n "$COMPILE_ENVIRONMENT"; then
309    MOZ_CONFIG_SANITIZE
312 dnl ========================================================
313 dnl Add optional and non-optional hardening flags
314 dnl ========================================================
316 CFLAGS="$CFLAGS $MOZ_HARDENING_CFLAGS"
317 CPPFLAGS="$CPPFLAGS $MOZ_HARDENING_CFLAGS"
318 CXXFLAGS="$CXXFLAGS $MOZ_HARDENING_CFLAGS"
319 LDFLAGS="$LDFLAGS $MOZ_HARDENING_LDFLAGS"
321 dnl ========================================================
322 dnl GNU specific defaults
323 dnl ========================================================
324 if test "$GNU_CC"; then
325     MMX_FLAGS="-mmmx"
326     SSE_FLAGS="-msse"
327     SSE2_FLAGS="-msse2"
328     SSSE3_FLAGS="-mssse3"
329     # FIXME: Let us build with strict aliasing. bug 414641.
330     CFLAGS="$CFLAGS -fno-strict-aliasing"
331     WARNINGS_AS_ERRORS='-Werror'
332     DSO_CFLAGS=''
334     if test "$OS_ARCH" != "WINNT" -o -z "$CLANG_CC"; then
335         DSO_PIC_CFLAGS='-fPIC'
336         ASFLAGS="$ASFLAGS -fPIC"
337     fi
339     AC_MSG_CHECKING([for --noexecstack option to as])
340     _SAVE_CFLAGS=$CFLAGS
341     CFLAGS="$CFLAGS -Wa,--noexecstack"
342     AC_TRY_COMPILE(,,AC_MSG_RESULT([yes])
343                      [ASFLAGS="$ASFLAGS -Wa,--noexecstack"],
344                      AC_MSG_RESULT([no]))
345     CFLAGS=$_SAVE_CFLAGS
346     AC_MSG_CHECKING([for -z noexecstack option to ld])
347     _SAVE_LDFLAGS=$LDFLAGS
348     LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"
349     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
350                   AC_MSG_RESULT([no])
351                   LDFLAGS=$_SAVE_LDFLAGS)
353     AC_MSG_CHECKING([for -z text option to ld])
354     _SAVE_LDFLAGS=$LDFLAGS
355     LDFLAGS="$LDFLAGS -Wl,-z,text"
356     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
357                   AC_MSG_RESULT([no])
358                   LDFLAGS=$_SAVE_LDFLAGS)
360     AC_MSG_CHECKING([for -z relro option to ld])
361     _SAVE_LDFLAGS=$LDFLAGS
362     LDFLAGS="$LDFLAGS -Wl,-z,relro"
363     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
364                   AC_MSG_RESULT([no])
365                   LDFLAGS=$_SAVE_LDFLAGS)
367     AC_MSG_CHECKING([for -z nocopyreloc option to ld])
368     _SAVE_LDFLAGS=$LDFLAGS
369     LDFLAGS="$LDFLAGS -Wl,-z,nocopyreloc"
370     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
371                   AC_MSG_RESULT([no])
372                   LDFLAGS=$_SAVE_LDFLAGS)
374     AC_MSG_CHECKING([for -Bsymbolic-functions option to ld])
375     _SAVE_LDFLAGS=$LDFLAGS
376     LDFLAGS="$LDFLAGS -Wl,-Bsymbolic-functions"
377     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
378                   AC_MSG_RESULT([no])
379                   LDFLAGS=$_SAVE_LDFLAGS)
381     AC_MSG_CHECKING([for --build-id=sha1 option to ld])
382     _SAVE_LDFLAGS=$LDFLAGS
383     LDFLAGS="$LDFLAGS -Wl,--build-id=sha1"
384     AC_TRY_LINK(,,AC_MSG_RESULT([yes]),
385                   AC_MSG_RESULT([no])
386                   LDFLAGS=$_SAVE_LDFLAGS)
388     AC_MSG_CHECKING([for --ignore-unresolved-symbol option to ld])
389     HAVE_LINKER_SUPPORT_IGNORE_UNRESOLVED=
390     _SAVE_LDFLAGS=$LDFLAGS
391     LDFLAGS="$LDFLAGS -Wl,--ignore-unresolved-symbol,environ"
392     AC_TRY_LINK(,,AC_MSG_RESULT([yes])
393                   [HAVE_LINKER_SUPPORT_IGNORE_UNRESOLVED=1],
394                   AC_MSG_RESULT([no]))
395     LDFLAGS=$_SAVE_LDFLAGS
397     # Check for -mssse3 on $CC
398     AC_MSG_CHECKING([if toolchain supports -mssse3 option])
399     HAVE_TOOLCHAIN_SUPPORT_MSSSE3=
400     _SAVE_CFLAGS=$CFLAGS
401     CFLAGS="$CFLAGS -mssse3"
402     AC_TRY_COMPILE([asm ("pmaddubsw %xmm2,%xmm3");],,AC_MSG_RESULT([yes])
403                      [HAVE_TOOLCHAIN_SUPPORT_MSSSE3=1],
404                      AC_MSG_RESULT([no]))
405     CFLAGS=$_SAVE_CFLAGS
407     # Check for -msse4.1 on $CC
408     AC_MSG_CHECKING([if toolchain supports -msse4.1 option])
409     HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=
410     _SAVE_CFLAGS=$CFLAGS
411     CFLAGS="$CFLAGS -msse4.1"
412     AC_TRY_COMPILE([asm ("pmulld %xmm6,%xmm0");],,AC_MSG_RESULT([yes])
413                      [HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=1],
414                      AC_MSG_RESULT([no]))
415     CFLAGS=$_SAVE_CFLAGS
417     case "${CPU_ARCH}" in
418     x86 | x86_64)
419       AC_MSG_CHECKING(for x86 AVX2 asm support in compiler)
420       AC_TRY_COMPILE([],
421                      [asm volatile ("vpermq      \$0xd8,%ymm0,%ymm0 \n");],
422                      result="yes", result="no")
423       AC_MSG_RESULT("$result")
424       if test "$result" = "yes"; then
425           HAVE_X86_AVX2=1
426       fi
427       ;;
429     ppc*)
430       AC_MSG_CHECKING([whether we can enable AltiVec support])
431       HAVE_ALTIVEC=
432       _SAVE_CFLAGS=$CFLAGS
433       CFLAGS="$CFLAGS -maltivec"
434       AC_TRY_COMPILE(,,AC_MSG_RESULT([yes])
435                        [HAVE_ALTIVEC=1],
436                        AC_MSG_RESULT([no]))
437       CFLAGS=$_SAVE_CFLAGS
438       ;;
439     esac
441     DSO_LDOPTS='-shared'
442     if test "$GCC_USE_GNU_LD"; then
443         # Some tools like ASan use a runtime library that is only
444         # linked against executables, so we must allow undefined
445         # symbols for shared objects in some cases.
446         if test -z "$MOZ_ASAN$MOZ_MSAN$MOZ_UBSAN$MOZ_TSAN$FUZZING_INTERFACES"; then
447             # Don't allow undefined symbols in libraries
448             DSO_LDOPTS="$DSO_LDOPTS -Wl,-z,defs"
450             # BSDs need `environ' exposed for posix_spawn (bug 753046)
451             case "$OS_TARGET" in
452             DragonFly|FreeBSD|NetBSD|OpenBSD)
453                 if test -n "$HAVE_LINKER_SUPPORT_IGNORE_UNRESOLVED"; then
454                     DSO_LDOPTS="$DSO_LDOPTS -Wl,--ignore-unresolved-symbol,environ"
455                 else
456                     DSO_LDOPTS="$DSO_LDOPTS -Wl,--warn-unresolved-symbols"
457                 fi
458                 ;;
459             esac
460         fi
461     fi
463     _DEFINES_CFLAGS="-include $_objdir/mozilla-config.h -DMOZILLA_CLIENT"
464     _USE_CPP_INCLUDE_FLAG=1
466     ASFLAGS="$ASFLAGS $_DEFINES_CFLAGS"
469 if test "$GNU_CXX"; then
470     # FIXME: Let us build with strict aliasing. bug 414641.
471     CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-strict-aliasing"
473     _DEFINES_CXXFLAGS="-DMOZILLA_CLIENT -include $_objdir/mozilla-config.h"
474     _USE_CPP_INCLUDE_FLAG=1
477 # For profiling builds keep the symbol information
478 if test "$MOZ_PROFILING" -a -z "$STRIP_FLAGS"; then
479     case "$OS_TARGET" in
480     Linux|DragonFly|FreeBSD|NetBSD|OpenBSD)
481         STRIP_FLAGS="--strip-debug"
482         ;;
483     esac
486 dnl ========================================================
487 dnl = Enable DMD
488 dnl ========================================================
490 if test "$MOZ_DMD"; then
491     if test "${CPU_ARCH}" = "arm"; then
492         CFLAGS="$CFLAGS -funwind-tables"
493         CXXFLAGS="$CXXFLAGS -funwind-tables"
494     fi
497 dnl ========================================================
498 dnl System overrides of the defaults for host
499 dnl ========================================================
500 case "$host" in
501 *mingw*)
502     if test -n "$_WIN32_MSVC"; then
503         HOST_CFLAGS="$HOST_CFLAGS -nologo"
504     else
505         HOST_CFLAGS="$HOST_CFLAGS -mwindows"
506     fi
507     HOST_CFLAGS="$HOST_CFLAGS -DXP_WIN -DWIN32 -D_WIN32 -D_CRT_SECURE_NO_WARNINGS"
508     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
509     HOST_BIN_SUFFIX=.exe
511     case "${host_cpu}" in
512     i*86)
513         if test -n "$_WIN32_MSVC"; then
514             HOST_LDFLAGS="$HOST_LDFLAGS -MACHINE:X86"
515         fi
516         ;;
517     x86_64)
518         if test -n "$_WIN32_MSVC"; then
519             HOST_LDFLAGS="$HOST_LDFLAGS -MACHINE:X64"
520         fi
521         HOST_CFLAGS="$HOST_CFLAGS -D_AMD64_"
522         ;;
523     esac
524     ;;
526 *-darwin*)
527     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX -DXP_MACOSX"
528     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}"
529     ;;
531 *-linux*|*-kfreebsd*-gnu|*-gnu*)
532     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX"
533     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O3}"
534     ;;
537     HOST_CFLAGS="$HOST_CFLAGS -DXP_UNIX"
538     HOST_OPTIMIZE_FLAGS="${HOST_OPTIMIZE_FLAGS=-O2}"
539     ;;
540 esac
542 dnl ========================================================
543 dnl System overrides of the defaults for target
544 dnl ========================================================
546 case "$target" in
547 *-darwin*)
548     MOZ_OPTIMIZE_FLAGS="-O3"
549     CXXFLAGS="$CXXFLAGS -stdlib=libc++"
550     DSO_LDOPTS=''
551     STRIP_FLAGS="$STRIP_FLAGS -x -S"
552     # Ensure that if we're targeting iOS an SDK was provided.
553     AC_CACHE_CHECK(for iOS target,
554                    ac_cv_ios_target,
555                    [AC_TRY_COMPILE([#include <TargetConditionals.h>
556 #if !(TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR)
557 #error not iOS
558 #endif],
559                                    [],
560                                    ac_cv_ios_target="yes",
561                                    ac_cv_ios_target="no")])
562     if test "$ac_cv_ios_target" = "yes" -a -z $MOZ_IOS; then
563        AC_MSG_ERROR([targeting iOS but not using an iOS SDK?])
564     fi
565     if test -z "$MOZ_IOS"; then
566         # The ExceptionHandling framework is needed for Objective-C exception
567         # logging code in nsObjCExceptions.h. Currently we only use that in debug
568         # builds.
569         MOZ_DEBUG_LDFLAGS="$MOZ_DEBUG_LDFLAGS -framework ExceptionHandling";
570     fi
572     dnl DTrace and -dead_strip don't interact well. See bug 403132.
573     dnl ===================================================================
574     if test "x$enable_dtrace" = "xyes"; then
575         echo "Skipping -dead_strip because DTrace is enabled. See bug 403132."
576     else
577         dnl check for the presence of the -dead_strip linker flag
578         AC_MSG_CHECKING([for -dead_strip option to ld])
579         _SAVE_LDFLAGS=$LDFLAGS
580         LDFLAGS="$LDFLAGS -Wl,-dead_strip"
581         AC_TRY_LINK(,[return 0;],_HAVE_DEAD_STRIP=1,_HAVE_DEAD_STRIP=)
582         if test -n "$_HAVE_DEAD_STRIP" ; then
583             AC_MSG_RESULT([yes])
584             MOZ_OPTIMIZE_LDFLAGS="-Wl,-dead_strip"
585         else
586             AC_MSG_RESULT([no])
587         fi
589         LDFLAGS=$_SAVE_LDFLAGS
590     fi
592     MOZ_FIX_LINK_PATHS="-Wl,-executable_path,${DIST}/bin"
593     ;;
595 *-android*|*-linuxandroid*)
596     AC_DEFINE(NO_PW_GECOS)
598     if test "$COMPILE_ENVIRONMENT"; then
599         MOZ_LINKER=1
600     fi
602     MOZ_GFX_OPTIMIZE_MOBILE=1
603     if test -z "$CLANG_CC"; then
604         MOZ_OPTIMIZE_FLAGS="-freorder-blocks -fno-reorder-functions -Os"
605     else
606         # From https://github.com/android-ndk/ndk/issues/133#issuecomment-308549264
607         # -Oz is smaller than -Os on clang.
608         MOZ_OPTIMIZE_FLAGS="-Oz"
609         # Disable the outliner, which causes performance regressions, and is
610         # enabled on some platforms at -Oz.
611         if test -z "$MOZ_LTO"; then
612             DISABLE_OUTLINER="-mno-outline"
613             _SAVE_CFLAGS=$CFLAGS
614             CFLAGS="$CFLAGS $DISABLE_OUTLINER"
615             AC_TRY_COMPILE(,,[MOZ_OPTIMIZE_FLAGS="$MOZ_OPTIMIZE_FLAGS $DISABLE_OUTLINER"])
616             CFLAGS="$_SAVE_CFLAGS"
617         else
618             DISABLE_OUTLINER="-Wl,-plugin-opt=-enable-machine-outliner=never"
619             _SAVE_LDFLAGS=$LDFLAGS
620             LDFLAGS="$LDFLAGS $MOZ_LTO_LDFLAGS $DISABLE_OUTLINER"
621             AC_TRY_LINK(,,[MOZ_OPTIMIZE_LDFLAGS="$MOZ_OPTIMIZE_LDFLAGS $DISABLE_OUTLINER"])
622             LDFLAGS="$_SAVE_LDFLAGS"
623         fi
624     fi
625     ;;
627 *-*linux*)
628     if test "$GNU_CC" -o "$GNU_CXX"; then
629         MOZ_PGO_OPTIMIZE_FLAGS="-O3"
630         if test -n "$MOZ_DEBUG"; then
631             MOZ_OPTIMIZE_FLAGS="-Os"
632         else
633             MOZ_OPTIMIZE_FLAGS="-O2"
634         fi
635         if test -z "$CLANG_CC"; then
636            MOZ_OPTIMIZE_FLAGS="-freorder-blocks $MOZ_OPTIMIZE_FLAGS"
637         fi
638     fi
640     case "${target_cpu}" in
641     alpha*)
642         CFLAGS="$CFLAGS -mieee"
643         CXXFLAGS="$CXXFLAGS -mieee"
644     ;;
645     esac
646     ;;
647 *-mingw*)
648     DSO_CFLAGS=
649     DSO_PIC_CFLAGS=
650     # certain versions of cygwin's makedepend barf on the
651     # #include <string> vs -I./dist/include/string issue so don't use it
652     if test -n "$GNU_CC" -o -n "$CLANG_CC"; then
653         CC="$CC -mwindows"
654         CXX="$CXX -mwindows"
655         CPP="$CPP -mwindows"
656         CFLAGS="$CFLAGS -mms-bitfields"
657         CXXFLAGS="$CXXFLAGS -mms-bitfields"
658         DSO_LDOPTS='-shared'
659         # Use temp file for windres (bug 213281)
660         RCFLAGS='-O coff --use-temp-file'
661         # mingw doesn't require kernel32, user32, and advapi32 explicitly
662         LIBS="$LIBS -luuid -lusp10 -lgdi32 -lwinmm -lwsock32 -luserenv -lsecur32"
663         MOZ_FIX_LINK_PATHS=
665         MOZ_OPTIMIZE_FLAGS="-O1"
667         WIN32_CONSOLE_EXE_LDFLAGS=-mconsole
668         WIN32_GUI_EXE_LDFLAGS=-mwindows
670         if test -z "$CLANG_CC"; then
671             # Use static libgcc and libstdc++
672             LDFLAGS="$LDFLAGS -static"
674             # GCC/binutils can't link to a function if we try to include dllexport function
675             # in the same library as dllimport caller. To work around it, we build NSPR
676             # and NSS with -mnop-fun-dllimport flag. The drawback of this solution is that
677             # function thunks need to be generated for cross-DLL calls.
678             MOZ_FOLD_LIBS_FLAGS="-mnop-fun-dllimport"
679         else
680             # Silence problematic clang warnings
681             CXXFLAGS="$CXXFLAGS -Wno-incompatible-ms-struct"
682         fi
683     else
684         TARGET_COMPILER_ABI=msvc
685         RANLIB='echo not_ranlib'
686         STRIP='echo not_strip'
687         PKG_SKIP_STRIP=1
688         # aarch64 doesn't support subsystems below 6.02
689         if test "$CPU_ARCH" = "aarch64"; then
690             WIN32_SUBSYSTEM_VERSION=6.02
691         else
692             WIN32_SUBSYSTEM_VERSION=6.01
693         fi
694         WIN32_CONSOLE_EXE_LDFLAGS=-SUBSYSTEM:CONSOLE,$WIN32_SUBSYSTEM_VERSION
695         WIN32_GUI_EXE_LDFLAGS=-SUBSYSTEM:WINDOWS,$WIN32_SUBSYSTEM_VERSION
696         DSO_LDOPTS=-SUBSYSTEM:WINDOWS,$WIN32_SUBSYSTEM_VERSION
697         _USE_CPP_INCLUDE_FLAG=1
698         _DEFINES_CFLAGS="-FI $_objdir/mozilla-config.h -DMOZILLA_CLIENT"
699         _DEFINES_CXXFLAGS="-FI $_objdir/mozilla-config.h -DMOZILLA_CLIENT"
700         CFLAGS="$CFLAGS -W3 -Gy -Zc:inline"
701         CXXFLAGS="$CXXFLAGS -W3 -Gy -Zc:inline"
702         if test -z "$CLANG_CL"; then
703             CPPFLAGS="$CPPFLAGS -utf-8"
704         fi
705         if test "$CPU_ARCH" = "x86"; then
706             dnl VS2012+ defaults to -arch:SSE2. We want to target nothing
707             dnl more recent, so set that explicitly here unless another
708             dnl target arch has already been set.
709             changequote(,)
710             if test -z `echo $CFLAGS | grep -i [-/]arch:`; then
711               CFLAGS="$CFLAGS -arch:SSE2"
712             fi
713             if test -z `echo $CXXFLAGS | grep -i [-/]arch:`; then
714               CXXFLAGS="$CXXFLAGS -arch:SSE2"
715             fi
716             changequote([,])
717             SSE_FLAGS="-arch:SSE"
718             SSE2_FLAGS="-arch:SSE2"
719             dnl MSVC allows the use of intrinsics without any flags
720             dnl and doesn't have a separate arch for SSSE3
721             SSSE3_FLAGS="-arch:SSE2"
722         fi
723         dnl clang-cl requires appropriate flags to enable SSSE3 support
724         dnl on all architectures.
725         if test -n "$CLANG_CL"; then
726             SSSE3_FLAGS="-mssse3"
727         fi
728         dnl VS2013+ supports -Gw for better linker optimizations.
729         dnl http://blogs.msdn.com/b/vcblog/archive/2013/09/11/introducing-gw-compiler-switch.aspx
730         dnl Disabled on ASan because it causes false-positive ODR violations.
731         if test -z "$MOZ_ASAN"; then
732             CFLAGS="$CFLAGS -Gw"
733             CXXFLAGS="$CXXFLAGS -Gw"
734         else
735             # String tail merging doesn't play nice with ASan's ODR checker.
736             LDFLAGS="$LDFLAGS -opt:nolldtailmerge"
737         fi
738         if test -n "$CLANG_CL"; then
739             # XXX We should combine some of these with our generic GCC-style
740             # warning checks.
741             #
742             # Suppress the clang-cl warning for the inline 'new' and 'delete' in mozalloc
743             CXXFLAGS="$CXXFLAGS -Wno-inline-new-delete"
744             # We use offsetof on non-POD objects all the time.
745             # We also suppress this warning on other platforms.
746             CXXFLAGS="$CXXFLAGS -Wno-invalid-offsetof"
747             # This warns for reasonable things like:
748             #   enum { X = 0xffffffffU };
749             # which is annoying for IDL headers.
750             CXXFLAGS="$CXXFLAGS -Wno-microsoft-enum-value"
751             # This warns for cases that would be reached by the Microsoft
752             # #include rules, but also currently warns on cases that would
753             # *also* be reached by standard C++ include rules.  That
754             # behavior doesn't seem useful, so we turn it off.
755             CXXFLAGS="$CXXFLAGS -Wno-microsoft-include"
756             # We normally error out on unknown pragmas, but since clang-cl
757             # claims to be MSVC, it would be difficult to add
758             # #if defined(_MSC_VER) && !defined(__clang__) everywhere we
759             # use such pragmas, so just ignore them.
760             CFLAGS="$CFLAGS -Wno-unknown-pragmas"
761             CXXFLAGS="$CXXFLAGS -Wno-unknown-pragmas"
762             # We get errors about various #pragma intrinsic directives from
763             # clang-cl, and we don't need to hear about those.
764             CFLAGS="$CFLAGS -Wno-ignored-pragmas"
765             CXXFLAGS="$CXXFLAGS -Wno-ignored-pragmas"
766             # clang-cl's Intrin.h marks things like _ReadWriteBarrier
767             # as __attribute((__deprecated__)).  This is nice to know,
768             # but since we don't get the equivalent warning from MSVC,
769             # let's just ignore it.
770             CFLAGS="$CFLAGS -Wno-deprecated-declarations"
771             CXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations"
772             # We use a function like:
773             #   __declspec(noreturn) __inline void f() {}
774             # which -Winvalid-noreturn complains about.  Again, MSVC seems
775             # OK with it, so let's silence the warning.
776             CFLAGS="$CFLAGS -Wno-invalid-noreturn"
777             CXXFLAGS="$CXXFLAGS -Wno-invalid-noreturn"
778             # Missing |override| on virtual function declarations isn't
779             # something that MSVC currently warns about.
780             CXXFLAGS="$CXXFLAGS -Wno-inconsistent-missing-override"
781             # We use -DHAS_EXCEPTIONS=0, which removes the |throw()|
782             # declaration on |operator delete(void*)|.  However, clang-cl
783             # must internally declare |operator delete(void*)| differently,
784             # which causes this warning for virtually every file in the
785             # tree.  clang-cl doesn't support -fno-exceptions or equivalent,
786             # so there doesn't seem to be any way to convince clang-cl to
787             # declare |delete| differently.  Therefore, suppress this
788             # warning.
789             CXXFLAGS="$CXXFLAGS -Wno-implicit-exception-spec-mismatch"
790             # At least one MSVC header and several headers in-tree have
791             # unused typedefs, so turn this on.
792             CXXFLAGS="$CXXFLAGS -Wno-unused-local-typedef"
793             # jemalloc uses __declspec(allocator) as a profiler hint,
794             # which clang-cl doesn't understand.
795             CXXFLAGS="$CXXFLAGS -Wno-ignored-attributes"
796             # __attribute__((unused)) really means "might be unused" and
797             # we use it to avoid warnings about things that are unused
798             # in some compilation units, but used in many others.  This
799             # warning insists on complaining about the latter case, which
800             # is annoying, and rather noisy.
801             CXXFLAGS="$CXXFLAGS -Wno-used-but-marked-unused"
802         fi
803         # Silence VS2017 15.5+ TR1 deprecation warnings hit by older gtest versions
804         CXXFLAGS="$CXXFLAGS -D_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING"
805         LIBS="$LIBS kernel32.lib user32.lib gdi32.lib winmm.lib wsock32.lib advapi32.lib secur32.lib"
806         MOZ_DEBUG_LDFLAGS='-DEBUG'
807         WARNINGS_AS_ERRORS='-WX'
808         # Use a higher optimization level for clang-cl, so we can come closer
809         # to MSVC's performance numbers (see bug 1443590).
810         if test -n "$CLANG_CL"; then
811             MOZ_OPTIMIZE_FLAGS='-O2'
812         else
813             MOZ_OPTIMIZE_FLAGS='-O1 -Oi'
814         fi
815         MOZ_FIX_LINK_PATHS=
816         LDFLAGS="$LDFLAGS -LARGEADDRESSAWARE"
817         if test -z "$DEVELOPER_OPTIONS"; then
818             LDFLAGS="$LDFLAGS -RELEASE"
819         fi
820         RCFLAGS="-nologo"
821         dnl Minimum reqiurement of Gecko is VS2015 or later which supports
822         dnl both SSSE3 and SSE4.1.
823         HAVE_TOOLCHAIN_SUPPORT_MSSSE3=1
824         HAVE_TOOLCHAIN_SUPPORT_MSSE4_1=1
825         dnl allow AVX2 code from VS2015
826         HAVE_X86_AVX2=1
827     fi
828     AC_DEFINE(WIN32_LEAN_AND_MEAN)
829     dnl See http://support.microsoft.com/kb/143208 to use STL
830     AC_DEFINE(NOMINMAX)
831     BIN_SUFFIX='.exe'
832     MOZ_USER_DIR="Mozilla"
834     case "$host_os" in
835     cygwin*|msvc*|mks*)
836         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.])
837         ;;
838     esac
840     if test -n "$GNU_CC" -a -z "$CLANG_CC"; then
841         CFLAGS="$CFLAGS -fno-keep-inline-dllexport"
842         CXXFLAGS="$CXXFLAGS -fno-keep-inline-dllexport"
843     fi
845     case "$target" in
846     i*86-*)
847         if test -n "$GNU_CC"; then
848             CFLAGS="$CFLAGS -mstackrealign"
849             CXXFLAGS="$CXXFLAGS -mstackrealign"
850             LDFLAGS="$LDFLAGS -Wl,--large-address-aware"
851             if test -z "$CLANG_CC"; then
852                 LDFLAGS="$LDFLAGS -Wl,--enable-stdcall-fixup"
853             fi
854         else
855             DSO_LDOPTS="$DSO_LDOPTS -MACHINE:X86"
856             LDFLAGS="$LDFLAGS -SAFESEH"
857         fi
859         AC_DEFINE(_X86_)
860         ;;
861     x86_64-*)
862         if test -n "$_WIN32_MSVC"; then
863             DSO_LDOPTS="$DSO_LDOPTS -MACHINE:X64"
864         fi
865         AC_DEFINE(_AMD64_)
866         ;;
867     aarch64-*)
868         if test -n "$_WIN32_MSVC"; then
869             DSO_LDOPTS="$DSO_LDOPTS -MACHINE:ARM64"
870         fi
871         AC_DEFINE(_ARM64_)
872         ;;
873     *)
874         AC_DEFINE(_CPU_ARCH_NOT_DEFINED)
875         ;;
876     esac
877     ;;
879 *-netbsd*)
880     DSO_CFLAGS=''
881     CFLAGS="$CFLAGS -Dunix"
882     CXXFLAGS="$CXXFLAGS -Dunix"
883     if $CC -E - -dM </dev/null | grep __ELF__ >/dev/null; then
884         DSO_PIC_CFLAGS='-fPIC -DPIC'
885         DSO_LDOPTS='-shared'
886         MOZ_PROGRAM_LDFLAGS="$MOZ_PROGRAM_LDFLAGS -Wl,--export-dynamic"
887     else
888         DSO_PIC_CFLAGS='-fPIC -DPIC'
889         DSO_LDOPTS='-shared'
890     fi
891     # This will fail on a.out systems prior to 1.5.1_ALPHA.
892     if test "$LIBRUNPATH"; then
893         DSO_LDOPTS="-Wl,-R$LIBRUNPATH $DSO_LDOPTS"
894     fi
895     ;;
897 *-openbsd*)
898     if test -z "$X11BASE"; then
899         X11BASE=/usr/X11R6
900     fi
901     MOZ_FIX_LINK_PATHS="$MOZ_FIX_LINK_PATHS -Wl,-rpath-link,${X11BASE}/lib"
902     DSO_CFLAGS=''
903     DSO_PIC_CFLAGS='-fPIC'
904     DSO_LDOPTS='-shared -fPIC'
905     if test "$LIBRUNPATH"; then
906         DSO_LDOPTS="-R$LIBRUNPATH $DSO_LDOPTS"
907     fi
908     ;;
910 *-solaris*)
911     MOZ_FIX_LINK_PATHS="-L${DIST}/bin"
912     ;;
914 esac
916 if test -z "$MOZ_OPTIMIZE_FLAGS"; then
917     MOZ_OPTIMIZE_FLAGS="-O"
920 AC_SUBST_LIST(MMX_FLAGS)
921 AC_SUBST_LIST(SSE_FLAGS)
922 AC_SUBST_LIST(SSE2_FLAGS)
923 AC_SUBST_LIST(SSSE3_FLAGS)
925 AC_SUBST(MOZ_LINKER)
926 if test -n "$MOZ_LINKER"; then
927   AC_DEFINE(MOZ_LINKER)
928   MOZ_LINKER_EXTRACT=1
929   AC_CHECK_PROGS(XZ, xz)
932 if test -z "$COMPILE_ENVIRONMENT"; then
933     SKIP_COMPILER_CHECKS=1
934     SKIP_LIBRARY_CHECKS=1
935     PKG_SKIP_STRIP=1
936     MOZ_DEBUGGING_OPTS
937 else
938     MOZ_COMPILER_OPTS
939 fi # COMPILE_ENVIRONMENT
941 if test -z "$SKIP_COMPILER_CHECKS"; then
942 dnl Checks for typedefs, structures, and compiler characteristics.
943 dnl ========================================================
944 AC_C_CONST
945 AC_TYPE_MODE_T
946 AC_TYPE_OFF_T
947 AC_TYPE_PID_T
948 AC_TYPE_SIZE_T
949 AC_LANG_CPLUSPLUS
950 AC_LANG_C
952 AC_LANG_CPLUSPLUS
954 MOZ_CXX11
956 AC_LANG_C
958 case "${OS_TARGET}" in
959 Darwin)
960   ;;
962   STL_FLAGS="-I${DIST}/stl_wrappers"
963   WRAP_STL_INCLUDES=1
964   ;;
965 esac
967 if test "$MOZ_BUILD_APP" = "tools/crashreporter"; then
968     WRAP_STL_INCLUDES=
971 dnl Checks for header files.
972 dnl ========================================================
973 AC_HEADER_DIRENT
974 case "$target_os" in
975 bitrig*|dragonfly*|freebsd*|openbsd*)
976 # for stuff like -lXshm
977     CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}"
978     ;;
979 esac
981 dnl Check for sin_len and sin6_len - used by SCTP; only appears in Mac/*BSD generally
982 AC_CACHE_CHECK(for sockaddr_in.sin_len,
983                    ac_cv_sockaddr_in_sin_len,
984                    [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
985                                     #include <sys/types.h>
986                                     #endif
987                                     #include <netinet/in.h>
988                                     struct sockaddr_in x;
989                                     void *foo = (void*) &x.sin_len;],
990                                    [],
991                                    [ac_cv_sockaddr_in_sin_len=true],
992                                    [ac_cv_sockaddr_in_sin_len=false])])
993 if test "$ac_cv_sockaddr_in_sin_len" = true ; then
994   AC_DEFINE(HAVE_SIN_LEN)
995 dnl HAVE_CONN_LEN must be the same as HAVE_SIN_LEN (and HAVE_SIN6_LEN too)
996   AC_DEFINE(HAVE_SCONN_LEN)
999 AC_CACHE_CHECK(for sockaddr_in6.sin6_len,
1000                ac_cv_sockaddr_in6_sin6_len,
1001                [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
1002                                 #include <sys/types.h>
1003                                 #endif
1004                                 #include <netinet/in.h>
1005                                 struct sockaddr_in6 x;
1006                                 void *foo = (void*) &x.sin6_len;],
1007                                [],
1008                                [ac_cv_sockaddr_in6_sin6_len=true],
1009                                [ac_cv_sockaddr_in6_sin6_len=false])])
1010 if test "$ac_cv_sockaddr_in6_sin6_len" = true ; then
1011   AC_DEFINE(HAVE_SIN6_LEN)
1014 AC_CACHE_CHECK(for sockaddr.sa_len,
1015                ac_cv_sockaddr_sa_len,
1016                [AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
1017                                 #include <sys/types.h>
1018                                 #endif
1019                                 #include <sys/socket.h>
1020                                 struct sockaddr x;
1021                                 void *foo = (void*) &x.sa_len;],
1022                                [],
1023                                [ac_cv_sockaddr_sa_len=true],
1024                                [ac_cv_sockaddr_sa_len=false])])
1025 if test "$ac_cv_sockaddr_sa_len" = true ; then
1026   AC_DEFINE(HAVE_SA_LEN)
1029 MOZ_ARG_ENABLE_BOOL(dtrace,
1030               [  --enable-dtrace         build with dtrace support if available (default=no)],
1031               [enable_dtrace="yes"],)
1032 if test "x$enable_dtrace" = "xyes"; then
1033   MOZ_CHECK_HEADER(sys/sdt.h, HAVE_DTRACE=1)
1034   if test -n "$HAVE_DTRACE"; then
1035       AC_DEFINE(INCLUDE_MOZILLA_DTRACE)
1036   else
1037       AC_MSG_ERROR([dtrace enabled but sys/sdt.h not found]);
1038   fi
1040 AC_SUBST(HAVE_DTRACE)
1042 dnl Checks for libraries.
1043 dnl ========================================================
1044 AC_CHECK_LIB(c_r, gethostbyname_r)
1046 dnl We don't want to link with libdl even if it's present on OS X, since
1047 dnl it's not used and not part of the default installation. OS/2 has dlfcn
1048 dnl in libc.
1049 dnl We don't want to link against libm or libpthread on Darwin since
1050 dnl they both are just symlinks to libSystem and explicitly linking
1051 dnl against libSystem causes issues when debugging (see bug 299601).
1052 case $target in
1053 *-darwin*)
1054     ;;
1056     AC_SEARCH_LIBS(dlopen, dl,
1057         MOZ_CHECK_HEADER(dlfcn.h,
1058         AC_DEFINE(HAVE_DLOPEN)))
1059     ;;
1060 esac
1062 _SAVE_CFLAGS="$CFLAGS"
1063 CFLAGS="$CFLAGS -D_GNU_SOURCE"
1064 AC_CHECK_FUNCS(dladdr memmem)
1065 CFLAGS="$_SAVE_CFLAGS"
1067 if test ! "$GNU_CXX"; then
1068     AC_CHECK_LIB(C, demangle)
1071 AC_CHECK_LIB(socket, socket)
1073 XLDFLAGS="$X_LIBS"
1074 XLIBS="$X_EXTRA_LIBS"
1076 dnl ========================================================
1077 dnl Checks for X libraries.
1078 dnl Ordering is important.
1079 dnl Xt is dependent upon SM as of X11R6
1080 dnl ========================================================
1081 if test -n "$MOZ_X11"; then
1082     AC_DEFINE_UNQUOTED(FUNCPROTO,15)
1083     _SAVE_LDFLAGS="$LDFLAGS"
1084     _SAVE_LIBS="$LIBS"
1085     LDFLAGS="$XLDFLAGS $LDFLAGS"
1086     AC_CHECK_LIB(X11, XDrawLines, [XLIBS="-lX11 $XLIBS"],
1087         [MISSING_X="$MISSING_X -lX11"], $XLIBS)
1088     AC_CHECK_LIB(Xext, XextAddDisplay, [XEXT_LIBS="-lXext"],
1089         [MISSING_X="$MISSING_X -lXext"], $XLIBS)
1091     AC_CHECK_LIB(Xt, XtFree, [ XT_LIBS="-lXt"], [
1092         unset ac_cv_lib_Xt_XtFree
1093         AC_CHECK_LIB(ICE, IceFlush, [XT_LIBS="-lICE $XT_LIBS"],, $XT_LIBS $XLIBS)
1094         AC_CHECK_LIB(SM, SmcCloseConnection, [XT_LIBS="-lSM $XT_LIBS"],, $XT_LIBS $XLIBS)
1095         AC_CHECK_LIB(Xt, XtFree, [ XT_LIBS="-lXt $XT_LIBS"],
1096             [MISSING_X="$MISSING_X -lXt"], $X_PRE_LIBS $XT_LIBS $XLIBS)
1097         ])
1099     dnl ========================================================
1100     dnl = Check for xcb
1101     dnl ========================================================
1102     AC_CHECK_LIB(xcb, xcb_connect, [XLIBS="-lxcb $XLIBS"],
1103         [MISSING_X="$MISSING_X -lxcb"], $XLIBS)
1104     AC_CHECK_LIB(xcb-shm, xcb_shm_query_version, [XLIBS="-lxcb-shm $XLIBS"],
1105         [MISSING_X="$MISSING_X -lxcb-shm"], $XLIBS)
1106     AC_CHECK_LIB(X11-xcb, XGetXCBConnection, [XLIBS="-lX11-xcb $XLIBS"],
1107         [MISSING_X="$MISSING_X -lX11-xcb"], $XLIBS)
1109     LDFLAGS="$_SAVE_LDFLAGS"
1110     LIBS="$_SAVE_LIBS"
1111 fi # $MOZ_X11
1113 AC_SUBST_LIST(XCFLAGS)
1114 AC_SUBST_LIST(XLDFLAGS)
1115 AC_SUBST_LIST(XLIBS)
1116 AC_SUBST_LIST(XEXT_LIBS)
1117 AC_SUBST_LIST(XT_LIBS)
1119 dnl ========================================================
1120 dnl = pthread support
1121 dnl = Start by checking whether the system support pthreads
1122 dnl ========================================================
1123 case "$target_os" in
1124 darwin*)
1125     MOZ_USE_PTHREADS=1
1126     ;;
1128     AC_CHECK_LIB(pthreads, pthread_create,
1129         MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lpthreads",
1130         AC_CHECK_LIB(pthread, pthread_create,
1131             MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lpthread",
1132             AC_CHECK_LIB(c_r, pthread_create,
1133                 MOZ_USE_PTHREADS=1 _PTHREAD_LDFLAGS="-lc_r",
1134                 AC_CHECK_LIB(c, pthread_create,
1135                     MOZ_USE_PTHREADS=1
1136                 )
1137             )
1138         )
1139     )
1140     ;;
1141 esac
1143 dnl ========================================================
1144 dnl Do the platform specific pthread hackery
1145 dnl ========================================================
1146 if test "$MOZ_USE_PTHREADS"x != x
1147 then
1148     dnl
1149     dnl See if -pthread is supported.
1150     dnl
1151     rm -f conftest*
1152     ac_cv_have_dash_pthread=no
1153     AC_MSG_CHECKING(whether ${CC-cc} accepts -pthread)
1154     echo 'int main() { return 0; }' | cat > conftest.c
1155     ${CC-cc} -pthread -o conftest conftest.c > conftest.out 2>&1
1156     if test $? -eq 0; then
1157         if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthread`" -a -z "`egrep -i '(error|incorrect)' conftest.out`" ; then
1158             ac_cv_have_dash_pthread=yes
1159             case "$target_os" in
1160             freebsd*)
1161 # Freebsd doesn't use -pthread for compiles, it uses them for linking
1162                 ;;
1163             *)
1164                 CFLAGS="$CFLAGS -pthread"
1165                 CXXFLAGS="$CXXFLAGS -pthread"
1166                 ;;
1167             esac
1168         fi
1169     fi
1170     rm -f conftest*
1171     AC_MSG_RESULT($ac_cv_have_dash_pthread)
1173     dnl
1174     dnl See if -pthreads is supported.
1175     dnl
1176     ac_cv_have_dash_pthreads=no
1177     if test "$ac_cv_have_dash_pthread" = "no"; then
1178         AC_MSG_CHECKING(whether ${CC-cc} accepts -pthreads)
1179         echo 'int main() { return 0; }' | cat > conftest.c
1180         ${CC-cc} -pthreads -o conftest conftest.c > conftest.out 2>&1
1181         if test $? -eq 0; then
1182             if test -z "`egrep -i '(unrecognize|unknown)' conftest.out | grep pthreads`" -a -z "`egrep -i '(error|incorrect)' conftest.out`" ; then
1183                 ac_cv_have_dash_pthreads=yes
1184                 CFLAGS="$CFLAGS -pthreads"
1185                 CXXFLAGS="$CXXFLAGS -pthreads"
1186             fi
1187         fi
1188         rm -f conftest*
1189         AC_MSG_RESULT($ac_cv_have_dash_pthreads)
1190     fi
1192     case "$target" in
1193         *-*-freebsd*)
1194             AC_DEFINE(_REENTRANT)
1195             AC_DEFINE(_THREAD_SAFE)
1196             dnl -pthread links in -lpthread, so don't specify it explicitly.
1197             if test "$ac_cv_have_dash_pthread" = "yes"; then
1198                 _PTHREAD_LDFLAGS="-pthread"
1199             fi
1200             ;;
1202         *-*-openbsd*|*-*-bsdi*)
1203             AC_DEFINE(_REENTRANT)
1204             AC_DEFINE(_THREAD_SAFE)
1205             dnl -pthread links in -lc_r, so don't specify it explicitly.
1206             if test "$ac_cv_have_dash_pthread" = "yes"; then
1207                 _PTHREAD_LDFLAGS="-pthread"
1208             fi
1209             ;;
1211         *-*-linux*|*-*-kfreebsd*-gnu|*-*-gnu*)
1212             AC_DEFINE(_REENTRANT)
1213             ;;
1215     esac
1216     LDFLAGS="${_PTHREAD_LDFLAGS} ${LDFLAGS}"
1217     AC_SUBST(MOZ_USE_PTHREADS)
1218     MOZ_CHECK_HEADERS(pthread.h)
1222 dnl Checks for library functions.
1223 dnl ========================================================
1224 AC_CHECK_FUNCS(stat64 lstat64 truncate64 statvfs64 statvfs statfs64 statfs getpagesize gmtime_r localtime_r arc4random arc4random_buf mallinfo gettid lchown setpriority strerror syscall)
1226 dnl check for clock_gettime(), the CLOCK_MONOTONIC clock
1227 AC_CACHE_CHECK(for clock_gettime(CLOCK_MONOTONIC),
1228                ac_cv_clock_monotonic,
1229                [for libs in "" -lrt; do
1230                     _SAVE_LIBS="$LIBS"
1231                     _SAVE_CFLAGS="$CFLAGS"
1232                     LIBS="$LIBS $libs"
1233                     CFLAGS="$CFLAGS $DSO_PIC_CFLAGS"
1234 dnl clock_gettime is available on OSX since 10.12, so depending on MACOSX_DEPLOYMENT_TARGET,
1235 dnl we should or not be able to use it. To detect if we can, we need to make the
1236 dnl availability attribute strict, so that compilation fails when the target is < 10.12.
1237                     AC_TRY_LINK([#define availability(os, ...) availability(os, strict, __VA_ARGS)
1238                                  #include <time.h>],
1239                                  [ struct timespec ts;
1240                                    clock_gettime(CLOCK_MONOTONIC, &ts); ],
1241                                  ac_cv_clock_monotonic=$libs
1242                                  LIBS="$_SAVE_LIBS"
1243                                  break,
1244                                  ac_cv_clock_monotonic=no)
1245                     LIBS="$_SAVE_LIBS"
1246                     CFLAGS="$_SAVE_CFLAGS"
1247                 done])
1248 if test "$ac_cv_clock_monotonic" != "no"; then
1249     HAVE_CLOCK_MONOTONIC=1
1250     REALTIME_LIBS=$ac_cv_clock_monotonic
1251     AC_DEFINE(HAVE_CLOCK_MONOTONIC)
1252     AC_SUBST(HAVE_CLOCK_MONOTONIC)
1253     AC_SUBST_LIST(REALTIME_LIBS)
1256 dnl Turn on warnings-as-errors to prevent implicit declaration of
1257 dnl pthread_cond_timedwait_monotonic_np, which can cause this test to
1258 dnl inadvertently pass even if the function does not really exist.
1259 _SAVE_CFLAGS="$CFLAGS"
1260 CFLAGS="$CFLAGS $WARNINGS_AS_ERRORS"
1261 AC_CACHE_CHECK(for pthread_cond_timedwait_monotonic_np,
1262                ac_cv_pthread_cond_timedwait_monotonic_np,
1263                AC_TRY_LINK([#include <pthread.h>],
1264                            [pthread_cond_timedwait_monotonic_np(0, 0, 0);],
1265                            ac_cv_pthread_cond_timewait_monotonic_np=yes,
1266                            ac_cv_pthread_cond_timewait_monotonic_np=no))
1267 if test "$ac_cv_pthread_cond_timewait_monotonic_np" != "no"; then
1268     AC_DEFINE(HAVE_PTHREAD_COND_TIMEDWAIT_MONOTONIC)
1270 CFLAGS=$_SAVE_CFLAGS
1272 AC_CACHE_CHECK(
1273     [for res_ninit()],
1274     ac_cv_func_res_ninit,
1275     [if test "$OS_TARGET" = NetBSD -o "$OS_TARGET" = OpenBSD; then
1276         dnl no need for res_ninit() on NetBSD and OpenBSD
1277         ac_cv_func_res_ninit=no
1278      else
1279         AC_TRY_LINK([
1280             #ifdef linux
1281             #define _BSD_SOURCE 1
1282             #endif
1283             #include <sys/types.h>
1284             #include <netinet/in.h>
1285             #include <arpa/nameser.h>
1286             #include <resolv.h>
1287             ],
1288             [int foo = res_ninit(&_res);],
1289             [ac_cv_func_res_ninit=yes],
1290             [ac_cv_func_res_ninit=no])
1291      fi
1292     ])
1294 if test "$ac_cv_func_res_ninit" = "yes"; then
1295     AC_DEFINE(HAVE_RES_NINIT)
1296 dnl must add the link line we do something as foolish as this... dougt
1297 dnl else
1298 dnl    AC_CHECK_LIB(bind, res_ninit, AC_DEFINE(HAVE_RES_NINIT),
1299 dnl        AC_CHECK_LIB(resolv, res_ninit, AC_DEFINE(HAVE_RES_NINIT)))
1302 AC_LANG_C
1304 dnl **********************
1305 dnl *** va_copy checks ***
1306 AC_CACHE_CHECK([for an implementation of va_copy()],
1307                ac_cv_va_copy,
1308     [AC_TRY_COMPILE([#include <stdarg.h>
1309                      #include <stdlib.h>
1310         void f (int i, ...) {
1311             va_list args1, args2;
1312             va_start (args1, i);
1313             va_copy (args2, args1);
1314             if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1315                 exit (1);
1316             va_end (args1); va_end (args2);
1317         }],
1318         [f(0, 42); return 0],
1319         [ac_cv_va_copy=yes],
1320         [ac_cv_va_copy=no]
1321     )]
1323 AC_CACHE_CHECK([whether va_list can be copied by value],
1324                ac_cv_va_val_copy,
1325     [AC_TRY_COMPILE([#include <stdarg.h>
1326                      #include <stdlib.h>
1327         void f (int i, ...) {
1328             va_list args1, args2;
1329             va_start (args1, i);
1330             args2 = args1;
1331             if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
1332                 exit (1);
1333             va_end (args1); va_end (args2);
1334         }],
1335         [f(0, 42); return 0],
1336         [ac_cv_va_val_copy=yes],
1337         [ac_cv_va_val_copy=no],
1338     )]
1340 if test "x$ac_cv_va_copy" = "xyes"; then
1341     AC_DEFINE(VA_COPY, va_copy)
1342     AC_DEFINE(HAVE_VA_COPY)
1345 if test "x$ac_cv_va_val_copy" = "xno"; then
1346    AC_DEFINE(HAVE_VA_LIST_AS_ARRAY)
1349 dnl ===================================================================
1350 dnl ========================================================
1351 dnl Put your C++ language/feature checks below
1352 dnl ========================================================
1353 AC_LANG_CPLUSPLUS
1355 ARM_ABI_PREFIX=
1356 if test "$GNU_CC"; then
1357   if test "$CPU_ARCH" = "arm" ; then
1358     AC_CACHE_CHECK(for ARM EABI,
1359         ac_cv_gcc_arm_eabi,
1360         [AC_TRY_COMPILE([],
1361                         [
1362 #if defined(__ARM_EABI__)
1363   return 0;
1364 #else
1365 #error Not ARM EABI.
1366 #endif
1367                         ],
1368                         ac_cv_gcc_arm_eabi="yes",
1369                         ac_cv_gcc_arm_eabi="no")])
1370     if test "$ac_cv_gcc_arm_eabi" = "yes"; then
1371         HAVE_ARM_EABI=1
1372         ARM_ABI_PREFIX=eabi-
1373     else
1374         ARM_ABI_PREFIX=oabi-
1375     fi
1376   fi
1378   TARGET_COMPILER_ABI="${TARGET_COMPILER_ABI-${ARM_ABI_PREFIX}gcc3}"
1381 # try harder, when checking for __thread support, see bug 521750 comment #33 and below
1382 # We pass MOZ_OPTIMIZE_LDFLAGS to the linker because if dead_strip is
1383 # enabled, the linker in xcode 4.1 will crash. Without this it would crash when
1384 # linking XUL.
1385 _SAVE_LDFLAGS=$LDFLAGS
1386 LDFLAGS="$LDFLAGS $DSO_PIC_CFLAGS $DSO_LDOPTS $MOZ_OPTIMIZE_LDFLAGS"
1387 AC_CACHE_CHECK(for __thread keyword for TLS variables,
1388                ac_cv_thread_keyword,
1389                [AC_TRY_LINK([__thread bool tlsIsMainThread = false;],
1390                             [return tlsIsMainThread;],
1391                             ac_cv_thread_keyword=yes,
1392                             ac_cv_thread_keyword=no)])
1393 LDFLAGS=$_SAVE_LDFLAGS
1394 # The custom dynamic linker doesn't support TLS variables
1395 MOZ_TLS=
1396 if test "$ac_cv_thread_keyword" = yes -a "$MOZ_LINKER" != 1; then
1397   # mips builds fail with TLS variables because of a binutils bug.
1398   # See bug 528687
1399   # OpenBSD doesn't have TLS support, and the test succeeds with clang++
1400   case "${target}" in
1401     mips*-*)
1402       :
1403       ;;
1404     *-android*|*-linuxandroid*)
1405       :
1406       ;;
1407     *-openbsd*)
1408       :
1409       ;;
1410     *)
1411       AC_DEFINE(HAVE_THREAD_TLS_KEYWORD)
1412       MOZ_TLS=1
1413       ;;
1414   esac
1417 dnl Using the custom linker on ARMv6 requires 16k alignment of ELF segments.
1418 if test -n "$MOZ_LINKER"; then
1419   if test "$CPU_ARCH" = arm; then
1420     dnl When building for < ARMv7, we need to ensure 16k alignment of ELF segments
1421     if test -n "$ARM_ARCH" && test "$ARM_ARCH" -lt 7; then
1422       LDFLAGS="$LDFLAGS -Wl,-z,max-page-size=0x4000 -Wl,-z,common-page-size=0x4000"
1423       _SUBDIR_LDFLAGS="$_SUBDIR_LDFLAGS -Wl,-z,max-page-size=0x4000 -Wl,-z,common-page-size=0x4000"
1424     fi
1425   fi
1427 dnl gold emits wrong sysv-style elf hash tables when building both sysv and
1428 dnl style tables. https://sourceware.org/bugzilla/show_bug.cgi?id=13597
1429 dnl Since the linker only understands the sysv ones, no need to build the
1430 dnl gnu style tables anyways.
1431   LDFLAGS="$LDFLAGS -Wl,--hash-style=sysv"
1434 dnl End of C++ language/feature checks
1435 AC_LANG_C
1437 dnl ========================================================
1438 dnl =  Internationalization checks
1439 dnl ========================================================
1441 dnl Internationalization and Locale support is different
1442 dnl on various UNIX platforms.  Checks for specific i18n
1443 dnl features go here.
1445 AC_HAVE_FUNCS(localeconv)
1447 fi # ! SKIP_COMPILER_CHECKS
1449 if test -n "${COMPILE_ENVIRONMENT}"; then
1450   MOZ_CHECK_ALLOCATOR
1453 TARGET_XPCOM_ABI=
1454 if test -n "${CPU_ARCH}" -a -n "${TARGET_COMPILER_ABI}"; then
1455     TARGET_XPCOM_ABI="${CPU_ARCH}-${TARGET_COMPILER_ABI}"
1456     AC_DEFINE_UNQUOTED(TARGET_XPCOM_ABI, ["${TARGET_XPCOM_ABI}"])
1459 dnl We can't run TRY_COMPILE tests on Windows, so hard-code some
1460 dnl features that Windows actually does support.
1462 if test -n "$SKIP_COMPILER_CHECKS"; then
1463    dnl Windows has malloc.h
1464    AC_DEFINE(MALLOC_H, [<malloc.h>])
1465    AC_DEFINE(HAVE_FORCEINLINE)
1466    AC_DEFINE(HAVE_LOCALECONV)
1467 fi # SKIP_COMPILER_CHECKS
1469 dnl Mozilla specific options
1470 dnl ========================================================
1471 dnl The macros used for command line options
1472 dnl are defined in build/autoconf/altoptions.m4.
1474 dnl ========================================================
1475 dnl =
1476 dnl = Check for external package dependencies
1477 dnl =
1478 dnl ========================================================
1479 MOZ_ARG_HEADER(External Packages)
1481 case "$OS_TARGET" in
1482 WINNT|Darwin|Android)
1483   MOZ_FOLD_LIBS=1
1484   ;;
1486   MOZ_FOLD_LIBS=
1487   ;;
1488 esac
1490 MOZ_CONFIG_NSPR()
1492 dnl ========================================================
1493 dnl system libevent Support
1494 dnl ========================================================
1495 MOZ_ARG_WITH_STRING(system-libevent,
1496 [  --with-system-libevent[=PFX]
1497                           Use system libevent [installed at prefix PFX]],
1498     LIBEVENT_DIR=$withval)
1500 _SAVE_CFLAGS=$CFLAGS
1501 _SAVE_LDFLAGS=$LDFLAGS
1502 _SAVE_LIBS=$LIBS
1503 if test "$LIBEVENT_DIR" = yes; then
1504     PKG_CHECK_MODULES(MOZ_LIBEVENT, libevent,
1505         MOZ_SYSTEM_LIBEVENT=1,
1506         LIBEVENT_DIR=/usr)
1508 if test -z "$LIBEVENT_DIR" -o "$LIBEVENT_DIR" = no; then
1509     MOZ_SYSTEM_LIBEVENT=
1510 elif test -z "$MOZ_SYSTEM_LIBEVENT"; then
1511     CFLAGS="-I${LIBEVENT_DIR}/include $CFLAGS"
1512     LDFLAGS="-L${LIBEVENT_DIR}/lib $LDFLAGS"
1513     MOZ_CHECK_HEADER(event.h,
1514         [if test ! -f "${LIBEVENT_DIR}/include/event.h"; then
1515              AC_MSG_ERROR([event.h found, but is not in ${LIBEVENT_DIR}/include])
1516          fi],
1517         AC_MSG_ERROR([--with-system-libevent requested but event.h not found]))
1518     AC_CHECK_LIB(event, event_init,
1519                  [MOZ_SYSTEM_LIBEVENT=1
1520                   MOZ_LIBEVENT_CFLAGS="-I${LIBEVENT_DIR}/include"
1521                   MOZ_LIBEVENT_LIBS="-L${LIBEVENT_DIR}/lib -levent"],
1522                  [MOZ_SYSTEM_LIBEVENT= MOZ_LIBEVENT_CFLAGS= MOZ_LIBEVENT_LIBS=])
1524 CFLAGS=$_SAVE_CFLAGS
1525 LDFLAGS=$_SAVE_LDFLAGS
1526 LIBS=$_SAVE_LIBS
1528 AC_SUBST(MOZ_SYSTEM_LIBEVENT)
1530 dnl ========================================================
1531 dnl = If NSS was not detected in the system,
1532 dnl = use the one in the source tree (mozilla/security/nss)
1533 dnl ========================================================
1535 MOZ_ARG_WITH_BOOL(system-nss,
1536 [  --with-system-nss       Use system installed NSS],
1537     _USE_SYSTEM_NSS=1 )
1539 if test -n "$_USE_SYSTEM_NSS"; then
1540     AM_PATH_NSS(3.46, [MOZ_SYSTEM_NSS=1], [AC_MSG_ERROR([you don't have NSS installed or your version is too old])])
1543 NSS_CFLAGS="$NSS_CFLAGS -I${DIST}/include/nss"
1544 if test -z "$MOZ_SYSTEM_NSS"; then
1545    case "${OS_ARCH}" in
1546         # Only few platforms have been tested with GYP
1547         WINNT|Darwin|Linux|DragonFly|FreeBSD|NetBSD|OpenBSD|SunOS)
1548             ;;
1549         *)
1550             AC_MSG_ERROR([building in-tree NSS is not supported on this platform. Use --with-system-nss])
1551             ;;
1552    esac
1555 dnl system ZLIB support
1556 dnl ========================================================
1557 MOZ_ZLIB_CHECK([1.2.3])
1559 if test -z "$SKIP_LIBRARY_CHECKS"; then
1561 dnl ========================================================
1562 dnl system PNG Support
1563 dnl ========================================================
1564 MOZ_ARG_WITH_STRING(system-png,
1565 [  --with-system-png[=PFX]
1566                           Use system libpng [installed at prefix PFX]],
1567     PNG_DIR=$withval)
1569 _SAVE_CFLAGS=$CFLAGS
1570 _SAVE_LDFLAGS=$LDFLAGS
1571 _SAVE_LIBS=$LIBS
1572 if test -n "${PNG_DIR}" -a "${PNG_DIR}" != "yes"; then
1573     CFLAGS="-I${PNG_DIR}/include $CFLAGS"
1574     LDFLAGS="-L${PNG_DIR}/lib $LDFLAGS"
1576 if test -z "$PNG_DIR" -o "$PNG_DIR" = no; then
1577     MOZ_SYSTEM_PNG=
1578 else
1579     AC_CHECK_LIB(png, png_get_valid, [MOZ_SYSTEM_PNG=1 MOZ_PNG_LIBS="-lpng"],
1580                  AC_MSG_ERROR([--with-system-png requested but no working libpng found]))
1581     AC_CHECK_LIB(png, png_get_acTL, ,
1582                  AC_MSG_ERROR([--with-system-png won't work because the system's libpng doesn't have APNG support]))
1584 if test "$MOZ_SYSTEM_PNG" = 1; then
1585     AC_TRY_COMPILE([ #include <stdio.h>
1586                      #include <sys/types.h>
1587                      #include <png.h> ],
1588                    [ #if PNG_LIBPNG_VER < $MOZPNG
1589                      #error "Insufficient libpng version ($MOZPNG required)."
1590                      #endif
1591                      #ifndef PNG_UINT_31_MAX
1592                      #error "Insufficient libpng version."
1593                      #endif ],
1594                    MOZ_SYSTEM_PNG=1,
1595                    AC_MSG_ERROR([--with-system-png requested but no working libpng found]))
1597 CFLAGS=$_SAVE_CFLAGS
1598 LDFLAGS=$_SAVE_LDFLAGS
1599 LIBS=$_SAVE_LIBS
1601 if test "${PNG_DIR}" -a -d "${PNG_DIR}" -a "$MOZ_SYSTEM_PNG" = 1; then
1602     MOZ_PNG_CFLAGS="-I${PNG_DIR}/include"
1603     MOZ_PNG_LIBS="-L${PNG_DIR}/lib ${MOZ_PNG_LIBS}"
1606 fi # SKIP_LIBRARY_CHECKS
1608 dnl ========================================================
1609 dnl =
1610 dnl = Application
1611 dnl =
1612 dnl ========================================================
1614 MOZ_ARG_HEADER(Application)
1616 ENABLE_SYSTEM_EXTENSION_DIRS=1
1617 MOZ_BRANDING_DIRECTORY=
1618 MOZ_OFFICIAL_BRANDING=
1619 MOZ_AUTH_EXTENSION=1
1620 if test "$MOZ_IOS"; then
1621    MOZ_AUTH_EXTENSION=
1623 MOZ_PREF_EXTENSIONS=1
1624 MOZ_SPELLCHECK=1
1625 MOZ_UNIVERSALCHARDET=1
1626 MOZ_XUL=1
1627 MOZ_ZIPWRITER=1
1628 MOZ_NO_SMART_CARDS=
1629 NECKO_COOKIES=1
1630 MOZ_USE_NATIVE_POPUP_WINDOWS=
1631 MOZ_EXCLUDE_HYPHENATION_DICTIONARIES=
1632 MOZ_SANDBOX=1
1633 MOZ_BINARY_EXTENSIONS=
1634 MOZ_DEVTOOLS=server
1636 case "$target_os" in
1637     mingw*)
1638         NS_ENABLE_TSF=1
1639         AC_DEFINE(NS_ENABLE_TSF)
1640         ;;
1641 esac
1643 # Optional Firefox for Android partner distribution directory.
1644 MOZ_ARG_WITH_STRING(android-distribution-directory,
1645 [  --with-android-distribution-directory=dir
1646                           Optional Firefox for Android partner distribution directory.],
1647   MOZ_ANDROID_DISTRIBUTION_DIRECTORY=$withval)
1649 if test -n "$MOZ_ANDROID_DISTRIBUTION_DIRECTORY"; then
1650   # A distribution directory must have an assets/distribution directory.
1651   # See https://wiki.mozilla.org/Mobile/Distribution_Files.
1652   if test ! -d "$MOZ_ANDROID_DISTRIBUTION_DIRECTORY/assets/distribution" ; then
1653     AC_MSG_ERROR([--with-android-distribution-directory does not contain assets/distribution;
1654                   (looked for ${MOZ_ANDROID_DISTRIBUTION_DIRECTORY}/assets/distribution).])
1655   fi
1657 AC_SUBST(MOZ_ANDROID_DISTRIBUTION_DIRECTORY)
1659 dnl ========================================================
1660 dnl = Trademarked Branding
1661 dnl ========================================================
1662 MOZ_ARG_ENABLE_BOOL(official-branding,
1663 [  --enable-official-branding
1664                           Enable Official mozilla.org Branding
1665                           Do not distribute builds with
1666                           --enable-official-branding unless you have
1667                           permission to use trademarks per
1668                           http://www.mozilla.org/foundation/trademarks/ .],
1669     MOZ_OFFICIAL_BRANDING=1,
1670     MOZ_OFFICIAL_BRANDING=)
1672 # Allow the application to influence configure with a confvars.sh script.
1673 AC_MSG_CHECKING([if app-specific confvars.sh exists])
1674 if test -f "${srcdir}/${MOZ_BUILD_APP}/confvars.sh" ; then
1675   AC_MSG_RESULT([${srcdir}/${MOZ_BUILD_APP}/confvars.sh])
1676   . "${srcdir}/${MOZ_BUILD_APP}/confvars.sh"
1677 else
1678   AC_MSG_RESULT([no])
1681 # Allow influencing configure with a defines.sh script.
1682 . "${srcdir}/build/defines.sh"
1684 # If we're not building a release build, define EARLY_BETA_OR_EARLIER if it is
1685 # set in defines.sh
1686 if test "$BUILDING_RELEASE"; then
1687   # Override value in defines.sh, if any
1688   EARLY_BETA_OR_EARLIER=
1689 elif test "$EARLY_BETA_OR_EARLIER"; then
1690   AC_DEFINE(EARLY_BETA_OR_EARLIER)
1692 AC_SUBST(EARLY_BETA_OR_EARLIER)
1694 # Allow someone to change MOZ_APP_NAME and MOZ_APP_BASENAME in mozconfig
1695 MOZ_ARG_WITH_STRING(app-name,
1696 [--with-app-name=APPNAME sets MOZ_APP_NAME to APPNAME],
1697 WITH_APP_NAME=$withval,
1700 if test -n "$WITH_APP_NAME" ; then
1701     MOZ_APP_NAME="$WITH_APP_NAME"
1704 MOZ_ARG_WITH_STRING(app-basename,
1705 [--with-app-basename=BASENAME sets MOZ_APP_BASENAME to BASENAME],
1706 WITH_APP_BASENAME=$withval,
1709 if test -n "$WITH_APP_BASENAME" ; then
1710     MOZ_APP_BASENAME="$WITH_APP_BASENAME"
1713 # Special cases where we need to AC_DEFINE something. Also a holdover for apps
1714 # that haven't made a confvars.sh yet. Don't add new stuff here, use
1715 # MOZ_BUILD_APP.
1716 case "$MOZ_BUILD_APP" in
1717 browser)
1718   AC_DEFINE(MOZ_PHOENIX)
1719   ;;
1720 esac
1722 # Graphene is a desktop runtime for running applications with a HTML UI.
1723 if test -n "$MOZ_GRAPHENE"; then
1724     AC_DEFINE(MOZ_GRAPHENE)
1727 AC_SUBST(MOZ_PHOENIX)
1729 dnl ========================================================
1730 dnl Ensure Android SDK and build-tools versions depending on
1731 dnl mobile target.
1732 dnl ========================================================
1734 case "$MOZ_BUILD_APP" in
1735 mobile/android)
1736     MOZ_ANDROID_SDK
1737     ;;
1738 esac
1740 dnl ========================================================
1741 dnl =
1742 dnl = Toolkit Options
1743 dnl =
1744 dnl ========================================================
1745 MOZ_ARG_HEADER(Toolkit Options)
1747 dnl ========================================================
1748 dnl = Enable the toolkit as needed                         =
1749 dnl ========================================================
1751 case "$MOZ_WIDGET_TOOLKIT" in
1753 cocoa)
1754     LDFLAGS="$LDFLAGS -framework Cocoa"
1755     # Use -Wl as a trick to avoid -framework and framework names from
1756     # being separated by AC_SUBST_LIST.
1757     TK_LIBS='-Wl,-framework,Foundation -Wl,-framework,CoreFoundation -Wl,-framework,CoreLocation -Wl,-framework,QuartzCore -Wl,-framework,Carbon -Wl,-framework,CoreAudio -Wl,-framework,CoreVideo -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit -Wl,-framework,AddressBook -Wl,-framework,OpenGL -Wl,-framework,Security -Wl,-framework,ServiceManagement -Wl,-framework,CoreServices -Wl,-framework,ApplicationServices -Wl,-framework,AppKit'
1758     TK_CFLAGS=""
1759     CFLAGS="$CFLAGS $TK_CFLAGS"
1760     CXXFLAGS="$CXXFLAGS $TK_CFLAGS"
1761     MOZ_USER_DIR="Mozilla"
1762     MOZ_FS_LAYOUT=bundle
1763     ;;
1765 uikit)
1766     LDFLAGS="$LDFLAGS -framework UIKit"
1767     TK_CFLAGS=""
1768     TK_LIBS='-Wl,-framework,Foundation -Wl,-framework,CoreFoundation -Wl,-framework,CoreGraphics -Wl,-framework,CoreText -Wl,-framework,AVFoundation -Wl,-framework,AudioToolbox -Wl,-framework,CoreMedia -Wl,-framework,CoreVideo -Wl,-framework,OpenGLES -Wl,-framework,QuartzCore'
1769     CFLAGS="$CFLAGS $TK_CFLAGS"
1770     CXXFLAGS="$CXXFLAGS $TK_CFLAGS"
1771     MOZ_USER_DIR="Mozilla"
1772     MOZ_FS_LAYOUT=bundle
1773     ;;
1775 esac
1777 if test "$OS_TARGET" = Darwin; then
1778     LDFLAGS="$LDFLAGS -lobjc"
1781 dnl there are a lot of tests on MOZ_ENABLE_GTK below, that are more convenient
1782 dnl to keep that way than testing against MOZ_WIDGET_TOOLKIT
1783 case "$MOZ_WIDGET_TOOLKIT" in
1784 gtk*)
1785     MOZ_ENABLE_GTK=1
1786     ;;
1787 esac
1789 if test "$COMPILE_ENVIRONMENT"; then
1790   if test "$MOZ_WIDGET_TOOLKIT" = gtk3; then
1791     PKG_CHECK_MODULES(MOZ_GTK3, gtk+-3.0 >= $GTK3_VERSION gtk+-unix-print-3.0 glib-2.0 gobject-2.0 gio-unix-2.0 $GDK_PACKAGES)
1792     MOZ_GTK3_CFLAGS="-I${_topsrcdir}/widget/gtk/compat-gtk3 $MOZ_GTK3_CFLAGS"
1793     TK_CFLAGS=$MOZ_GTK3_CFLAGS
1794     TK_LIBS=$MOZ_GTK3_LIBS
1795     dnl GDK_VERSION_MIN_REQUIRED is not set here as GDK3 deprecated warnings
1796     dnl are suppressed by widget/gtk/compat-gtk3/gdk/gdkversionmacros.h.
1797     AC_DEFINE_UNQUOTED(GDK_VERSION_MAX_ALLOWED,$GDK_VERSION_MAX_ALLOWED)
1798     GLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_32
1799   fi
1800   if test "$MOZ_ENABLE_GTK"; then
1801     if test "$MOZ_X11"; then
1802       GDK_PACKAGES=gdk-x11-2.0
1803     fi
1804     AC_DEFINE_UNQUOTED(GLIB_VERSION_MIN_REQUIRED,$GLIB_VERSION_MIN_REQUIRED)
1805     AC_DEFINE_UNQUOTED(GLIB_VERSION_MAX_ALLOWED,$GLIB_VERSION_MAX_ALLOWED)
1807     PKG_CHECK_MODULES(MOZ_GTK2, gtk+-2.0 >= $GTK2_VERSION gtk+-unix-print-2.0 glib-2.0 >= $GLIB_VERSION gobject-2.0 gio-unix-2.0 $GDK_PACKAGES)
1808     MOZ_GTK2_CFLAGS="-I${_topsrcdir}/widget/gtk/compat $MOZ_GTK2_CFLAGS"
1809   fi
1810 fi # COMPILE_ENVIRONMENT
1812 AC_SUBST(MOZ_FS_LAYOUT)
1814 dnl ========================================================
1815 dnl = startup-notification support module
1816 dnl ========================================================
1818 if test "$MOZ_ENABLE_GTK"
1819 then
1820     MOZ_ENABLE_STARTUP_NOTIFICATION=
1822     MOZ_ARG_ENABLE_BOOL(startup-notification,
1823     [  --enable-startup-notification
1824                           Enable startup-notification support (default: disabled) ],
1825         MOZ_ENABLE_STARTUP_NOTIFICATION=force,
1826         MOZ_ENABLE_STARTUP_NOTIFICATION=)
1827     if test "$MOZ_ENABLE_STARTUP_NOTIFICATION"
1828     then
1829         PKG_CHECK_MODULES(MOZ_STARTUP_NOTIFICATION,
1830                           libstartup-notification-1.0 >= $STARTUP_NOTIFICATION_VERSION,
1831         [MOZ_ENABLE_STARTUP_NOTIFICATION=1], [
1832             if test "$MOZ_ENABLE_STARTUP_NOTIFICATION" = "force"
1833             then
1834                 AC_MSG_ERROR([* * * Could not find startup-notification >= $STARTUP_NOTIFICATION_VERSION])
1835             fi
1836             MOZ_ENABLE_STARTUP_NOTIFICATION=
1837         ])
1838     fi
1840     if test "$MOZ_ENABLE_STARTUP_NOTIFICATION"; then
1841         AC_DEFINE(MOZ_ENABLE_STARTUP_NOTIFICATION)
1842     fi
1844     TK_LIBS="$TK_LIBS $MOZ_STARTUP_NOTIFICATION_LIBS"
1846 AC_SUBST(MOZ_ENABLE_STARTUP_NOTIFICATION)
1848 AC_SUBST_LIST(TK_CFLAGS)
1849 AC_SUBST_LIST(TK_LIBS)
1851 dnl ========================================================
1852 dnl =
1853 dnl = Components & Features
1854 dnl =
1855 dnl ========================================================
1856 MOZ_ARG_HEADER(Components and Features)
1858 AC_SUBST(MOZ_OFFICIAL_BRANDING)
1859 if test -n "$MOZ_OFFICIAL_BRANDING"; then
1860   if test -z "$MOZ_OFFICIAL_BRANDING_DIRECTORY"; then
1861     AC_MSG_ERROR([You must specify MOZ_OFFICIAL_BRANDING_DIRECTORY to use --enable-official-branding.])
1862   else
1863     MOZ_BRANDING_DIRECTORY=${MOZ_OFFICIAL_BRANDING_DIRECTORY}
1864     AC_DEFINE(MOZ_OFFICIAL_BRANDING)
1865   fi
1868 MOZ_ARG_WITH_STRING(branding,
1869 [  --with-branding=dir     Use branding from the specified directory.],
1870     MOZ_BRANDING_DIRECTORY=$withval)
1872 REAL_BRANDING_DIRECTORY="${MOZ_BRANDING_DIRECTORY}"
1873 if test -z "$REAL_BRANDING_DIRECTORY"; then
1874   REAL_BRANDING_DIRECTORY=${MOZ_BUILD_APP}/branding/nightly
1877 if test -f "${_topsrcdir}/$REAL_BRANDING_DIRECTORY/configure.sh"; then
1878   . "${_topsrcdir}/$REAL_BRANDING_DIRECTORY/configure.sh"
1879 elif test -f "${EXTERNAL_SOURCE_DIR}/$REAL_BRANDING_DIRECTORY/configure.sh"; then
1880   . "${EXTERNAL_SOURCE_DIR}/$REAL_BRANDING_DIRECTORY/configure.sh"
1883 AC_SUBST(MOZ_BRANDING_DIRECTORY)
1885 dnl ========================================================
1886 dnl = Distribution ID
1887 dnl ========================================================
1888 MOZ_ARG_WITH_STRING(distribution-id,
1889 [  --with-distribution-id=ID
1890                           Set distribution-specific id (default=org.mozilla)],
1891 [ val=`echo $withval`
1892     MOZ_DISTRIBUTION_ID="$val"])
1894 if test -z "$MOZ_DISTRIBUTION_ID"; then
1895    MOZ_DISTRIBUTION_ID="org.mozilla"
1898 AC_DEFINE_UNQUOTED(MOZ_DISTRIBUTION_ID,"$MOZ_DISTRIBUTION_ID")
1899 AC_SUBST(MOZ_DISTRIBUTION_ID)
1901 dnl ========================================================
1902 dnl = libproxy support
1903 dnl ========================================================
1905 if test "$MOZ_ENABLE_GTK"
1906 then
1907     MOZ_ENABLE_LIBPROXY=
1909     MOZ_ARG_ENABLE_BOOL(libproxy,
1910     [  --enable-libproxy         Enable libproxy support ],
1911     MOZ_ENABLE_LIBPROXY=1,
1912     MOZ_ENABLE_LIBPROXY=)
1914     if test "$MOZ_ENABLE_LIBPROXY"
1915     then
1916         PKG_CHECK_MODULES(MOZ_LIBPROXY, libproxy-1.0)
1917         AC_DEFINE(MOZ_ENABLE_LIBPROXY)
1918     fi
1920 AC_SUBST(MOZ_ENABLE_LIBPROXY)
1922 dnl ========================================================
1923 dnl = dbus support
1924 dnl ========================================================
1926 if test "$MOZ_ENABLE_GTK"
1927 then
1928     MOZ_ENABLE_DBUS=1
1930     MOZ_ARG_DISABLE_BOOL(dbus,
1931     [  --disable-dbus          Disable dbus support ],
1932         MOZ_ENABLE_DBUS=,
1933         MOZ_ENABLE_DBUS=1)
1935     if test "$MOZ_ENABLE_DBUS"
1936     then
1937         PKG_CHECK_MODULES(MOZ_DBUS, dbus-1 >= $DBUS_VERSION)
1938         PKG_CHECK_MODULES(MOZ_DBUS_GLIB, dbus-glib-1 >= $DBUS_VERSION)
1939         AC_DEFINE(MOZ_ENABLE_DBUS)
1940     fi
1942 AC_SUBST(MOZ_ENABLE_DBUS)
1944 dnl =========================================================
1945 dnl = Whether to exclude hyphenations files in the build
1946 dnl =========================================================
1947 if test -n "$MOZ_EXCLUDE_HYPHENATION_DICTIONARIES"; then
1948     AC_DEFINE(MOZ_EXCLUDE_HYPHENATION_DICTIONARIES)
1951 AC_TRY_COMPILE([#include <linux/ethtool.h>],
1952                [ struct ethtool_cmd cmd; cmd.speed_hi = 0; ],
1953                MOZ_WEBRTC_HAVE_ETHTOOL_SPEED_HI=1)
1955 AC_SUBST(MOZ_WEBRTC_HAVE_ETHTOOL_SPEED_HI)
1957 if test -n "$MOZ_WEBRTC"; then
1958     if test -n "$MOZ_X11"; then
1959       MOZ_WEBRTC_X11_LIBS="-lXext -lXdamage -lXfixes -lXcomposite"
1960     fi
1963 AC_SUBST_LIST(MOZ_WEBRTC_X11_LIBS)
1965 dnl ========================================================
1966 dnl = Apple platform decoder support
1967 dnl ========================================================
1968 if test "$COMPILE_ENVIRONMENT"; then
1969 if test -n "$MOZ_APPLEMEDIA"; then
1970   # hack in frameworks for fmp4 - see bug 1029974
1971   # We load VideoToolbox and CoreMedia dynamically, so they don't appear here.
1972   LDFLAGS="$LDFLAGS -framework AudioToolbox"
1973   dnl Verify CoreMedia is available.
1974   AC_CHECK_HEADERS([CoreMedia/CoreMedia.h VideoToolbox/VideoToolbox.h], [],
1975     [AC_MSG_ERROR([MacOS X 10.9 SDK or later is required])])
1977 fi # COMPILE_ENVIRONMENT
1979 dnl ========================================================
1980 dnl = Handle dependent MEDIA defines
1981 dnl ========================================================
1983 MOZ_WEBM_ENCODER=1
1984 AC_DEFINE(MOZ_WEBM_ENCODER)
1985 AC_SUBST(MOZ_WEBM_ENCODER)
1987 dnl ========================================================
1988 dnl NegotiateAuth
1989 dnl ========================================================
1991 MOZ_ARG_DISABLE_BOOL(negotiateauth,
1992 [  --disable-negotiateauth Disable GSS-API negotiation ],
1993     MOZ_AUTH_EXTENSION=,
1994     MOZ_AUTH_EXTENSION=1 )
1996 if test -n "$MOZ_IOS" -a -n "$MOZ_AUTH_EXTENSION"; then
1997    AC_MSG_ERROR([negotiateauth is not supported on iOS.])
2000 dnl ========================================================
2001 dnl Pref extensions (autoconfig)
2002 dnl ========================================================
2003 MOZ_ARG_DISABLE_BOOL(pref-extensions,
2004 [  --disable-pref-extensions
2005                           Disable pref extensions such as autoconfig],
2006   MOZ_PREF_EXTENSIONS=,
2007   MOZ_PREF_EXTENSIONS=1 )
2009 dnl ========================================================
2010 dnl Searching of system directories for extensions.
2011 dnl Note: this switch is meant to be used for test builds
2012 dnl whose behavior should not depend on what happens to be
2013 dnl installed on the local machine.
2014 dnl ========================================================
2015 MOZ_ARG_DISABLE_BOOL(system-extension-dirs,
2016 [  --disable-system-extension-dirs
2017                           Disable searching system- and account-global
2018                           directories for extensions of any kind; use
2019                           only profile-specific extension directories],
2020   ENABLE_SYSTEM_EXTENSION_DIRS=,
2021   ENABLE_SYSTEM_EXTENSION_DIRS=1 )
2022 if test "$ENABLE_SYSTEM_EXTENSION_DIRS"; then
2023   AC_DEFINE(ENABLE_SYSTEM_EXTENSION_DIRS)
2026 dnl ========================================================
2027 dnl = Universalchardet
2028 dnl ========================================================
2029 MOZ_ARG_DISABLE_BOOL(universalchardet,
2030 [  --disable-universalchardet
2031                           Disable universal encoding detection],
2032   MOZ_UNIVERSALCHARDET=,
2033   MOZ_UNIVERSALCHARDET=1 )
2035 dnl ========================================================
2036 dnl Gamepad support
2037 dnl ========================================================
2039 if test "$COMPILE_ENVIRONMENT" ; then
2041 dnl Moved gamepad platform check to moz.build, linux header check still needed here.
2042 if test "$OS_TARGET" = "Linux"; then
2043     MOZ_CHECK_HEADER([linux/joystick.h])
2044     if test "$ac_cv_header_linux_joystick_h" != "yes"; then
2045       AC_MSG_ERROR([Can't find header linux/joystick.h, needed for gamepad support. Please install Linux kernel headers.])
2046     fi
2049 fi # COMPILE_ENVIRONMENT
2052 dnl ========================================================
2053 dnl = Breakpad crash reporting (on by default on supported platforms)
2054 dnl ========================================================
2056 case $target in
2057 i?86-*-mingw*|x86_64-*-mingw*|aarch64-*-mingw*)
2058   MOZ_CRASHREPORTER=1
2059   ;;
2060 i?86-apple-darwin*|x86_64-apple-darwin*)
2061   if test -z "$MOZ_IOS"; then
2062     MOZ_CRASHREPORTER=1
2063   fi
2064   ;;
2065 *-android*|*-linuxandroid*)
2066   dnl Android/arm is arm-unknown-linux-androideabi, so android condition should
2067   dnl be before Linux condition
2068   MOZ_CRASHREPORTER=1
2069   ;;
2070 i?86-*-linux*|x86_64-*-linux*|arm-*-linux*)
2071   if test "$MOZ_ENABLE_GTK"; then
2072     MOZ_CRASHREPORTER=1
2073   fi
2074   ;;
2075 esac
2077 MOZ_ARG_DISABLE_BOOL(crashreporter,
2078 [  --disable-crashreporter Disable breakpad crash reporting],
2079     [MOZ_CRASHREPORTER=],
2080     [MOZ_CRASHREPORTER=F # Force enable breakpad])
2082 if test "$OS_ARCH" != "$HOST_OS_ARCH" -a "$OS_ARCH" != "WINNT" -a "$OS_ARCH" != "Darwin" -a "$MOZ_WIDGET_TOOLKIT" != "android"; then
2083   if test "$MOZ_CRASHREPORTER" = F; then
2084     AC_MSG_ERROR([Cannot --enable-crashreporter, as breakpad tools do not support compiling on $HOST_OS_ARCH while targeting $OS_ARCH.])
2085   fi
2086   MOZ_CRASHREPORTER=
2089 if test -n "$MOZ_CRASHREPORTER"; then
2090    AC_DEFINE(MOZ_CRASHREPORTER)
2092   if test "$OS_TARGET" = "Linux" && \
2093     test -z "$SKIP_LIBRARY_CHECKS"; then
2094     PKG_CHECK_MODULES(MOZ_GTHREAD, gthread-2.0)
2095   fi
2097   if test "$OS_ARCH" = "WINNT"; then
2098     if test -z "$HAVE_64BIT_BUILD" -a -n "$COMPILE_ENVIRONMENT"; then
2099       MOZ_CRASHREPORTER_INJECTOR=1
2100       AC_DEFINE(MOZ_CRASHREPORTER_INJECTOR)
2101     fi
2102   fi
2105 dnl ========================================================
2106 dnl = Enable compilation of specific extension modules
2107 dnl ========================================================
2109 MOZ_ARG_ENABLE_STRING(extensions,
2110 [  --enable-extensions     Enable extensions],
2111 [ for option in `echo $enableval | sed 's/,/ /g'`; do
2112     if test "$option" = "yes" -o "$option" = "all"; then
2113         AC_MSG_ERROR([--enable-extensions=$option is no longer supported.])
2114     elif test "$option" = "no" -o "$option" = "none"; then
2115         MOZ_EXTENSIONS=""
2116     elif test "$option" = "default"; then
2117         MOZ_EXTENSIONS="$MOZ_EXTENSIONS $MOZ_EXTENSIONS_DEFAULT"
2118     elif test `echo "$option" | grep -c \^-` != 0; then
2119         option=`echo $option | sed 's/^-//'`
2120         MOZ_EXTENSIONS=`echo "$MOZ_EXTENSIONS" | sed "s/ ${option}//"`
2121     else
2122         MOZ_EXTENSIONS="$MOZ_EXTENSIONS $option"
2123     fi
2124 done],
2125     MOZ_EXTENSIONS="$MOZ_EXTENSIONS_DEFAULT")
2127 dnl Ensure every extension exists, to avoid mostly-inscrutable error messages
2128 dnl when trying to build a nonexistent extension.
2129 for extension in $MOZ_EXTENSIONS; do
2130     if test ! -d "${srcdir}/extensions/${extension}"; then
2131         AC_MSG_ERROR([Unrecognized extension provided to --enable-extensions: ${extension}.])
2132     fi
2133 done
2135 if test -n "$MOZ_USE_NATIVE_POPUP_WINDOWS"; then
2136   AC_DEFINE(MOZ_USE_NATIVE_POPUP_WINDOWS)
2139 # Avoid defining MOZ_ENABLE_CAIRO_FT on Windows platforms because
2140 # "cairo-ft-font.c" includes <dlfcn.h>, which only exists on posix platforms
2141 if test -n "$MOZ_TREE_FREETYPE" -a "$OS_TARGET" != WINNT; then
2142    MOZ_ENABLE_CAIRO_FT=1
2143    FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
2144    CAIRO_FT_CFLAGS="-I$_topsrcdir/modules/freetype2/include"
2145    AC_SUBST_LIST(CAIRO_FT_CFLAGS)
2148 AC_CHECK_PROGS(WGET, wget, "")
2149 AC_SUBST(WGET)
2151 dnl ========================================================
2152 dnl Updater
2153 dnl ========================================================
2155 if test "$MOZ_IOS"; then
2156   MOZ_UPDATER=
2159 MOZ_ARG_DISABLE_BOOL(updater,
2160 [  --disable-updater       Disable building of updater],
2161     MOZ_UPDATER=,
2162     MOZ_UPDATER=1 )
2164 if test -n "$MOZ_UPDATER"; then
2165     AC_DEFINE(MOZ_UPDATER)
2168 dnl ========================================================
2169 dnl parental controls (for Windows Vista)
2170 dnl ========================================================
2171 MOZ_ARG_DISABLE_BOOL(parental-controls,
2172 [  --disable-parental-controls
2173                           Do not build parental controls],
2174    MOZ_DISABLE_PARENTAL_CONTROLS=1,
2175    MOZ_DISABLE_PARENTAL_CONTROLS=)
2176 if test -n "$MOZ_DISABLE_PARENTAL_CONTROLS"; then
2177     AC_DEFINE(MOZ_DISABLE_PARENTAL_CONTROLS)
2180 AC_SUBST(MOZ_DISABLE_PARENTAL_CONTROLS)
2182 dnl ========================================================
2183 dnl = Disable smartcard support
2184 dnl ========================================================
2185 if test -n "$MOZ_NO_SMART_CARDS"; then
2186     AC_DEFINE(MOZ_NO_SMART_CARDS)
2188 AC_SUBST(MOZ_NO_SMART_CARDS)
2190 dnl ========================================================
2191 dnl = Sandboxing support
2192 dnl ========================================================
2193 if test -n "$MOZ_TSAN" -o -n "$MOZ_ASAN"; then
2194     # Bug 1182565: TSan conflicts with sandboxing on Linux.
2195     # Bug 1287971: LSan also conflicts with sandboxing on Linux.
2196     case $OS_TARGET in
2197     Linux|Android)
2198         MOZ_SANDBOX=
2199         ;;
2200     esac
2203 MOZ_ARG_DISABLE_BOOL(sandbox,
2204 [  --disable-sandbox        Disable sandboxing support],
2205     MOZ_SANDBOX=,
2206     MOZ_SANDBOX=1)
2208 case "$OS_TARGET" in
2209 WINNT|Darwin)
2211 Linux)
2212     case $CPU_ARCH in
2213         x86_64|x86)
2214         ;;
2215         # Linux sandbox is only available on x86 and x86_64.
2216         *)
2217             MOZ_SANDBOX=
2218         ;;
2219     esac
2220     ;;
2222     # Only enable the sandbox by default on Linux, macOS, and Windows
2223     MOZ_SANDBOX=
2225 esac
2227 if test -n "$MOZ_SANDBOX"; then
2228     AC_DEFINE(MOZ_SANDBOX)
2231 AC_SUBST(MOZ_SANDBOX)
2234 dnl ========================================================
2235 dnl =
2236 dnl = Module specific options
2237 dnl =
2238 dnl ========================================================
2239 MOZ_ARG_HEADER(Individual module options)
2241 dnl ========================================================
2242 dnl Check for sqlite
2243 dnl ========================================================
2245 MOZ_SYSTEM_SQLITE=
2246 MOZ_ARG_ENABLE_BOOL(system-sqlite,
2247 [  --enable-system-sqlite  Use system sqlite (located with pkgconfig)],
2248 MOZ_SYSTEM_SQLITE=1,
2249 MOZ_SYSTEM_SQLITE= )
2251 if test -n "$MOZ_SYSTEM_SQLITE"
2252 then
2253     dnl ============================
2254     dnl === SQLite Version check ===
2255     dnl ============================
2256     dnl Check to see if the system SQLite package is new enough.
2257     PKG_CHECK_MODULES(SQLITE, sqlite3 >= $SQLITE_VERSION)
2258 else
2259     dnl ==============================
2260     dnl === SQLite fdatasync check ===
2261     dnl ==============================
2262     dnl Check to see if fdatasync is available
2263     AC_CHECK_FUNC(fdatasync)
2266 if test -n "$MOZ_SYSTEM_SQLITE"; then
2267     AC_DEFINE(MOZ_SYSTEM_SQLITE)
2269 AC_SUBST(MOZ_SYSTEM_SQLITE)
2271 dnl ========================================================
2272 dnl = Disable zipwriter
2273 dnl ========================================================
2274 MOZ_ARG_DISABLE_BOOL(zipwriter,
2275 [  --disable-zipwriter     Disable zipwriter component],
2276     MOZ_ZIPWRITER=,
2277     MOZ_ZIPWRITER=1 )
2278 AC_SUBST(MOZ_ZIPWRITER)
2280 dnl ========================================================
2281 dnl =
2282 dnl = Feature options that require extra sources to be pulled
2283 dnl =
2284 dnl ========================================================
2285 dnl MOZ_ARG_HEADER(Features that require extra sources)
2287 dnl ========================================================
2288 dnl =
2289 dnl = Runtime debugging and Optimization Options
2290 dnl =
2291 dnl ========================================================
2292 MOZ_ARG_HEADER(Runtime debugging and Optimizations)
2294 dnl ========================================================
2295 dnl enable mobile optimizations
2296 dnl ========================================================
2297 MOZ_ARG_ENABLE_BOOL(mobile-optimize,
2298 [  --enable-mobile-optimize
2299                           Enable mobile optimizations],
2300     MOZ_GFX_OPTIMIZE_MOBILE=1)
2302 AC_SUBST(MOZ_GFX_OPTIMIZE_MOBILE)
2304 if test "$MOZ_GFX_OPTIMIZE_MOBILE"; then
2305     # We ignore paint will resample on mobile for performance.
2306     # We may want to revisit this later.
2307     MOZ_IGNORE_PAINT_WILL_RESAMPLE=1
2309     AC_DEFINE(MOZ_GFX_OPTIMIZE_MOBILE)
2310     AC_DEFINE(MOZ_IGNORE_PAINT_WILL_RESAMPLE)
2313 dnl ========================================================
2314 dnl = Enable code optimization. ON by default.
2315 dnl ========================================================
2317 # Use value from moz.configure if one is defined. Else use our computed
2318 # value.
2319 if test -n "${MOZ_CONFIGURE_OPTIMIZE_FLAGS}"; then
2320     MOZ_OPTIMIZE_FLAGS=${MOZ_CONFIGURE_OPTIMIZE_FLAGS}
2323 if test "$COMPILE_ENVIRONMENT"; then
2324 if test -n "$MOZ_OPTIMIZE"; then
2325     AC_MSG_CHECKING([for valid C compiler optimization flags])
2326     _SAVE_CFLAGS=$CFLAGS
2327     CFLAGS="$CFLAGS $MOZ_OPTIMIZE_FLAGS"
2328     AC_TRY_COMPILE([#include <stdio.h>],
2329         [printf("Hello World\n");],
2330         _results=yes,
2331         _results=no)
2332     AC_MSG_RESULT([$_results])
2333     if test "$_results" = "no"; then
2334         AC_MSG_ERROR([These compiler flags for C are invalid: $MOZ_OPTIMIZE_FLAGS])
2335     fi
2336     CFLAGS=$_SAVE_CFLAGS
2337     if test -n "$MOZ_LTO" -a -n "$CLANG_CC"; then
2338         # When using llvm-based LTO, non numeric optimization levels are
2339         # not supported by the linker, so force the linker to use -O2 (
2340         # which doesn't influence the level compilation units are actually
2341         # compiled at).
2342         case " $MOZ_OPTIMIZE_FLAGS " in
2343         *\ -Os\ *|*\ -Oz\ *)
2344             MOZ_OPTIMIZE_LDFLAGS="$MOZ_OPTIMIZE_LDFLAGS -O2"
2345             ;;
2346         esac
2347     fi
2349 fi # COMPILE_ENVIRONMENT
2351 AC_SUBST_LIST(MOZ_OPTIMIZE_FLAGS)
2352 AC_SUBST_LIST(MOZ_OPTIMIZE_LDFLAGS)
2353 AC_SUBST_LIST(MOZ_PGO_OPTIMIZE_FLAGS)
2355 dnl ========================================================
2356 dnl = Disable treating compiler warnings as errors
2357 dnl ========================================================
2358 if test -z "$MOZ_ENABLE_WARNINGS_AS_ERRORS"; then
2359    WARNINGS_AS_ERRORS=''
2362 dnl ========================================================
2363 dnl = Enable runtime logging
2364 dnl ========================================================
2365 AC_DEFINE(MOZ_LOGGING)
2366 AC_DEFINE(FORCE_PR_LOG)
2368 dnl ========================================================
2369 dnl = This will enable logging of addref, release, ctor, dtor.
2370 dnl ========================================================
2371 _ENABLE_LOGREFCNT=42
2372 MOZ_ARG_ENABLE_BOOL(logrefcnt,
2373 [  --enable-logrefcnt      Enable logging of refcounts (default=debug) ],
2374     _ENABLE_LOGREFCNT=1,
2375     _ENABLE_LOGREFCNT= )
2376 if test "$_ENABLE_LOGREFCNT" = "1"; then
2377     AC_DEFINE(FORCE_BUILD_REFCNT_LOGGING)
2378 elif test -z "$_ENABLE_LOGREFCNT"; then
2379     AC_DEFINE(NO_BUILD_REFCNT_LOGGING)
2382 dnl ========================================================
2383 dnl moz_dump_painting
2384 dnl ========================================================
2385 MOZ_ARG_ENABLE_BOOL(dump-painting,
2386 [  --enable-dump-painting          Enable paint debugging.],
2387     MOZ_DUMP_PAINTING=1,
2388     MOZ_DUMP_PAINTING= )
2389 if test -n "$MOZ_DUMP_PAINTING"; then
2390     AC_DEFINE(MOZ_DUMP_PAINTING)
2391     AC_DEFINE(MOZ_LAYERS_HAVE_LOG)
2393 if test -n "$MOZ_DEBUG"; then
2394     AC_DEFINE(MOZ_DUMP_PAINTING)
2397 case "${OS_TARGET}" in
2398 Android|WINNT|Darwin)
2399   MOZ_GLUE_IN_PROGRAM=
2400   ;;
2402   dnl On !Android !Windows !OSX, we only want to link executables against mozglue
2403   MOZ_GLUE_IN_PROGRAM=1
2404   AC_DEFINE(MOZ_GLUE_IN_PROGRAM)
2405   ;;
2406 esac
2408 dnl ========================================================
2409 dnl = Jemalloc build setup
2410 dnl ========================================================
2411 if test -z "$MOZ_MEMORY"; then
2412   case "${target}" in
2413     *-mingw*)
2414       if test -z "$WIN32_REDIST_DIR" -a -z "$MOZ_DEBUG"; then
2415         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.])
2416       fi
2417       ;;
2418   esac
2419 else
2420   dnl The generic feature tests that determine how to compute ncpus are long and
2421   dnl complicated.  Therefore, simply define special cpp variables for the
2422   dnl platforms we have special knowledge of.
2423   case "${target}" in
2424   *-mingw*)
2425     export MOZ_NO_DEBUG_RTL=1
2426     ;;
2427   esac
2428 fi # MOZ_MEMORY
2429 AC_SUBST(MOZ_GLUE_IN_PROGRAM)
2431 dnl ========================================================
2432 dnl = Enable using the clang plugin to build
2433 dnl ========================================================
2435 if test -n "$COMPILE_ENVIRONMENT"; then
2436 MOZ_CONFIG_CLANG_PLUGIN
2437 fi # COMPILE_ENVIRONMENT
2439 dnl ========================================================
2440 dnl = Enable stripping of libs & executables
2441 dnl ========================================================
2442 MOZ_ARG_ENABLE_BOOL(strip,
2443 [  --enable-strip          Enable stripping of libs & executables ],
2444     ENABLE_STRIP=1,
2445     ENABLE_STRIP= )
2447 dnl ========================================================
2448 dnl = Enable stripping of libs & executables when packaging
2449 dnl ========================================================
2450 MOZ_ARG_ENABLE_BOOL(install-strip,
2451 [  --enable-install-strip  Enable stripping of libs & executables when packaging ],
2452     PKG_SKIP_STRIP= ,
2453     PKG_SKIP_STRIP=1)
2455 dnl ========================================================
2456 dnl = frontend JS debug mode
2457 dnl ========================================================
2459 MOZ_ARG_ENABLE_BOOL(debug-js-modules,
2460 [  --enable-debug-js-modules  Enable debug mode for frontend JS libraries],
2461    DEBUG_JS_MODULES=1,
2462    DEBUG_JS_MODULES=)
2464 AC_SUBST(DEBUG_JS_MODULES)
2466 dnl ========================================================
2467 dnl =
2468 dnl = Profiling and Instrumenting
2469 dnl =
2470 dnl ========================================================
2471 MOZ_ARG_HEADER(Profiling and Instrumenting)
2473 dnl ========================================================
2474 dnl = Offer a way to disable the startup cache
2475 dnl ========================================================
2477 MOZ_ARG_DISABLE_BOOL(startupcache,
2478 [  --disable-startupcache          Disable startup cache ],
2479     MOZ_DISABLE_STARTUPCACHE=1,
2480     MOZ_DISABLE_STARTUPCACHE=)
2482 if test -n "$MOZ_DISABLE_STARTUPCACHE"; then
2483   AC_DEFINE(MOZ_DISABLE_STARTUPCACHE)
2485 AC_SUBST(MOZ_DISABLE_STARTUPCACHE)
2487 dnl ========================================================
2488 dnl = Support for demangling undefined symbols
2489 dnl ========================================================
2490 if test -z "$SKIP_LIBRARY_CHECKS"; then
2491     AC_LANG_SAVE
2492     AC_LANG_CPLUSPLUS
2493     AC_CHECK_FUNCS(__cxa_demangle, HAVE_DEMANGLE=1, HAVE_DEMANGLE=)
2494     AC_LANG_RESTORE
2497 # Demangle only for debug or DMD builds
2498 MOZ_DEMANGLE_SYMBOLS=
2499 if test "$HAVE_DEMANGLE" && test "$MOZ_DEBUG" -o "$MOZ_DMD"; then
2500     MOZ_DEMANGLE_SYMBOLS=1
2501     AC_DEFINE(MOZ_DEMANGLE_SYMBOLS)
2503 AC_SUBST(MOZ_DEMANGLE_SYMBOLS)
2505 dnl ========================================================
2506 dnl = Support for gcc stack unwinding (from gcc 3.3)
2507 dnl ========================================================
2508 if test -z "$SKIP_LIBRARY_CHECKS"; then
2509     AC_LANG_SAVE
2510     AC_LANG_CPLUSPLUS
2511     MOZ_CHECK_HEADER(unwind.h, AC_CHECK_FUNCS(_Unwind_Backtrace))
2512     AC_LANG_RESTORE
2515 dnl ========================================================
2516 dnl JIT observers
2517 dnl ========================================================
2519 MOZ_ARG_WITH_STRING(jitreport-granularity,
2520 [  --jitreport-granularity=N
2521                            Default granularity at which to report JIT code
2522                            to external tools
2523                              0 - no info
2524                              1 - code ranges for whole functions only
2525                              2 - per-line information
2526                              3 - per-op information],
2527   JITREPORT_GRANULARITY=$withval,
2528   JITREPORT_GRANULARITY=3)
2530 AC_DEFINE_UNQUOTED(JS_DEFAULT_JITREPORT_GRANULARITY, $JITREPORT_GRANULARITY)
2532 dnl ========================================================
2533 dnl =
2534 dnl = Misc. Options
2535 dnl =
2536 dnl ========================================================
2537 MOZ_ARG_HEADER(Misc. Options)
2539 dnl ========================================================
2540 dnl = Location of the mozilla user directory (default is ~/.mozilla).],
2541 dnl ========================================================
2542 MOZ_ARG_WITH_STRING(user-appdir,
2543 [  --with-user-appdir=DIR  Set user-specific appdir (default=.mozilla)],
2544 [ val=`echo $withval`
2545 if echo "$val" | grep "\/" >/dev/null; then
2546     AC_MSG_ERROR("Homedir must be single relative path.")
2547 else
2548     MOZ_USER_DIR="$val"
2549 fi])
2551 AC_DEFINE_UNQUOTED(MOZ_USER_DIR,"$MOZ_USER_DIR")
2553 if test -z "$SKIP_COMPILER_CHECKS"; then
2554 dnl ========================================================
2555 dnl =
2556 dnl = Compiler Options
2557 dnl =
2558 dnl ========================================================
2559 MOZ_ARG_HEADER(Compiler Options)
2561 dnl ========================================================
2562 dnl Check for gcc -pipe support
2563 dnl ========================================================
2564 AC_MSG_CHECKING([for -pipe support])
2565 if test -n "$GNU_CC" -a -n "$GNU_CXX"; then
2566     dnl Any gcc that supports firefox supports -pipe.
2567     CFLAGS="$CFLAGS -pipe"
2568     CXXFLAGS="$CXXFLAGS -pipe"
2569     AC_MSG_RESULT([yes])
2570 else
2571     AC_MSG_RESULT([no])
2574 fi # ! SKIP_COMPILER_CHECKS
2576 AC_DEFINE(CPP_THROW_NEW, [throw()])
2577 AC_LANG_C
2579 if test "$COMPILE_ENVIRONMENT"; then
2580 MOZ_EXPAND_LIBS
2581 fi # COMPILE_ENVIRONMENT
2583 dnl ========================================================
2584 dnl =
2585 dnl = Static Build Options
2586 dnl =
2587 dnl ========================================================
2588 MOZ_ARG_HEADER(Static build options)
2590 if test -z "$MOZ_SYSTEM_ZLIB"; then
2591 if test -n "$JS_SHARED_LIBRARY" -o -n "$MOZ_LINKER"; then
2592   ZLIB_IN_MOZGLUE=1
2593   AC_DEFINE(ZLIB_IN_MOZGLUE)
2597 AC_SUBST(ZLIB_IN_MOZGLUE)
2599 dnl ========================================================
2600 dnl =
2601 dnl = Standalone module options
2602 dnl =
2603 dnl ========================================================
2604 MOZ_ARG_HEADER(Standalone module options (Not for building Mozilla))
2606 dnl Check for GLib.
2607 dnl ========================================================
2609 if test -z "$SKIP_PATH_CHECKS"; then
2610 if test -z "${GLIB_CFLAGS}" -o -z "${GLIB_LIBS}" ; then
2611     if test "$MOZ_ENABLE_GTK" ; then
2612         PKG_CHECK_MODULES(GLIB, glib-2.0 >= 1.3.7 gobject-2.0)
2613     fi
2617 if test -z "${GLIB_GMODULE_LIBS}" \
2618    -a -n "${GLIB_CONFIG}"\
2619     -a "${GLIB_CONFIG}" != no\
2620 ; then
2621     GLIB_GMODULE_LIBS=`$GLIB_CONFIG gmodule --libs`
2624 AC_SUBST_LIST(GLIB_GMODULE_LIBS)
2626 if test "$USE_FC_FREETYPE"; then
2627     if test "$COMPILE_ENVIRONMENT"; then
2628         dnl ========================================================
2629         dnl = Check for freetype2 functionality
2630         dnl ========================================================
2631         if test "$_HAVE_FREETYPE2" -a -z "$MOZ_TREE_FREETYPE"; then
2632             _SAVE_LIBS="$LIBS"
2633             _SAVE_CFLAGS="$CFLAGS"
2634             LIBS="$LIBS $FT2_LIBS"
2635             CFLAGS="$CFLAGS $FT2_CFLAGS"
2637             AC_CACHE_CHECK(for FT_Bitmap_Size.y_ppem,
2638                 ac_cv_member_FT_Bitmap_Size_y_ppem,
2639                 [AC_TRY_COMPILE([#include <ft2build.h>
2640                                  #include FT_FREETYPE_H],
2641                                 [FT_Bitmap_Size s;
2642                                  if (sizeof s.y_ppem) return 0;
2643                                  return 1],
2644                                 ac_cv_member_FT_Bitmap_Size_y_ppem=yes,
2645                                 ac_cv_member_FT_Bitmap_Size_y_ppem=no)])
2646             if test "$ac_cv_member_FT_Bitmap_Size_y_ppem" = yes; then
2647                 HAVE_FT_BITMAP_SIZE_Y_PPEM=1
2648             else
2649                 HAVE_FT_BITMAP_SIZE_Y_PPEM=0
2650             fi
2651             AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,
2652                                $HAVE_FT_BITMAP_SIZE_Y_PPEM,
2653                                [FT_Bitmap_Size structure includes y_ppem field])
2655             AC_CHECK_FUNCS(FT_GlyphSlot_Embolden FT_Load_Sfnt_Table)
2657             LIBS="$_SAVE_LIBS"
2658             CFLAGS="$_SAVE_CFLAGS"
2659         fi
2661         _SAVE_CPPFLAGS="$CPPFLAGS"
2662         CPPFLAGS="$CPPFLAGS $FT2_CFLAGS $XCFLAGS"
2663         MOZ_CHECK_HEADERS([fontconfig/fcfreetype.h], ,
2664             [AC_MSG_ERROR(Can't find header fontconfig/fcfreetype.h.)], [#include <fontconfig/fontconfig.h>])
2665         CPPFLAGS="$_SAVE_CPPFLAGS"
2666     fi
2669 dnl ========================================================
2670 dnl Check if we need the 32-bit Linux SSE2 error dialog
2671 dnl ========================================================
2673 AC_SUBST(MOZ_LINUX_32_SSE2_STARTUP_ERROR)
2675 dnl ========================================================
2676 dnl Check for pixman and cairo
2677 dnl ========================================================
2679 MOZ_TREE_CAIRO=1
2680 MOZ_ARG_ENABLE_BOOL(system-cairo,
2681 [ --enable-system-cairo  Obsolete: do not use this option],
2682 AC_MSG_ERROR(--enable-system-cairo is not supported),
2683 MOZ_TREE_CAIRO=1 )
2685 MOZ_TREE_PIXMAN=1
2686 MOZ_ARG_ENABLE_BOOL(system-pixman,
2687 [ --enable-system-pixman Use system pixman (located with pkgconfig)],
2688 MOZ_TREE_PIXMAN=,
2689 MOZ_TREE_PIXMAN=force,
2690 MOZ_TREE_PIXMAN=1 )
2692 if test "$MOZ_TREE_PIXMAN"; then
2693     AC_DEFINE(MOZ_TREE_PIXMAN)
2694 else
2695     PKG_CHECK_MODULES(MOZ_PIXMAN, pixman-1 >= 0.19.2)
2698 MOZ_CAIRO_CFLAGS="-I${DIST}/include/cairo"
2699 AC_DEFINE(MOZ_TREE_CAIRO)
2701 if test "$OS_ARCH" = "WINNT"; then
2702     # For now we assume that we will have a uint64_t available through
2703     # one of the above headers or mozstdint.h.
2704     AC_DEFINE(HAVE_UINT64_T)
2707 # Define macros for cairo-features.h
2708 TEE_SURFACE_FEATURE="#define CAIRO_HAS_TEE_SURFACE 1"
2709 if test "$MOZ_X11"; then
2710     XLIB_SURFACE_FEATURE="#define CAIRO_HAS_XLIB_SURFACE 1"
2711     XLIB_XRENDER_SURFACE_FEATURE="#define CAIRO_HAS_XLIB_XRENDER_SURFACE 1"
2712     PS_SURFACE_FEATURE="#define CAIRO_HAS_PS_SURFACE 1"
2714 if test "$_HAVE_FREETYPE2"; then
2715     FT_FONT_FEATURE="#define CAIRO_HAS_FT_FONT 1"
2716     MOZ_ENABLE_CAIRO_FT=1
2717     CAIRO_FT_CFLAGS="$FT2_CFLAGS"
2720 case "$MOZ_WIDGET_TOOLKIT" in
2721   cocoa | uikit)
2722     QUARTZ_SURFACE_FEATURE="#define CAIRO_HAS_QUARTZ_SURFACE 1"
2723     QUARTZ_IMAGE_SURFACE_FEATURE="#define CAIRO_HAS_QUARTZ_IMAGE_SURFACE 1"
2724     QUARTZ_FONT_FEATURE="#define CAIRO_HAS_QUARTZ_FONT 1"
2725     ;;
2726   windows)
2727     WIN32_DWRITE_FONT_FEATURE="#define CAIRO_HAS_DWRITE_FONT 1"
2728     WIN32_FONT_FEATURE="#define CAIRO_HAS_WIN32_FONT 1"
2729     WIN32_SURFACE_FEATURE="#define CAIRO_HAS_WIN32_SURFACE 1"
2731     if test "$COMPILE_ENVIRONMENT"; then
2732       MOZ_CHECK_HEADER(d3d10.h, MOZ_ENABLE_D3D10_LAYER=1)
2733     fi
2734     ;;
2735 esac
2736 if test "$USE_FC_FREETYPE"; then
2737     FC_FONT_FEATURE="#define CAIRO_HAS_FC_FONT 1"
2739 AC_SUBST(MOZ_ENABLE_CAIRO_FT)
2740 AC_SUBST(MOZ_ENABLE_D3D10_LAYER)
2742 AC_SUBST(PS_SURFACE_FEATURE)
2743 AC_SUBST(SVG_SURFACE_FEATURE)
2744 AC_SUBST(XLIB_SURFACE_FEATURE)
2745 AC_SUBST(XLIB_XRENDER_SURFACE_FEATURE)
2746 AC_SUBST(QUARTZ_SURFACE_FEATURE)
2747 AC_SUBST(QUARTZ_IMAGE_SURFACE_FEATURE)
2748 AC_SUBST(WIN32_SURFACE_FEATURE)
2749 AC_SUBST(OS2_SURFACE_FEATURE)
2750 AC_SUBST(DIRECTFB_SURFACE_FEATURE)
2751 AC_SUBST(FT_FONT_FEATURE)
2752 AC_SUBST(FC_FONT_FEATURE)
2753 AC_SUBST(WIN32_FONT_FEATURE)
2754 AC_SUBST(WIN32_DWRITE_FONT_FEATURE)
2755 AC_SUBST(QUARTZ_FONT_FEATURE)
2756 AC_SUBST(PNG_FUNCTIONS_FEATURE)
2757 AC_SUBST(QT_SURFACE_FEATURE)
2758 AC_SUBST(TEE_SURFACE_FEATURE)
2760 if test "$MOZ_X11"; then
2761     MOZ_CAIRO_OSLIBS="$MOZ_CAIRO_OSLIBS $XLDFLAGS -lXrender"
2764 CAIRO_FEATURES_H=gfx/cairo/cairo/src/cairo-features.h
2766 case "$MOZ_WIDGET_TOOLKIT" in
2767 android)
2768     TK_CFLAGS="$MOZ_CAIRO_CFLAGS $MOZ_PIXMAN_CFLAGS"
2769     TK_LIBS="$MOZ_CAIRO_LIBS $MOZ_PIXMAN_LIBS"
2770     ;;
2771 esac
2773 AC_SUBST(MOZ_TREE_CAIRO)
2774 AC_SUBST_LIST(MOZ_CAIRO_CFLAGS)
2775 AC_SUBST_LIST(MOZ_CAIRO_LIBS)
2776 AC_SUBST_LIST(MOZ_CAIRO_OSLIBS)
2777 AC_SUBST(MOZ_TREE_PIXMAN)
2779 BINDGEN_SYSTEM_FLAGS="$_BINDGEN_CFLAGS $NSPR_CFLAGS $NSS_CFLAGS $MOZ_PIXMAN_CFLAGS $MOZ_CAIRO_CFLAGS"
2780 AC_SUBST(BINDGEN_SYSTEM_FLAGS)
2781 BINDGEN_SYSTEM_TOML_FLAGS="$BINDGEN_SYSTEM_FLAGS"
2782 AC_SUBST_TOML_LIST(BINDGEN_SYSTEM_TOML_FLAGS)
2784 dnl ========================================================
2785 dnl disable xul
2786 dnl ========================================================
2787 MOZ_ARG_DISABLE_BOOL(xul,
2788 [  --disable-xul           Disable XUL],
2789     MOZ_XUL= )
2790 if test "$MOZ_XUL"; then
2791   AC_DEFINE(MOZ_XUL)
2792 else
2793   dnl remove extensions that require XUL
2794   MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's/inspector//' -e 's/irc//' -e 's/tasks//'`
2797 AC_SUBST(MOZ_XUL)
2799 dnl ========================================================
2800 dnl necko configuration options
2801 dnl ========================================================
2804 dnl option to disable necko's wifi scanner
2807 if test "$MOZ_WIDGET_TOOLKIT"; then
2809   case "$OS_TARGET" in
2810     Darwin)
2811       if test -z "$MOZ_IOS"; then
2812         NECKO_WIFI=1
2813       fi
2814       ;;
2815     DragonFly|FreeBSD|WINNT)
2816       NECKO_WIFI=1
2817       ;;
2818     Linux)
2819       NECKO_WIFI=1
2820       NECKO_WIFI_DBUS=1
2821       ;;
2822   esac
2826 MOZ_ARG_DISABLE_BOOL(necko-wifi,
2827 [  --disable-necko-wifi    Disable necko wifi scanner],
2828     NECKO_WIFI=,
2829     NECKO_WIFI=1)
2831 if test "$NECKO_WIFI"; then
2832   if test -z "$MOZ_ENABLE_DBUS" -a -n "$NECKO_WIFI_DBUS"; then
2833     AC_MSG_ERROR([Necko WiFi scanning needs DBus on your platform, remove --disable-dbus or use --disable-necko-wifi])
2834   fi
2835   AC_DEFINE(NECKO_WIFI)
2836   _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_WIFI"
2838 AC_SUBST(NECKO_WIFI)
2839 AC_SUBST(NECKO_WIFI_DBUS)
2842 dnl option to disable cookies
2844 MOZ_ARG_DISABLE_BOOL(cookies,
2845 [  --disable-cookies       Disable cookie support],
2846     NECKO_COOKIES=,
2847     NECKO_COOKIES=1)
2848 AC_SUBST(NECKO_COOKIES)
2849 if test "$NECKO_COOKIES"; then
2850     AC_DEFINE(NECKO_COOKIES)
2851     _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES NECKO_COOKIES"
2854 dnl ========================================================
2855 dnl =
2856 dnl = Maintainer debug option (no --enable equivalent)
2857 dnl =
2858 dnl ========================================================
2860 AC_SUBST(NM)
2861 AC_SUBST_LIST(ASFLAGS)
2862 AC_SUBST(RCFLAGS)
2863 AC_SUBST(IMPLIB)
2864 AC_SUBST(FILTER)
2865 AC_SUBST(MOZ_AUTH_EXTENSION)
2866 AC_SUBST(MOZ_PREF_EXTENSIONS)
2867 AC_SUBST_LIST(MOZ_DEBUG_LDFLAGS)
2868 AC_SUBST(WARNINGS_AS_ERRORS)
2869 AC_SUBST_LIST(WARNINGS_CFLAGS)
2870 AC_SUBST_SET(MOZ_EXTENSIONS)
2872 AC_SUBST(MOZ_UNIVERSALCHARDET)
2873 AC_SUBST(MOZ_SPELLCHECK)
2874 AC_SUBST(MOZ_ANDROID_ANR_REPORTER)
2875 AC_SUBST(MOZ_CRASHREPORTER)
2876 AC_SUBST(MOZ_CRASHREPORTER_INJECTOR)
2877 AC_SUBST(MOZ_STUB_INSTALLER)
2878 AC_SUBST(MOZ_UPDATER)
2880 AC_SUBST(MOZ_ANDROID_APPLICATION_CLASS)
2881 AC_SUBST(MOZ_ANDROID_BROWSER_INTENT_CLASS)
2882 AC_SUBST(MOZ_EXCLUDE_HYPHENATION_DICTIONARIES)
2883 AC_SUBST(ENABLE_STRIP)
2884 AC_SUBST(PKG_SKIP_STRIP)
2885 AC_SUBST(STRIP_FLAGS)
2886 AC_SUBST(INCREMENTAL_LINKER)
2888 AC_SUBST_LIST(MOZ_FIX_LINK_PATHS)
2890 AC_SUBST(MOZ_POST_PROGRAM_COMMAND)
2891 AC_SUBST(MOZ_LINKER_EXTRACT)
2893 if test -n "$MOZ_BINARY_EXTENSIONS"; then
2894   AC_DEFINE(MOZ_BINARY_EXTENSIONS)
2897 AC_SUBST(MOZ_REQUIRE_SIGNING)
2898 if test "$MOZ_REQUIRE_SIGNING" = 1; then
2899   AC_DEFINE(MOZ_REQUIRE_SIGNING)
2902 dnl ========================================================
2903 dnl = Mac bundle name prefix
2904 dnl ========================================================
2905 MOZ_ARG_WITH_STRING(macbundlename-prefix,
2906 [  --with-macbundlename-prefix=prefix
2907                           Prefix for MOZ_MACBUNDLE_NAME],
2908 [ MOZ_MACBUNDLE_NAME_PREFIX="$withval"])
2910 MOZ_MACBUNDLE_NAME=$MOZ_APP_DISPLAYNAME
2911 if test "$MOZ_MACBUNDLE_NAME_PREFIX"; then
2912   MOZ_MACBUNDLE_NAME="${MOZ_MACBUNDLE_NAME_PREFIX}${MOZ_MACBUNDLE_NAME}"
2915 if test "$MOZ_DEBUG"; then
2916   MOZ_MACBUNDLE_NAME="${MOZ_MACBUNDLE_NAME}Debug.app"
2917 else
2918   MOZ_MACBUNDLE_NAME=${MOZ_MACBUNDLE_NAME}.app
2920 AC_SUBST(MOZ_MACBUNDLE_NAME)
2922 dnl Mac bundle identifier (based on MOZ_APP_DISPLAYNAME)
2923 # If the MOZ_MACBUNDLE_ID is defined in the configure.sh, use it
2924 # Otherwise, use MOZ_APP_DISPLAYNAME
2925 if test -z "$MOZ_MACBUNDLE_ID"; then
2926    MOZ_MACBUNDLE_ID=`echo $MOZ_APP_DISPLAYNAME | tr 'A-Z' 'a-z' | tr -dc 'a-z-'`
2928 MOZ_MACBUNDLE_ID=${MOZ_DISTRIBUTION_ID}.${MOZ_MACBUNDLE_ID}
2929 if test "$MOZ_DEBUG"; then
2930   MOZ_MACBUNDLE_ID=${MOZ_MACBUNDLE_ID}debug
2933 AC_DEFINE_UNQUOTED(MOZ_MACBUNDLE_ID,$MOZ_MACBUNDLE_ID)
2934 AC_SUBST(MOZ_MACBUNDLE_ID)
2936 dnl ========================================================
2937 dnl = Child Process Name for IPC
2938 dnl ========================================================
2939 if test "$MOZ_WIDGET_TOOLKIT" != "android"; then
2940   MOZ_CHILD_PROCESS_NAME="plugin-container${BIN_SUFFIX}"
2941 else
2942   # We want to let Android unpack the file at install time, but it only does
2943   # so if the file is named libsomething.so. The lib/ path is also required
2944   # because the unpacked file will be under the lib/ subdirectory and will
2945   # need to be executed from that path.
2946   MOZ_CHILD_PROCESS_NAME="libplugin-container.so"
2948 MOZ_CHILD_PROCESS_BUNDLE="plugin-container.app/Contents/MacOS/"
2949 MOZ_CHILD_PROCESS_BUNDLENAME="${MOZ_APP_DISPLAYNAME}CP"
2951 AC_SUBST(MOZ_CHILD_PROCESS_NAME)
2952 AC_SUBST(MOZ_CHILD_PROCESS_BUNDLE)
2953 AC_SUBST(MOZ_CHILD_PROCESS_BUNDLENAME)
2955 # The following variables are available to branding and application
2956 # configuration ($BRANDING/configure.sh and $APPLICATION/confvars.sh):
2957 # - MOZ_APP_VENDOR: Used for application.ini's "Vendor" field, which also
2958 # impacts profile location and user-visible fields.
2959 # - MOZ_APP_BASENAME: Typically stays consistent for multiple branded
2960 # versions of a given application (e.g. Aurora and Firefox both use
2961 # "Firefox"), but may vary for full rebrandings (e.g. Iceweasel). Used
2962 # for application.ini's "Name" field, which controls profile location in
2963 # the absence of a "Profile" field (see below), and various system
2964 # integration hooks (Unix remoting, Windows MessageWindow name, etc.)
2965 # - MOZ_APP_DISPLAYNAME: Used in user-visible fields (DLL properties,
2966 # Mac Bundle name, Updater, Installer), it is typically used for nightly
2967 # builds (e.g. Aurora for Firefox).
2968 # - MOZ_APP_NAME: Used for e.g. the binary program file name. If not set,
2969 # defaults to a lowercase form of MOZ_APP_BASENAME.
2970 # - MOZ_APP_REMOTINGNAME: Used for the internal program name, which affects
2971 # profile name and remoting. If not set, defaults to MOZ_APP_NAME.
2972 # - MOZ_APP_PROFILE: When set, used for application.ini's
2973 # "Profile" field, which controls profile location.
2974 # - MOZ_APP_ID: When set, used for application.ini's "ID" field, and
2975 # crash reporter server url.
2976 # - MOZ_APP_ANDROID_VERSION_CODE: On Android, "android:versionCode" for
2977 # the main application is set to the value of this variable.  If not
2978 # set, it falls back to a Mozilla-specific value derived from the
2979 # build ID.
2980 # - MOZ_ANDROID_SHARED_ID: On Android, "android:sharedUserId" for all Android
2981 # packages produced.
2982 # - MOZ_ANDROID_GCM_SENDERID: On Android, the Android GCM Sender ID used.  GCM
2983 # sender IDs are not sensitive: see, http://stackoverflow.com/a/18216063.
2984 # - MOZ_MMA_GCM_SENDERID: This GCM Sender ID is used for MMA integration.
2985 # - MOZ_PROFILE_MIGRATOR: When set, enables profile migrator.
2987 # The following environment variables used to have an effect, but don't anymore:
2988 # - MOZ_APP_VERSION: Defines the application version number. This was replaced with
2989 # the contents from the version.txt file in the application directory, or
2990 # browser/config/version.txt if there isn't one.
2991 # - MOZ_APP_VERSION_DISPLAY: Defines the application version number. Used
2992 # in the "About" window. This was replaced with the contents from the
2993 # version_display.txt or version.txt in the application directory, or
2994 # browser/config/version_display.txt.
2996 if test -z "$MOZ_APP_NAME"; then
2997    MOZ_APP_NAME=`echo $MOZ_APP_BASENAME | tr A-Z a-z`
3000 if test -z "$MOZ_APP_REMOTINGNAME"; then
3001    MOZ_APP_REMOTINGNAME=$MOZ_APP_NAME
3004 if test -z "$ANDROID_PACKAGE_NAME" ; then
3005    # When we got rid of the Aurora channel we decided to replace the old
3006    # Nightly ANDROID_PACKAGE_NAME with Aurora. To make sure this is inherited
3007    # by all mozilla-central based branches we make this the new "default"
3008    # for Fennec. Non mozilla-central based branches set ANDROID_PACKAGE_NAME
3009    # in their mozconfig, so they will never get this. If there are ever
3010    # non-Fennec builds for Android, they will fall into the else block
3011    # and use their own default name.
3012    # https://bugzilla.mozilla.org/show_bug.cgi?id=1357808 has additional
3013    # background on this.
3014    if test "$MOZ_APP_NAME" = "fennec"; then
3015       ANDROID_PACKAGE_NAME="org.mozilla.fennec_aurora"
3016    else
3017       ANDROID_PACKAGE_NAME="org.mozilla.$MOZ_APP_NAME"
3018    fi
3021 # Mozilla released Firefox for Android {Release,Beta} and {Aurora,Nightly} to
3022 # the public with specific common shared IDs and we need to keep them
3023 # consistent forever.  The specific common values are set by per-channel
3024 # branding; all other channels use a generic sharedID, set below.
3025 if test -z "$MOZ_ANDROID_SHARED_ID" ; then
3026    MOZ_ANDROID_SHARED_ID="${ANDROID_PACKAGE_NAME}.sharedID"
3029 # For extensions and langpacks, we require a max version that is compatible
3030 # across security releases. MOZ_APP_MAXVERSION is our method for doing that.
3031 # 24.0a1 and 24.0a2 aren't affected
3032 # 24.0 becomes 24.*
3033 # 24.1.1 becomes 24.*
3034 IS_ALPHA=`echo $MOZ_APP_VERSION | grep a`
3035 if test -z "$IS_ALPHA"; then
3036   changequote(,)
3037   if test "$(basename $MOZ_BUILD_APP)" = "suite"; then
3038     MOZ_APP_MAXVERSION=`echo $MOZ_APP_VERSION | sed "s|\(^[0-9]*\.[0-9]*\).*|\1|"`.*
3039   else
3040     MOZ_APP_MAXVERSION=`echo $MOZ_APP_VERSION | sed "s|\(^[0-9]*\).*|\1|"`.*
3041   fi
3042   changequote([,])
3043 else
3044   MOZ_APP_MAXVERSION=$MOZ_APP_VERSION
3047 AC_SUBST(MOZ_APP_NAME)
3048 AC_SUBST(MOZ_APP_REMOTINGNAME)
3049 AC_SUBST(MOZ_APP_DISPLAYNAME)
3050 AC_SUBST(MOZ_APP_BASENAME)
3051 AC_SUBST(MOZ_APP_VENDOR)
3052 AC_SUBST(MOZ_APP_PROFILE)
3053 AC_SUBST(MOZ_APP_ID)
3054 AC_SUBST(MOZ_APP_ANDROID_VERSION_CODE)
3055 AC_SUBST(MOZ_ANDROID_SHARED_ID)
3056 AC_SUBST(MOZ_ANDROID_GCM_SENDERID)
3057 AC_SUBST(MOZ_MMA_GCM_SENDERID)
3058 AC_SUBST(MAR_CHANNEL_ID)
3059 AC_SUBST(ACCEPTED_MAR_CHANNEL_IDS)
3060 AC_SUBST(MOZ_PROFILE_MIGRATOR)
3061 AC_DEFINE_UNQUOTED(MOZ_APP_UA_NAME, "$MOZ_APP_UA_NAME")
3062 AC_SUBST(MOZ_APP_UA_NAME)
3063 AC_DEFINE_UNQUOTED(MOZ_APP_UA_VERSION, "$MOZ_APP_VERSION")
3064 AC_DEFINE_UNQUOTED(BROWSER_CHROME_URL, $BROWSER_CHROME_URL)
3065 AC_DEFINE_UNQUOTED(BROWSER_CHROME_URL_QUOTED, "$BROWSER_CHROME_URL")
3067 AC_SUBST(MOZ_APP_MAXVERSION)
3068 AC_SUBST(MOZ_UA_OS_AGNOSTIC)
3069 if test -n "$MOZ_UA_OS_AGNOSTIC"; then
3070   AC_DEFINE(MOZ_UA_OS_AGNOSTIC)
3073 AC_SUBST(MOZ_PKG_SPECIAL)
3074 AC_SUBST(MOZ_SIMPLE_PACKAGE_NAME)
3076 if test "$MOZILLA_OFFICIAL"; then
3077     # Build revisions should always be present in official builds
3078     MOZ_INCLUDE_SOURCE_INFO=1
3081 # External builds (specifically Ubuntu) may drop the hg repo information, so we allow to
3082 # explicitly set the repository and changeset information in.
3083 AC_SUBST(MOZ_SOURCE_REPO)
3084 AC_SUBST(MOZ_SOURCE_CHANGESET)
3085 AC_SUBST(MOZ_INCLUDE_SOURCE_INFO)
3087 dnl If we have any service that uploads data (and requires data submission
3088 dnl policy alert), set MOZ_DATA_REPORTING.
3089 dnl We need SUBST for build system and DEFINE for xul preprocessor.
3090 if test -n "$MOZ_TELEMETRY_REPORTING" || test -n "$MOZ_SERVICES_HEALTHREPORT" || test -n "$MOZ_CRASHREPORTER"; then
3091   MOZ_DATA_REPORTING=1
3092   AC_DEFINE(MOZ_DATA_REPORTING)
3093   AC_SUBST(MOZ_DATA_REPORTING)
3096 dnl win32 options
3097 AC_SUBST(WIN32_REDIST_DIR)
3098 AC_SUBST(WIN_UCRT_REDIST_DIR)
3100 dnl ========================================================
3101 dnl ICU Support
3102 dnl ========================================================
3104 _INTL_API=yes
3106 if test "$MOZ_WIDGET_TOOLKIT" = "cocoa"; then
3107     USE_ICU=1
3110 MOZ_CONFIG_ICU()
3112 dnl Echo the CFLAGS to remove extra whitespace.
3113 CFLAGS=`echo \
3114     $_COMPILATION_CFLAGS \
3115     $CFLAGS`
3117 CXXFLAGS=`echo \
3118     $_WARNINGS_CXXFLAGS \
3119     $_COMPILATION_CXXFLAGS \
3120     $CXXFLAGS`
3122 COMPILE_CFLAGS=`echo \
3123     $_DEFINES_CFLAGS \
3124     $COMPILE_CFLAGS`
3126 COMPILE_CXXFLAGS=`echo \
3127     $_DEFINES_CXXFLAGS \
3128     $COMPILE_CXXFLAGS`
3130 HOST_CFLAGS=`echo \
3131     $_WARNINGS_HOST_CFLAGS \
3132     $_COMPILATION_HOST_CFLAGS \
3133     $HOST_CFLAGS`
3135 HOST_CXXFLAGS=`echo \
3136     $_WARNINGS_HOST_CXXFLAGS \
3137     $_COMPILATION_HOST_CXXFLAGS \
3138     $HOST_CXXFLAGS`
3140 AC_SUBST(MOZ_SYSTEM_PNG)
3142 AC_SUBST_LIST(MOZ_PNG_CFLAGS)
3143 AC_SUBST_LIST(MOZ_PNG_LIBS)
3145 AC_SUBST(MOZ_SYSTEM_NSPR)
3147 AC_SUBST(MOZ_SYSTEM_NSS)
3149 HOST_CMFLAGS="-x objective-c -fobjc-exceptions"
3150 HOST_CMMFLAGS="-x objective-c++ -fobjc-exceptions"
3151 OS_COMPILE_CMFLAGS="-x objective-c -fobjc-exceptions"
3152 OS_COMPILE_CMMFLAGS="-x objective-c++ -fobjc-exceptions"
3153 if test "$MOZ_WIDGET_TOOLKIT" = uikit; then
3154   OS_COMPILE_CMFLAGS="$OS_COMPILE_CMFLAGS -fobjc-abi-version=2 -fobjc-legacy-dispatch"
3155   OS_COMPILE_CMMFLAGS="$OS_COMPILE_CMMFLAGS -fobjc-abi-version=2 -fobjc-legacy-dispatch"
3157 AC_SUBST(HOST_CMFLAGS)
3158 AC_SUBST(HOST_CMMFLAGS)
3159 AC_SUBST(OS_COMPILE_CMFLAGS)
3160 AC_SUBST(OS_COMPILE_CMMFLAGS)
3162 OS_CFLAGS="$CFLAGS"
3163 OS_CXXFLAGS="$CXXFLAGS"
3164 OS_CPPFLAGS="$CPPFLAGS"
3165 OS_COMPILE_CFLAGS="$COMPILE_CFLAGS"
3166 OS_COMPILE_CXXFLAGS="$COMPILE_CXXFLAGS"
3167 OS_LDFLAGS="$LDFLAGS"
3168 OS_LIBS="$LIBS"
3169 AC_SUBST_LIST(OS_CFLAGS)
3170 AC_SUBST_LIST(OS_CXXFLAGS)
3171 AC_SUBST_LIST(OS_CPPFLAGS)
3172 AC_SUBST_LIST(OS_COMPILE_CFLAGS)
3173 AC_SUBST_LIST(OS_COMPILE_CXXFLAGS)
3174 AC_SUBST_LIST(OS_LDFLAGS)
3175 AC_SUBST(OS_LIBS)
3177 AC_SUBST(HOST_CC)
3178 AC_SUBST(HOST_CXX)
3179 AC_SUBST_LIST(HOST_CFLAGS)
3180 AC_SUBST_LIST(HOST_CPPFLAGS)
3181 AC_SUBST_LIST(HOST_CXXFLAGS)
3182 AC_SUBST(HOST_LDFLAGS)
3183 AC_SUBST_LIST(HOST_OPTIMIZE_FLAGS)
3184 AC_SUBST(HOST_BIN_SUFFIX)
3186 AC_SUBST(TARGET_XPCOM_ABI)
3187 AC_SUBST(HAVE_TOOLCHAIN_SUPPORT_MSSSE3)
3188 AC_SUBST(HAVE_TOOLCHAIN_SUPPORT_MSSE4_1)
3189 AC_SUBST(HAVE_X86_AVX2)
3190 AC_SUBST(HAVE_ALTIVEC)
3192 AC_SUBST_LIST(DSO_CFLAGS)
3193 AC_SUBST_LIST(DSO_PIC_CFLAGS)
3194 AC_SUBST(DSO_LDOPTS)
3195 AC_SUBST(BIN_SUFFIX)
3196 AC_SUBST(USE_N32)
3197 AC_SUBST(NS_ENABLE_TSF)
3198 AC_SUBST(WIN32_CONSOLE_EXE_LDFLAGS)
3199 AC_SUBST(WIN32_GUI_EXE_LDFLAGS)
3201 AC_SUBST(MOZ_DEVTOOLS)
3203 AC_SUBST(MOZ_PACKAGE_JSSHELL)
3204 AC_SUBST(MOZ_FOLD_LIBS)
3205 AC_SUBST_LIST(MOZ_FOLD_LIBS_FLAGS)
3207 AC_SUBST(DMG_TOOL)
3209 dnl Host JavaScript runtime, if any, to use during cross compiles.
3210 AC_SUBST(JS_BINARY)
3212 AC_SUBST(NSS_EXTRA_SYMBOLS_FILE)
3214 if test -n "$COMPILE_ENVIRONMENT"; then
3215 AC_CHECK_FUNCS(posix_fadvise posix_fallocate)
3217 dnl Check for missing components
3218 if test "$MOZ_X11"; then
3219     dnl ====================================================
3220     dnl = Check if X headers exist
3221     dnl ====================================================
3222     _SAVE_CFLAGS=$CFLAGS
3223     CFLAGS="$CFLAGS $XCFLAGS"
3224     AC_TRY_COMPILE([
3225         #include <stdio.h>
3226         #include <stdlib.h>
3227         #include <X11/Xlib.h>
3228         #include <X11/Intrinsic.h>
3229         #include <X11/extensions/XShm.h>
3230     ],
3231     [
3232         Display *dpy = 0;
3233         if ((dpy = XOpenDisplay(NULL)) == NULL) {
3234             fprintf(stderr, ": can't open %s\n", XDisplayName(NULL));
3235             exit(1);
3236         }
3237     ], [],
3238     [ AC_MSG_ERROR([Can't find X headers (install libxt-dev (Debian/Ubuntu), libXt-devel (Fedora), or xorg-x11-libXt-devel (SuSE)).]) ])
3239     CFLAGS="$_SAVE_CFLAGS"
3241     if test -n "$MISSING_X"; then
3242         AC_MSG_ERROR([ Could not find the following X libraries: $MISSING_X ]);
3243     fi
3245 fi # MOZ_X11
3247 fi # COMPILE_ENVIRONMENT
3249 dnl Set various defines and substitutions
3250 dnl ========================================================
3252 if test "$ACCESSIBILITY" -a "$MOZ_ENABLE_GTK" ; then
3253     AC_DEFINE(MOZ_ACCESSIBILITY_ATK)
3254     ATK_FULL_VERSION=`$PKG_CONFIG --modversion atk`
3255     ATK_MAJOR_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $1 }'`
3256     ATK_MINOR_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $2 }'`
3257     ATK_REV_VERSION=`echo ${ATK_FULL_VERSION} | $AWK -F\. '{ print $3 }'`
3258     AC_DEFINE_UNQUOTED(ATK_MAJOR_VERSION, $ATK_MAJOR_VERSION)
3259     AC_DEFINE_UNQUOTED(ATK_MINOR_VERSION, $ATK_MINOR_VERSION)
3260     AC_DEFINE_UNQUOTED(ATK_REV_VERSION, $ATK_REV_VERSION)
3263 AC_SUBST(MOZ_DEV_EDITION)
3264 if test -n "$MOZ_DEV_EDITION"; then
3265     AC_DEFINE(MOZ_DEV_EDITION)
3268 if test "$MOZ_DEBUG" -o "$DEVELOPER_OPTIONS"; then
3269     A11Y_LOG=1
3271 AC_SUBST(A11Y_LOG)
3272 if test -n "$A11Y_LOG"; then
3273     AC_DEFINE(A11Y_LOG)
3276 dnl Spit out some output
3277 dnl ========================================================
3279 dnl The following defines are used by xpcom
3280 _NON_GLOBAL_ACDEFINES="$_NON_GLOBAL_ACDEFINES
3281 CPP_THROW_NEW
3282 HAVE_GETPAGESIZE
3283 HAVE_STATVFS64
3284 HAVE_STATVFS
3285 HAVE_STATFS64
3286 HAVE_STATFS
3287 HAVE_SYS_STATVFS_H
3288 HAVE_SYS_STATFS_H
3289 HAVE_SYS_VFS_H
3290 HAVE_SYS_MOUNT_H
3293 # Avoid using obsolete NSPR features
3294 AC_DEFINE(NO_NSPR_10_SUPPORT)
3296 MOZ_CREATE_CONFIG_STATUS()
3298 rm -fr confdefs* $ac_clean_files