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

Diff for /pegasus/mak/config.mak between version 1.204 and 1.220

version 1.204, 2012/08/09 10:32:17 version 1.220, 2015/04/23 13:27:56
Line 33 
Line 33 
 ## ##
 ################################################################################ ################################################################################
  
 ifndef ROOT  #PEGASUS_ROOT is mandatory currently
   ifdef PEGASUS_ROOT
     ifeq ($(wildcard $(PEGASUS_ROOT)),)
       $(error PEGASUS_ROOT = $(PEGASUS_ROOT) is incorrect, \
         Did you meant to set it to $(CURDIR)?)
     endif
     ROOT =  $(subst \,/,$(PEGASUS_ROOT))     ROOT =  $(subst \,/,$(PEGASUS_ROOT))
   else
     $(error PEGASUS_ROOT environment variable undefined)
 endif endif
  
   
 ifdef PEGASUS_ENVVAR_FILE ifdef PEGASUS_ENVVAR_FILE
     include $(PEGASUS_ENVVAR_FILE)     include $(PEGASUS_ENVVAR_FILE)
 else else
Line 49 
Line 57 
     $(error PEGASUS_HOME environment variable undefined)     $(error PEGASUS_HOME environment variable undefined)
 endif endif
  
 ifdef PEGASUS_ROOT  
     ROOT =  $(subst \,/,$(PEGASUS_ROOT))  
 else  
     $(error PEGASUS_ROOT environment variable undefined)  
 endif  
  
 ifdef PEGASUS_TMP ifdef PEGASUS_TMP
     TMP_DIR = $(subst \,/,$(PEGASUS_TMP))     TMP_DIR = $(subst \,/,$(PEGASUS_TMP))
Line 239 
Line 242 
 ## NOTE: If the default below is changed, please update the definition ## NOTE: If the default below is changed, please update the definition
 ## of default for this variable in pegasus/doc/BuildAndReleaseOptions.html ## of default for this variable in pegasus/doc/BuildAndReleaseOptions.html
 ifndef PEGASUS_CIM_SCHEMA ifndef PEGASUS_CIM_SCHEMA
     PEGASUS_CIM_SCHEMA=CIM231      PEGASUS_CIM_SCHEMA=CIM241
 endif endif
  
 CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA) CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA)
Line 480 
Line 483 
   DEFINES += -DMAX_THREADS_PER_SVC_QUEUE=$(PEGASUS_MAX_THREADS_PER_SVC_QUEUE)   DEFINES += -DMAX_THREADS_PER_SVC_QUEUE=$(PEGASUS_MAX_THREADS_PER_SVC_QUEUE)
 endif endif
  
 ##############################################################################  
 ##  
 ## PEGASUS_INDICATIONS_Q_THRESHOLD  
 ##  
 ## Controls if indications providers are stalled if the indications  
 ## service queue is too large.  
 ##  
 ##      defaults to not set.  
 ##  
 ##      It can be set to any positive value.  
 ##  
 ## If not set providers are never stalled. This implies that the  
 ## indications service queue may become as large as neccesary to hold all  
 ## the indicaitons generated.  
 ##  
 ## If set to any value then providers are stalled by forcing them to sleep  
 ## when they try to deliver an indication and the indications service queue  
 ## exceeds this value. They are resumed when the queue count falls 10 percent  
 ## below this value.  
 ##  
 ## Stall and resume log entries are made to inform the administrator  
 ## the condition has occured.  
 ##  
 ## WARNING: This also affects the Out of Process Providers (OOP Providers)  
 ##    The OOP Providers use two one way pipes for communication.  
 ##    By stalling the Provider this prevents the pipe from being read  
 ##    which will cause the pipe to fill up and the remote side will block.  
 ##    OOP Prividers mix indications and operations on these two pipes.  
 ##    This means the operations will also be blocked as a side effect of  
 ##    the indications being stalled.  
 ##  
 ##  
   
 ifdef PEGASUS_INDICATIONS_Q_THRESHOLD  
   DEFINES += -DPEGASUS_INDICATIONS_Q_THRESHOLD=$(PEGASUS_INDICATIONS_Q_THRESHOLD)  
 endif  
   
   
 # Allow PEGASUS_ASSERT statements to be disabled. # Allow PEGASUS_ASSERT statements to be disabled.
 ifdef PEGASUS_NOASSERTS ifdef PEGASUS_NOASSERTS
     DEFINES += -DNDEBUG      DEFINES += -DNDEBUG -DPEGASUS_NOASSERTS
 endif endif
  
 # do not compile trace code. sometimes it causes problems debugging # do not compile trace code. sometimes it causes problems debugging
