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

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

version 1.171.4.2, 2008/10/20 05:25:22 version 1.178, 2008/11/12 17:22:31
Line 444 
Line 444 
         else         else
             ifeq ($(OS),zos)             ifeq ($(OS),zos)
                 EXTRA_LIBRARIES += \                 EXTRA_LIBRARIES += \
                     $(ICU_INSTALL)/lib/libicui18n.x \                      $(ICU_INSTALL)/lib/libicui18n$(DYNLIB_SUFFIX) \
                     $(ICU_INSTALL)/lib/libicuuc.x                      $(ICU_INSTALL)/lib/libicuuc$(DYNLIB_SUFFIX)
             else             else
                 EXTRA_LIBRARIES += -licuuc -licui18n                 EXTRA_LIBRARIES += -licuuc -licui18n
                 ifeq ($(OS),linux)                 ifeq ($(OS),linux)
Line 539 
Line 539 
   endif   endif
 endif endif
  
   # Control whether the class definitions in the repository contain elements
   # propagated from superclass definitions.
   
   ifndef PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES
       PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES = false
   endif
   
   ifeq ($(PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES),true)
       DEFINES += -DPEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES
   else
       ifneq ($(PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES),false)
           $(error PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES ($(PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES)) invalid, must be true or false)
       endif
   endif
   
   # SQLite repository support
   
   ifndef PEGASUS_USE_SQLITE_REPOSITORY
       PEGASUS_USE_SQLITE_REPOSITORY = false
   endif
   
   ifeq ($(PEGASUS_USE_SQLITE_REPOSITORY),true)
       ifeq ($(PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES),true)
           $(error PEGASUS_REPOSITORY_STORE_COMPLETE_CLASSES may not be set to true when PEGASUS_USE_SQLITE_REPOSITORY is true)
       endif
       DEFINES += -DPEGASUS_USE_SQLITE_REPOSITORY
   else
       ifneq ($(PEGASUS_USE_SQLITE_REPOSITORY),false)
           $(error PEGASUS_USE_SQLITE_REPOSITORY ($(PEGASUS_USE_SQLITE_REPOSITORY)) invalid, must be true or false)
       endif
   endif
   
 # PEP 161 # PEP 161
 # Control whether utf-8 filenames are supported by the repository  # Control whether utf-8 filenames are supported by the repository.
   # Note: These options only apply to the file-based repository, not SQLite.
 ifdef PEGASUS_SUPPORT_UTF8_FILENAME ifdef PEGASUS_SUPPORT_UTF8_FILENAME
     DEFINES += -DPEGASUS_SUPPORT_UTF8_FILENAME     DEFINES += -DPEGASUS_SUPPORT_UTF8_FILENAME
  
Line 651 
Line 684 
     DEFINES += -DPEGASUS_ENABLE_OBJECT_NORMALIZATION     DEFINES += -DPEGASUS_ENABLE_OBJECT_NORMALIZATION
 endif endif
  
 # PEP 233  
 # Controls support for EmbeddedInstance properties  
 # and parameters  
 ifndef PEGASUS_EMBEDDED_INSTANCE_SUPPORT  
     PEGASUS_EMBEDDED_INSTANCE_SUPPORT = true  
 endif  
   
 ifeq ($(PEGASUS_EMBEDDED_INSTANCE_SUPPORT), true)  
     DEFINES += -DPEGASUS_EMBEDDED_INSTANCE_SUPPORT  
 else  
     ifneq ($(PEGASUS_EMBEDDED_INSTANCE_SUPPORT), false)  
         $(error PEGASUS_EMBEDDED_INSTANCE_SUPPORT ($(PEGASUS_EMBEDDED_INSTANCE_SUPPORT)) invalid, must be true or false)  
     endif  
 endif  
   
   
 # Allow ExecQuery functionality to be enabled # Allow ExecQuery functionality to be enabled
 ifndef PEGASUS_ENABLE_EXECQUERY ifndef PEGASUS_ENABLE_EXECQUERY
     DEFINES += -DPEGASUS_DISABLE_EXECQUERY     DEFINES += -DPEGASUS_DISABLE_EXECQUERY
Line 877 
Line 894 
 ############################################################################ ############################################################################
 # #
 # PEGASUS_USE_OPENSLP # PEGASUS_USE_OPENSLP
   
 ## NOTE: This variable has been deprecated and superceeded by the use of ## NOTE: This variable has been deprecated and superceeded by the use of
 ## PEGASUS_USE_EXTERNAL_SLP. The use of this variable may be ## PEGASUS_USE_EXTERNAL_SLP. The use of this variable may be
 ## removed from Pegasus in future releases. It is converted to the ## removed from Pegasus in future releases. It is converted to the
Line 1404 
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.171.4.2  
changed lines
  Added in v.1.178

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2