diff options
Diffstat (limited to 'netwerk/streamconv')
-rw-r--r-- | netwerk/streamconv/converters/moz.build | 6 | ||||
-rw-r--r-- | netwerk/streamconv/converters/nsHTTPCompressConv.cpp | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/netwerk/streamconv/converters/moz.build b/netwerk/streamconv/converters/moz.build index 10354357be..4c0d177c5a 100644 --- a/netwerk/streamconv/converters/moz.build +++ b/netwerk/streamconv/converters/moz.build @@ -10,7 +10,7 @@ XPIDL_SOURCES += [ XPIDL_MODULE = 'necko_http' -UNIFIED_SOURCES += [ +SOURCES += [ 'mozTXTToHTMLConv.cpp', 'nsDirIndex.cpp', 'nsDirIndexParser.cpp', @@ -22,13 +22,13 @@ UNIFIED_SOURCES += [ ] if 'ftp' in CONFIG['NECKO_PROTOCOLS']: - UNIFIED_SOURCES += [ + SOURCES += [ 'nsFTPDirListingConv.cpp', 'ParseFTPList.cpp', ] if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'cocoa': - UNIFIED_SOURCES += [ + SOURCES += [ 'nsBinHexDecoder.cpp', ] diff --git a/netwerk/streamconv/converters/nsHTTPCompressConv.cpp b/netwerk/streamconv/converters/nsHTTPCompressConv.cpp index c35b0dcace..2821c9aed6 100644 --- a/netwerk/streamconv/converters/nsHTTPCompressConv.cpp +++ b/netwerk/streamconv/converters/nsHTTPCompressConv.cpp @@ -15,8 +15,10 @@ #include "nsThreadUtils.h" #include "mozilla/Preferences.h" #include "mozilla/Logging.h" +#include "mozilla/UniquePtrExtensions.h" #include "nsIForcePendingChannel.h" #include "nsIRequest.h" +#include <inttypes.h> // brotli headers #include "state.h" |