Line 639 
Line 604 
  
 ############################################################################ ############################################################################
 # #
   # PEGASUS_ENABLE_FQL
   # The use model is:
   #
   # Use PEGASUS_ENABLE_FQL=true  to enable  compilation of FQL functions.
   #
   # Use PEGASUS_ENABLE_FQL=false to disable compilation of FQL functions.
   #
   # Default is PEGASUS_ENABLE_FQL=true if not defined external to config.mak
   #
   
   ifndef PEGASUS_ENABLE_FQL
       # Default is true. CQL is enabled normally on all platforms unless specifically defined
       PEGASUS_ENABLE_FQL=true
   endif
   
   ifeq ($(PEGASUS_ENABLE_FQL),true)
       DEFINES += -DPEGASUS_ENABLE_FQL
   else
       ifneq ($(PEGASUS_ENABLE_FQL),false)
           $(error PEGASUS_ENABLE_FQL ($(PEGASUS_ENABLE_FQL)) invalid, must be true or false)
       endif
   endif
   
   ############################################################################
   #
 # PEGASUS_OVERRIDE_PRODUCT_ID # PEGASUS_OVERRIDE_PRODUCT_ID
 # PEP 186 # PEP 186
 # Allow override of product name/version/status.  A file # Allow override of product name/version/status.  A file
Line 721 
Line 711 
  
 # Controls snmp indication handler to use NET-SNMP to deliver trap # Controls snmp indication handler to use NET-SNMP to deliver trap
 ifdef PEGASUS_USE_NET_SNMP ifdef PEGASUS_USE_NET_SNMP
      ifeq ($(PEGASUS_USE_NET_SNMP),true)
     DEFINES += -DPEGASUS_USE_NET_SNMP     DEFINES += -DPEGASUS_USE_NET_SNMP
      else
         ifneq ($(PEGASUS_USE_NET_SNMP),false)
            $(error PEGASUS_USE_NET_SNMP ($(PEGASUS_USE_NET_SNMP)) invalid, must be true or false)
         endif
      endif
 endif endif
   
 # Controls snmp indication handler to use NET-SNMP V3 features. # Controls snmp indication handler to use NET-SNMP V3 features.
 ifndef PEGASUS_ENABLE_NET_SNMPV3 ifndef PEGASUS_ENABLE_NET_SNMPV3
     ifdef PEGASUS_USE_NET_SNMP      ifeq ($(PEGASUS_USE_NET_SNMP),true)
         PEGASUS_ENABLE_NET_SNMPV3=true         PEGASUS_ENABLE_NET_SNMPV3=true
     else     else
         PEGASUS_ENABLE_NET_SNMPV3=false         PEGASUS_ENABLE_NET_SNMPV3=false
Line 734 
Line 729 
 endif endif
  
 ifeq ($(PEGASUS_ENABLE_NET_SNMPV3),true) ifeq ($(PEGASUS_ENABLE_NET_SNMPV3),true)
     ifndef PEGASUS_USE_NET_SNMP      ifneq ($(PEGASUS_USE_NET_SNMP),true)
         $(error PEGASUS_USE_NET_SNMP should be set when PEGASUS_ENABLE_NET_SNMPV3 is true)          $(error PEGASUS_USE_NET_SNMP should be set to true when PEGASUS_ENABLE_NET_SNMPV3 is true)
     endif     endif
     DEFINES += -DPEGASUS_ENABLE_NET_SNMPV3     DEFINES += -DPEGASUS_ENABLE_NET_SNMPV3
 else else
