- Timestamp:
- Jan 29, 2009 10:58:38 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42241
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r16391 r16392 1015 1015 xpcom/io/nsUnicharInputStream.cpp \ 1016 1016 xpcom/io/nsNativeCharsetUtils.cpp 1017 VBox-xpcom-io_SOURCES.darwin = \1017 VBox-xpcom-io_SOURCES.darwin.x86 = \ 1018 1018 xpcom/io/nsLocalFileOSX.cpp \ 1019 1019 xpcom/MoreFiles/FSCopyObject.c \ … … 1021 1021 VBox-xpcom-io_SOURCES.l4 = \ 1022 1022 xpcom/io/nsLocalFileL4.cpp 1023 if eq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),)1023 if1of ($(KBUILD_TARGET) $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), freebsd linux netbsd openbsd solaris darwin.amd64) 1024 1024 VBox-xpcom-io_SOURCES += \ 1025 1025 xpcom/io/nsLocalFileUnix.cpp -
trunk/src/libs/xpcom18a4/xpcom/io/nsLocalFile.h
r1 r16392 37 37 * ***** END LICENSE BLOCK ***** 38 38 * 39 * This Original Code has been modified by IBM Corporation. Modifications made by IBM 39 * This Original Code has been modified by IBM Corporation. Modifications made by IBM 40 40 * described herein are Copyright (c) International Business Machines Corporation, 2000. 41 41 * Modifications to Mozilla code or documentation identified per MPL Section 3.3 … … 71 71 #ifdef XP_WIN 72 72 #include "nsLocalFileWin.h" 73 #elif defined(XP_MACOSX) 73 #elif defined(XP_MACOSX) && (!defined(VBOX) || !defined(RT_ARCH_AMD64)) 74 74 #include "nsLocalFileOSX.h" 75 75 #elif defined(XP_MAC) … … 78 78 /* Major hack attack!!! */ 79 79 #include "nsLocalFileL4.h" 80 #elif defined(XP_UNIX) || defined(XP_BEOS) 80 #elif defined(XP_UNIX) || defined(XP_BEOS) || (defined(VBOX) && defined(XP_MACOSX)) 81 81 #include "nsLocalFileUnix.h" 82 82 #elif defined(XP_OS2)
Note:
See TracChangeset
for help on using the changeset viewer.