summaryrefslogtreecommitdiffstats
path: root/build
Commit message (Collapse)AuthorAgeLines
* Issue #251 - Move MOZ_AV1 back to ac configure for everyone to use.wolfbeast2020-04-16-0/+1
|
* Alter config.guess to properly detect host and target bitness on SunOSMatt A. Tobin2020-04-07-5/+8
|
* Issue #1497 - Re-implement an un-preprocessed file checkNew Tobin Paradigm2020-04-04-0/+72
|
* Teach config.guess to know if we want to build 32 or 64 bit builds on WindowsMatt A. Tobin2020-03-28-0/+7
|
* Issue #1467 - Part 4: Rename NSS_SQLSTORE to MOZ_SECURITY_SQLSTORE.wolfbeast2020-03-19-1/+1
| | | | Rename the build config option accordingly.
* Issue #1467 - Part 1b: Fix type and make moz.configure happy.wolfbeast2020-03-17-0/+1
|
* Revert "Issue #190 - Part 1: Remove XP_IOS conditional code"Matt A. Tobin2020-02-28-0/+7
| | | | This reverts commit 6a3d5769d01ec1a8dd56ea79aec2df91b801ce02.
* Issue #190 - Part 1: Remove XP_IOS conditional codeMatt A. Tobin2020-02-28-7/+0
|
* Issue #251 - Move --disable-dbm to ac configureMatt A. Tobin2020-02-28-0/+1
| | | | Also Tag #1467
* Issue #1319 - Remove EARLY_BETA_OR_EARLIER conditionMatt A. Tobin2020-02-28-3/+0
|
* Issue #1342 - Remove support for system libvpxwolfbeast2020-01-31-2/+0
|
* Issue #1342 - Remove support for system sqlitewolfbeast2020-01-31-2/+0
|
* Issue #1342 - Update old.configure for removed build optionswolfbeast2020-01-31-3/+0
|
* Issue #1342 - Remove support for system linbpngwolfbeast2020-01-31-2/+0
|
* Issue #1342 - Remove support for system NSPR/NSSwolfbeast2020-01-30-34/+2
|
* Issue #1342 - Remove support for system ICUwolfbeast2020-01-29-16/+2
|
* Issue #1342 - Remove support for system libeventwolfbeast2020-01-23-1/+0
|
* Issue #1322 - Part 2: Remove --enable-sm-promise buildconfig switch.wolfbeast2019-12-19-8/+0
|
* Issue #1323 - Move XULRunner back to topsrcdirMatt A. Tobin2019-12-16-9/+4
|
* Issue #1258 - Part 8: Ifdef MailNews OAuth2 SupportMatt A. Tobin2019-11-05-0/+1
| | | | Use --disable-mailnews-oauth2 to exclude it. Confvars won't be respected.
* Issue #1258 - Part 3: Make mailnews and friends buildMatt A. Tobin2019-11-03-0/+1
|
* Issue #1265 - Expose sndio as a build option for any supporting systemGaming4JC2019-11-02-0/+1
|
* MoonchildProductions#1251 - Part 26: Oracle Solaris gsed/ICU fix.athenian2002019-10-21-1/+1
| | | | OpenIndiana didn't need this for some reason, but on Oracle Solaris, we need this to make sure we're using gsed (GNU sed) here. It's probably a safer bet anyway.
* MoonchildProductions#1251 - Part 7: All the posix_m* memory-related stuff, ↵athenian2002019-10-21-0/+3
| | | | | | | | | | gathered together. https://bugzilla.mozilla.org/show_bug.cgi?id=1158445 https://bugzilla.mozilla.org/show_bug.cgi?id=963983 https://bugzilla.mozilla.org/show_bug.cgi?id=1542758 Solaris madvise and malign don't perfectly map to their POSIX counterparts, and some Linux versions (especially Android) don't define the POSIX counterparts at all, so options are limited. Ideally posix_madvise and posix_malign should be the safer and more portable options for all platforms.
* MoonchildProductions#1251 - Part 4: Core build system changes, lots of ↵athenian2002019-10-21-0/+24
| | | | | | | | libevent/IPC junk. This is mostly ifdefs, but as you can see, Solaris is actually a lot like Linux. They're both more SysV than BSD at core, and most of the differences have more to do with Solaris not using glibc than anything else. I still need to audit a lot of these changes and understand why they're needed and what the alternative approaches are. After this patch, most of the core functionality needed to build Solaris is here.
* MoonchildProductions#1251 - Part 1: Restore initial Solaris support, fixed up.athenian2002019-10-21-0/+1
| | | | | | | | | | | | | | Compared with what Pale Moon had for Solaris originally, this is mostly the same zero point I started patching from, but I've made the following changes here after reviewing all this initial code I never looked at closely before. 1. In package-manifest.in for both Basilisk and Pale Moon, I've made the SPARC code for libfreebl not interefere with the x86 code, use the proper build flags, and also updated it to allow a SPARC64 build which is more likely to be used than the 32-bit SPARC code we had there. 2. See Mozilla bug #832272 and the old rules.mk patch from around Firefox 30 in oracle/solaris-userland. I believe they screwed up NSINSTALL on Solaris when they were trying to streamline the NSS buildsystem, because they started having unexplained issues with it around that time after Firefox 22 that they never properly resolved until Mozilla began building NSS with gyp files. I'm actually not even sure how relevant the thing they broke actually is to Solaris at this point, bug 665509 is so old it predates Firefox itself and goes back to the Mozilla suite days. I believe $(INSTALL) -t was wrong, and they meant $(NSINSTALL) -t because that makes more sense and is closer to what was there originally. It's what they have for WINNT, and it's possible a fix more like that could serve for Solaris as well. Alternatively, we could get rid of all these half-broken Makefiles and start building NSS with gyp files like Mozilla did. 3. I've completely cut out support for the Sun compiler and taken into account the reality that everyone builds Firefox (and therefore its forks) with GCC now on Solaris. This alone helped clean up a lot of the uglier parts of the code. 4. I've updated all remaining SOLARIS build flags to the newer XP_SOLARIS, because the SOLARIS flag is no longer set when building Solaris. 5. I've confirmed the workaround in gtxFontconfigFonts.cpp is no longer necessary. The Solaris people got impatient about implementing a half-baked patch for a fontconfig feature that wasn't ready yet back in 2009, and somehow convinced Mozilla to patch their software to work around it when really they should have just fixed or removed their broken fontconfig patch. The feature they wanted has since been implemented properly, and no version of Solaris still uses the broken patch that required this fix. If anyone had ever properly audited this code, it would have been removed a long time ago.
* Issue #1226 - Explicitly enable sse2 on x86_64 also.wolfbeast2019-09-10-1/+1
| | | | | | Although it's enabled by default in gcc (should be, anyway!), we're being explicit here for 64-bit x86 platforms here also. This matches the old behavior.
* Don't assume Intel architecture for compiler optimizations on Linux/gcc.wolfbeast2019-09-10-2/+7
| | | | | This only adds SSE2 flags when the CPU architecture is correct for it. Resolves #1226
* Issue #1217 - Add support for (later versions of) the Windows 10 SDKAscrod2019-09-01-4/+8
|
* [Pale Moon] Add a configure flag to functionally disable personas at build timeMatt A. Tobin2019-06-29-0/+1
|
* Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove ↵Matt A. Tobin2019-04-23-1/+0
| | | | mobile/android
* Issue #187: Remove solaris 1st party code OS checks.wolfbeast2019-03-30-1/+0
|
* Remove OMX related options from configuretrav902018-12-16-2/+0
|
* [PALEMOON] Complete making Sync optional at build timeMatt A. Tobin2018-12-01-0/+4
|
* Issue #795 - Make nsIUserInfo component optionalGaming4JC2018-10-25-0/+1
| | | | | | This allows the nsIUserinfo component to be disabled with --disable-userinfo in mozconfig at build time, but leaves it on by default to avoid any compatibility issues in existing applications.
* [GCC] Add -Wno-noexcept-type to the js build flagstrav902018-09-06-0/+8
|
* Disable -Werror on -Wmultistatement-macrostrav902018-08-10-0/+3
| | | | Silences compiler warning spam with GCC 8.
* Issue #303 Part 2: Update build files for the new locationwolfbeast2018-06-04-2/+3
|
* Always build with SSE2 support when using GCCtrav902018-06-03-2/+2
|
* Teach moz.configure about --enable-precompiled-startupcachewolfbeast2018-06-01-0/+1
|
* Revert "Always build with SSE2 support & display an error if not available"Moonchild2018-05-28-2/+2
|
* Remove extraneous SSE flagtrav902018-05-27-1/+1
|
* Tweak SSE/SSE2 GCC flagstrav902018-05-27-1/+1
|
* Always build with SSE2 support when using GCCtrav902018-05-27-2/+2
|
* Remove the Dark Matter Detector (DMD) Memeory debugger component.wolfbeast2018-05-23-4/+1
| | | | This resolves #376.
* Remove moz_widget_toolkit_gonkwolfbeast2018-05-14-1/+0
| | | | Tag #288
* Remove other gonk widget conditionals and unused files.wolfbeast2018-05-13-13/+6
| | | | Tag #288.
* Use application specific application.iniMatt A. Tobin2018-05-05-73/+15
|
* Merge branch 'intl-ICU-emoji-work'wolfbeast2018-05-04-37/+2
|\
| * Issue #325 Part 15: Remove ENABLE_INTL_API and EXPOSE_INTL_API flags.wolfbeast2018-05-04-18/+2
| |