Line 1179 
Line 1174 
         DEFINES += -DPEGASUS_INDICATION_HASHTRACE         DEFINES += -DPEGASUS_INDICATION_HASHTRACE
     endif     endif
  
     # Setup the conditional compile for client displays.  
     ifdef PEGASUS_CLIENT_TRACE_ENABLE  
         DEFINES += -DPEGASUS_CLIENT_TRACE_ENABLE  
     endif  
 endif endif
  
 # compile in the experimental APIs # compile in the experimental APIs
Line 1251 
Line 1242 
     DEFINES += -DPEGASUS_ENABLE_REMOTE_CMPI     DEFINES += -DPEGASUS_ENABLE_REMOTE_CMPI
 endif endif
  
 ############################################################  
 #  
 # Set any vendor-specific compile flags  
 #  
 ############################################################  
   
 ifdef PEGASUS_VENDOR_HP  
     DEFINES+= -DPEGASUS_VENDOR_HP  
 endif  
   
  
 ############################################################ ############################################################
 # #
Line 1409 
Line 1390 
  
 ##============================================================================== ##==============================================================================
 ## ##
   ## PEGASUS_PAM_SESSION_SECURITY
   ##
   ## This is a new method to handle authentication with PAM in case it is required
   ## to keep the PAM session established by pam_start() open across an
   ## entire CIM request.
   ##
   ## This feature contradicts PEGASUS_PAM_AUTHENTICATION and
   ## PEGASUS_USE_PAM_STANDALONE_PROC
   ## Because of the additional process this feature is not compatible with
   ## Privilege Separation.
   ##
   ##==============================================================================
   
   ifeq ($(PEGASUS_PAM_SESSION_SECURITY),true)
       ifdef PEGASUS_PAM_AUTHENTICATION
           $(error "PEGASUS_PAM_AUTHENTICATION must NOT be defined when PEGASUS_PAM_SESSION_SECURITY is defined")
       endif
       ifdef PEGASUS_USE_PAM_STANDALONE_PROC
           $(error "PEGASUS_USE_PAM_STANDALONE_PROC must NOT be defined when PEGASUS_PAM_SESSION_SECURITY is defined")
       endif
       ifdef PEGASUS_ENABLE_PRIVILEGE_SEPARATION
           $(error "PEGASUS_ENABLE_PRIVILEGE_SEPARATION must NOT be defined when PEGASUS_PAM_SESSION_SECURITY is defined")
       endif
       # Compile in the code required for PAM
       # and compile out the code that uses the password file.
       DEFINES += -DPEGASUS_PAM_SESSION_SECURITY -DPEGASUS_NO_PASSWORDFILE
       # Link with libpam only where it is needed.
       ifeq ($(HAS_PAM_DEPENDENCY),true)
           SYS_LIBS += -lpam
       endif
   endif
   
   
   ##==============================================================================
   ##
 ## PEGASUS_PAM_AUTHENTICATION ## PEGASUS_PAM_AUTHENTICATION
 ## ##
 ##============================================================================== ##==============================================================================
