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

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

version 1.178, 2008/11/12 17:22:31 version 1.183.2.2, 2010/07/15 09:36:53
Line 1 
Line 1 
 #//%2006////////////////////////////////////////////////////////////////////////  #//%LICENSE////////////////////////////////////////////////////////////////
 #// #//
 #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  #// Licensed to The Open Group (TOG) under one or more contributor license
 #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  #// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  #// this work for additional information regarding copyright ownership.
 #// IBM Corp.; EMC Corporation, The Open Group.  #// Each contributor licenses this file to you under the OpenPegasus Open
 #// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  #// Source License; you may not use this file except in compliance with the
 #// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  #// License.
 #// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 #// EMC Corporation; VERITAS Software Corporation; The Open Group.  
 #// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;  
 #// EMC Corporation; Symantec Corporation; The Open Group.  
 #// #//
 #// Permission is hereby granted, free of charge, to any person obtaining a copy  #// Permission is hereby granted, free of charge, to any person obtaining a
 #// of this software and associated documentation files (the "Software"), to  #// copy of this software and associated documentation files (the "Software"),
 #// deal in the Software without restriction, including without limitation the  #// to deal in the Software without restriction, including without limitation
 #// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  #// the rights to use, copy, modify, merge, publish, distribute, sublicense,
 #// sell copies of the Software, and to permit persons to whom the Software is  #// and/or sell copies of the Software, and to permit persons to whom the
 #// furnished to do so, subject to the following conditions:  #// Software is furnished to do so, subject to the following conditions:
 #// #//
 #// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  #// The above copyright notice and this permission notice shall be included
 #// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  #// in all copies or substantial portions of the Software.
 #// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  
 #// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  
 #// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  
 #// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  
 #// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  
 #// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  
 #// #//
 #//==============================================================================  #// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   #// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   #// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   #// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   #// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
   #// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
   #// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   #//
   #//////////////////////////////////////////////////////////////////////////
 ################################################################################ ################################################################################
 ## ##
 ## Get external environment variables. Note that all external environment ## Get external environment variables. Note that all external environment
Line 225 
Line 223 
 # ***** # *****
  
 ifndef PEGASUS_CIM_SCHEMA ifndef PEGASUS_CIM_SCHEMA
     PEGASUS_CIM_SCHEMA=CIM217      PEGASUS_CIM_SCHEMA=CIM222
 endif endif
  
 CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA) CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA)
Line 1223 
Line 1221 
 # #
 RMREPOSITORY = $(RMDIRHIER) RMREPOSITORY = $(RMDIRHIER)
  
 ifdef PEGASUS_USE_RELEASE_CONFIG_OPTIONS  ifndef PEGASUS_USE_RELEASE_CONFIG_OPTIONS
      PEGASUS_USE_RELEASE_CONFIG_OPTIONS=false
   endif
   
   ifeq ($(PEGASUS_USE_RELEASE_CONFIG_OPTIONS),true)
     DEFINES += -DPEGASUS_USE_RELEASE_CONFIG_OPTIONS     DEFINES += -DPEGASUS_USE_RELEASE_CONFIG_OPTIONS
   else
      ifneq ($(PEGASUS_USE_RELEASE_CONFIG_OPTIONS),false)
         $(error PEGASUS_USE_RELEASE_CONFIG_OPTIONS \
             ($(PEGASUS_USE_RELEASE_CONFIG_OPTIONS)) invalid, must be true or false)
      endif
 endif endif
  
 ifdef PEGASUS_USE_RELEASE_DIRS ifdef PEGASUS_USE_RELEASE_DIRS
Line 1424 
Line 1431 
  
 ##============================================================================== ##==============================================================================
 ## ##
 ## PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL  ## PEGASUS_ENABLE_PROTOCOL_INTERNAL_BINARY
 ## ##
 ##     Enable binary protocol between cimserver and out-of-process providers. ##     Enable binary protocol between cimserver and out-of-process providers.
 ##     By default this feature is enabled. ##     By default this feature is enabled.
 ## ##
 ##============================================================================== ##==============================================================================
  
 ifndef PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL  ifndef PEGASUS_ENABLE_PROTOCOL_INTERNAL_BINARY
   PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL=true    PEGASUS_ENABLE_PROTOCOL_INTERNAL_BINARY=true
 endif endif
  
 ifeq ($(PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL),true)  ifeq ($(PEGASUS_ENABLE_PROTOCOL_INTERNAL_BINARY),true)
   DEFINES += -DPEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL    DEFINES += -DPEGASUS_ENABLE_PROTOCOL_INTERNAL_BINARY
 else else
   ifneq ($(PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL),false)    ifneq ($(PEGASUS_ENABLE_PROTOCOL_INTERNAL_BINARY),false)
     $(error "PEGASUS_ENABLE_INTERNAL_BINARY_PROTOCOL must be true or false")      $(error "PEGASUS_ENABLE_PROTOCOL_INTERNAL_BINARY must be true or false")
   endif   endif
 endif endif
  
 ##============================================================================== ##==============================================================================
 ## ##
 ## PEGASUS_ENABLE_ENCAPSULATED_XML  ## PEGASUS_ENABLE_PROTOCOL_BINARY
 ## ##
 ##     Enable encapsulated XML within binary protocol messages. This improves  ##     Enables the binary protocol between clients and cimserver. With provider
 ##     performance by allowing provider to format XML which the server can  ##     agent, both requests and responses are binary. For "ordinary" clients,
 ##     pass through to client without converting to CIMInstances.  ##     requests are XML and responses are binary. By default, this only affects
   ##     the protocol used over local domain sockets.
 ## ##
 ##============================================================================== ##==============================================================================
  
 ifndef PEGASUS_ENABLE_ENCAPSULATED_XML  ifndef PEGASUS_ENABLE_PROTOCOL_BINARY
   PEGASUS_ENABLE_ENCAPSULATED_XML=false    PEGASUS_ENABLE_PROTOCOL_BINARY=false
 endif endif
  
 ifeq ($(PEGASUS_ENABLE_ENCAPSULATED_XML),true)  ifeq ($(PEGASUS_ENABLE_PROTOCOL_BINARY),true)
   DEFINES += -DPEGASUS_ENABLE_ENCAPSULATED_XML    DEFINES += -DPEGASUS_ENABLE_PROTOCOL_BINARY
 else else
   ifneq ($(PEGASUS_ENABLE_ENCAPSULATED_XML),false)    ifneq ($(PEGASUS_ENABLE_PROTOCOL_BINARY),false)
     $(error "PEGASUS_ENABLE_ENCAPSULATED_XML must be true or false")      $(error "PEGASUS_ENABLE_PROTOCOL_BINARY must be true or false")
   endif   endif
 endif endif
   
   ## ======================================================================
   ##
   ## PLATFORM_CORE_PATTERN
   ## This variable describes the pattern used to search for core files.
   ## If not defined, this variable will be set to core*.
   ## Only wildcard characters supported by the make wildcard function
   ## may be used.
   
   ifndef PLATFORM_CORE_PATTERN
       PLATFORM_CORE_PATTERN = core*
   endif


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2