(file) Return to config.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak

Diff for /pegasus/mak/config.mak between version 1.177 and 1.178

version 1.177, 2008/11/04 18:40:30 version 1.178, 2008/11/12 17:22:31
Line 1422 
Line 1422 
   endif   endif
 endif endif
  
   ##==============================================================================
   ##
   ## PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL
   ##
   ##     Enable binary protocol between cimserver and out-of-process providers.
   ##     By default this feature is enabled.
   ##
   ##==============================================================================
   
   ifndef PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL
     PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL=true
   endif
   
   ifeq ($(PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL),true)
     DEFINES += -DPEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL
   else
     ifneq ($(PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL),false)
       $(error "PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL must be true or false")
     endif
   endif
   
   ##==============================================================================
   ##
   ## PEGASUS_ENABLE_ENCAPSULATED_XML
   ##
   ##     Enable encapsulated XML within binary protocol messages. This improves
   ##     performance by allowing provider to format XML which the server can
   ##     pass through to client without converting to CIMInstances.
   ##
   ##==============================================================================
   
   ifndef PEGASUS_ENABLE_ENCAPSULATED_XML
     PEGASUS_ENABLE_ENCAPSULATED_XML=false
   endif
   
   ifeq ($(PEGASUS_ENABLE_ENCAPSULATED_XML),true)
     DEFINES += -DPEGASUS_ENABLE_ENCAPSULATED_XML
   else
     ifneq ($(PEGASUS_ENABLE_ENCAPSULATED_XML),false)
       $(error "PEGASUS_ENABLE_ENCAPSULATED_XML must be true or false")
     endif
   endif


Legend:
Removed from v.1.177  
changed lines
  Added in v.1.178

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2