Line 1426 
Line 1442 
  
 ##============================================================================== ##==============================================================================
 ## ##
   ## PEGASUS_NEGOTIATE_AUTHENTICATION
   ##
   ##==============================================================================
   
   ifndef PEGASUS_NEGOTIATE_AUTHENTICATION
     PEGASUS_NEGOTIATE_AUTHENTICATION=false
   endif
   
   ifeq ($(PEGASUS_NEGOTIATE_AUTHENTICATION),true)
       DEFINES += -DPEGASUS_NEGOTIATE_AUTHENTICATION
       # Link with MIT Kerberos
       SYS_LIBS += -lgssapi_krb5
   else
     ifneq ($(PEGASUS_NEGOTIATE_AUTHENTICATION),false)
       $(error "PEGASUS_NEGOTIATE_AUTHENTICATION must be true or false")
     endif
   endif
   
   ##==============================================================================
   ##
 ## PEGASUS_USE_PAM_STANDALONE_PROC ## PEGASUS_USE_PAM_STANDALONE_PROC
 ## ##
 ##============================================================================== ##==============================================================================
Line 1494 
Line 1530 
   endif   endif
 endif endif
  
   
   ##==============================================================================
   ##
   ## PEGASUS_ENABLE_PROTOCOL_WEB
   ##
   ##     Enables the GET-Method for files in order to act as a web-server
   ##
   ##
   ##
   ##
   ##==============================================================================
   ifndef PEGASUS_ENABLE_PROTOCOL_WEB
     PEGASUS_ENABLE_PROTOCOL_WEB = true
   endif
   
   ifeq ($(PEGASUS_ENABLE_PROTOCOL_WEB),true)
     DEFINES += -DPEGASUS_ENABLE_PROTOCOL_WEB
   else
     ifneq ($(PEGASUS_ENABLE_PROTOCOL_WEB),false)
       $(error "PEGASUS_ENABLE_PROTOCOL_WEB must be true or false")
     endif
   endif
   
 ## ====================================================================== ## ======================================================================
 ## ##
 ## PLATFORM_CORE_PATTERN ## PLATFORM_CORE_PATTERN
Line 1558 
Line 1617 
 NAMESPACE_INTEROP = interop NAMESPACE_INTEROP = interop
  
 NAMESPACE_ROOT_INTEROP = root/interop NAMESPACE_ROOT_INTEROP = root/interop
   
   
   ##==============================================================================
   ##
   ## PEGASUS_ENABLE_SESSION_COOKIES
   ##
   ##==============================================================================
   
   # Cookies are enabled by defaut when HAS_SSL is defined _or_ on zOS
   ifndef PEGASUS_ENABLE_SESSION_COOKIES
     ifdef PEGASUS_HAS_SSL
       PEGASUS_ENABLE_SESSION_COOKIES=true
     else
       ifeq ($(OS),zos)
         PEGASUS_ENABLE_SESSION_COOKIES=true
       else
         PEGASUS_ENABLE_SESSION_COOKIES=false
       endif
     endif
   endif
   
   ifeq ($(PEGASUS_ENABLE_SESSION_COOKIES),true)
     ifndef PEGASUS_HAS_SSL
       ifneq ($(OS),zos)
         $(error "PEGASUS_ENABLE_SESSION_COOKIES can be set to 'true' only when PEGASUS_HAS_SSL is 'true' or on zOS platform")
       endif
     endif
     DEFINES += -DPEGASUS_ENABLE_SESSION_COOKIES
   else
     ifneq ($(PEGASUS_ENABLE_SESSION_COOKIES),false)
       $(error "PEGASUS_ENABLE_SESSION_COOKIES must be true or false")
     endif
   endif
   
   ##==============================================================================
   ##
   ## PEGASUS_POSIX_TIMED_LOCK
   ##
   ##==============================================================================
   
   ifndef PEGASUS_POSIX_TIMED_LOCK
     PEGASUS_POSIX_TIMED_LOCK=true
   endif
   
   ifeq ($(PEGASUS_POSIX_TIMED_LOCK),true)
     DEFINES += -DPEGASUS_POSIX_TIMED_LOCK
   else
     ifneq ($(PEGASUS_POSIX_TIMED_LOCK),false)
       $(error "PEGASUS_POSIX_TIMED_LOCK must be true or false")
     endif
   endif


Legend:
Removed from v.1.204  
changed lines
  Added in v.1.220

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2