mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset da25394a8b55 (bug 802706) for build bustage
This commit is contained in:
parent
e37ae07500
commit
7936d28c91
@ -7,6 +7,7 @@
|
||||
* This code is based on original Mozilla gnome-vfs extension. It implements
|
||||
* input stream provided by GVFS/GIO.
|
||||
*/
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "mozilla/ModuleUtils.h"
|
||||
#include "nsIPrefService.h"
|
||||
#include "nsIPrefBranch.h"
|
||||
|
@ -5,6 +5,7 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "nsJARInputStream.h"
|
||||
#include "zipstruct.h" // defines ZIP compression codes
|
||||
#include "nsZipArchive.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
*/
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "nsEscape.h"
|
||||
#include "nsDirectoryIndexStream.h"
|
||||
#include "nsXPIDLString.h"
|
||||
|
@ -10,6 +10,7 @@
|
||||
#define FORCE_PR_LOG // Allow logging in the release build
|
||||
#endif
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "mozilla/net/CookieServiceChild.h"
|
||||
#include "mozilla/net/NeckoCommon.h"
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "nsTraceRefcntImpl.h"
|
||||
|
||||
// if NS_BUILD_REFCNT_LOGGING isn't defined, don't try to build
|
||||
|
@ -3,6 +3,7 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "nsAboutCache.h"
|
||||
#include "nsIIOService.h"
|
||||
#include "nsIServiceManager.h"
|
||||
|
@ -5,6 +5,7 @@
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "nsAboutCacheEntry.h"
|
||||
#include "nsICacheService.h"
|
||||
#include "nsICacheSession.h"
|
||||
|
@ -3,6 +3,7 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "nsFTPDirListingConv.h"
|
||||
#include "nsMemory.h"
|
||||
#include "plstr.h"
|
||||
|
@ -12,6 +12,7 @@
|
||||
-Gagan Saksena 04/29/99
|
||||
*/
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "TestCommon.h"
|
||||
|
||||
#define FORCE_PR_LOG
|
||||
|
@ -19,6 +19,7 @@
|
||||
|
||||
*/
|
||||
|
||||
#include "NSPRFormatTime.h" // must be before anything that includes prtime.h
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsIRDFDataSource.h"
|
||||
#include "nsIRDFNode.h"
|
||||
|
@ -2,6 +2,7 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "NSPRFormatTime.h" // must include before any headers that include prtime.h
|
||||
#include "nsAppRunner.h"
|
||||
|
||||
#include "prio.h"
|
||||
|
@ -68,6 +68,7 @@ EXPORTS = \
|
||||
nsWeakPtr.h \
|
||||
nsInterfaceRequestorAgg.h \
|
||||
nsGZFileWriter.h \
|
||||
NSPRFormatTime.h \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS_NAMESPACES = mozilla
|
||||
|
12
xpcom/base/NSPRFormatTime.h
Normal file
12
xpcom/base/NSPRFormatTime.h
Normal file
@ -0,0 +1,12 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
// Temporarily undefine to build successfully with NO_NSPR_10_SUPPORT
|
||||
#ifdef prtime_h___
|
||||
#error NSPRFormatTime.h must be included before any header that includes prtime.h
|
||||
#endif
|
||||
#undef NO_NSPR_10_SUPPORT
|
||||
#include "prtime.h"
|
||||
#define NO_NSPR_10_SUPPORT
|
Loading…
Reference in New Issue
Block a user