Description
--------------------------------
Fix a build break in filesystem/http when building
on the build farm. datafsys should be included in
the httpfsys plugin factory only when
HELIX_CONFIG_HTTP_INCLUDE_DATAFSYS is defined,
not when just !defined(_SYMBIAN).
Files Modified
---------------------------------------
filesystem/http/factory.cpp
Branches
--------------------------------------
HEAD
Index: factory.cpp
============================================================
=======
RCS file: /cvsroot/filesystem/http/factory.cpp,v
retrieving revision 1.12
diff -u -w -u -w -r1.12 factory.cpp
--- factory.cpp 25 Mar 2008 19:50:46 -0000 1.12
+++ factory.cpp 9 May 2008 17:12:37 -0000
 -108,7
+108,7 
#undef HX_THIS_FILE
static const char HX_THIS_FILE[] = __FILE__;
#endif
-#if !defined(_SYMBIAN)
+#if defined(HELIX_CONFIG_HTTP_INCLUDE_DATAFSYS)
#include "datafsys.h"
#endif
#include "httpfsys.h"
 -117,21
+117,21 
HX_RESULT (STDAPICALLTYPE * const
HTTPPluginFactory::m_fpEntryArray[])(IUnknown**)={
CHTTPFileSystem::HXCreateInstance,
-#if !defined(_SYMBIAN)
+#if defined(HELIX_CONFIG_HTTP_INCLUDE_DATAFSYS)
DataFileSystem::HXCreateInstance,
#endif
0};
HX_RESULT (STDAPICALLTYPE * const
HTTPPluginFactory::m_fpExitArray[])()={
CHTTPFileSystem::HXShutdown,
-#if !defined(_SYMBIAN)
+#if defined(HELIX_CONFIG_HTTP_INCLUDE_DATAFSYS)
DataFileSystem::HXShutdown,
#endif
0};
HX_RESULT (* const
HTTPPluginFactory::m_fpUnloadArray[])()={
CHTTPFileSystem::CanUnload,
-#if !defined(_SYMBIAN)
+#if defined(HELIX_CONFIG_HTTP_INCLUDE_DATAFSYS)
DataFileSystem::CanUnload,
#endif
0};
=============================================
Eric Hyche (ehyche real.com)
Technical Lead
RealNetworks, Inc.
_______________________________________________
Filesystem-dev mailing list
Filesystem-dev helixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/
filesystem-dev
|