/** Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).* All rights reserved.* This component and the accompanying materials are made available* under the terms of "Eclipse Public License v1.0"* which accompanies this distribution, and is available* at the URL "http://www.eclipse.org/legal/epl-v10.html".** Initial Contributors:* Nokia Corporation - initial contribution.** Contributors:** Description:**/TARGET xmlengine.dllTARGETTYPE dllUID 0x1000008D 0x10285EF9//Macros for performance improvementmacro XE_ENABLE_GS_CACHINGSOURCEPATH ../src/libxml2SOURCE xmlenglibxml2dll.cppSOURCEPATH ../src/libxml2SOURCE libxml2_c14n.cSOURCE libxml2_chvalid.cSOURCE libxml2_dict.cSOURCE libxml2_encoding.cSOURCE libxml2_entities.cSOURCE libxml2_error.cSOURCE libxml2_globals.cSOURCE libxml2_hash.cSOURCE libxml2_htmlparser.c SOURCE libxml2_htmltree.c SOURCE libxml2_xinclude.cSOURCE libxml2_list.cSOURCE libxml2_parser.cSOURCE libxml2_parserinternals.cSOURCE libxml2_sax2.cSOURCE libxml2_sax.cSOURCE libxml2_threads.cSOURCE libxml2_tree.cSOURCE libxml2_uri.cSOURCE libxml2_valid.cSOURCE libxml2_xmlio.cSOURCE libxml2_xmlmemory.cSOURCE libxml2_xmlreader.cSOURCE libxml2_xmlsave.c SOURCE libxml2_xmlwriter.cSOURCE libxml2_xmlschemas.c SOURCE libxml2_xmlschemastypes.c SOURCE libxml2_xmlstring.cSOURCE libxml2_xpath.cSOURCE libxml2_xpointer.cUSERINCLUDE ../inc/libxml2_nonexportUSERINCLUDE ../src/libxml2USERINCLUDE ../inc/libxml2OS_LAYER_LIBC_SYSTEMINCLUDEOS_LAYER_SYSTEMINCLUDE_SYMBIANSYSTEMINCLUDE /epoc32/include/stdapis/libxml2LIBRARY libc.lib LIBRARY libm.lib LIBRARY euser.lib nostrictdefCAPABILITY ALL -TCBVENDORID 0x70000001// RVCT compiler warning options// Warning: #177-D: variable "X" was declared but never referenced// Warning: #550-D: parameter "X" was set but never used// 186-D: pointless comparison of unsigned integer with zero// 1293-D: assignment in conditionOPTION ARMCC --diag_suppress 177,550,186,1293// CW compiler warning options// warning: variable / argument 'X' is not used in functionOPTION CW -w nounused// GCC compiler warning options// "-w" option suppresses all warnings! Libxml2 does many operations on void// pointers and thus many spurious warnings are raised. There is no GCC option// to further refine which warnings are supressed.OPTION GCC -w// Libxml2 assigns void pointers to other pointer types without a cast// The -fpermissive flag will remove this error in gccxml. However,// the OPTION statement is not supported for gccxml, so the following// creative solution achieves the same thing.#if defined(GCCXML)MACRO "NOTAMACRO -fpermissive"OPTION GCCXML -fpermissive#endifSMPSAFE