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

Diff for /pegasus/mak/config.mak between version 1.113.2.2 and 1.127

version 1.113.2.2, 2006/02/10 16:09:05 version 1.127, 2006/06/27 21:20:37
Line 476 
Line 476 
 # PEP 233 # PEP 233
 # Controls support for EmbeddedInstance properties # Controls support for EmbeddedInstance properties
 # and parameters # and parameters
 ifdef PEGASUS_ENABLE_EMBEDDED_INSTANCES  ifdef PEGASUS_EMBEDDED_INSTANCE_SUPPORT
       ifeq ($(PEGASUS_EMBEDDED_INSTANCE_SUPPORT), true)
     DEFINES += -DPEGASUS_EMBEDDED_INSTANCE_SUPPORT     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
 endif endif
  
 # Allow ExecQuery functionality to be enabled # Allow ExecQuery functionality to be enabled
Line 509 
Line 515 
  ifndef OPENSSL_BIN  ifndef OPENSSL_BIN
     OPENSSL_BIN = $(OPENSSL_HOME)/bin     OPENSSL_BIN = $(OPENSSL_HOME)/bin
  endif  endif
    ifndef OPENSSL_COMMAND
  OPENSSL_COMMAND = $(OPENSSL_BIN)/openssl  OPENSSL_COMMAND = $(OPENSSL_BIN)/openssl
    endif
  ifndef OPENSSL_SET_SERIAL_SUPPORTED  ifndef OPENSSL_SET_SERIAL_SUPPORTED
     ifneq (, $(findstring 0.9.6, $(shell $(OPENSSL_COMMAND) version)))     ifneq (, $(findstring 0.9.6, $(shell $(OPENSSL_COMMAND) version)))
         OPENSSL_SET_SERIAL_SUPPORTED = false         OPENSSL_SET_SERIAL_SUPPORTED = false
Line 517 
Line 525 
         OPENSSL_SET_SERIAL_SUPPORTED = true         OPENSSL_SET_SERIAL_SUPPORTED = true
     endif     endif
 endif endif
   
   # Enable CRL verification
   ifndef PEGASUS_ENABLE_SSL_CRL_VERIFICATION
       PEGASUS_ENABLE_SSL_CRL_VERIFICATION = true
   endif
   
   # Check for Enable SSL CRL verification
   ifdef PEGASUS_ENABLE_SSL_CRL_VERIFICATION
       ifeq ($(PEGASUS_ENABLE_SSL_CRL_VERIFICATION), true)
           FLAGS += -DPEGASUS_ENABLE_SSL_CRL_VERIFICATION
       else
           ifneq ($(PEGASUS_ENABLE_SSL_CRL_VERIFICATION), false)
               $(error PEGASUS_ENABLE_SSL_CRL_VERIFICATION\
                    ($(PEGASUS_ENABLE_SSL_CRL_VERIFICATION)) invalid, \
                     must be true or false)
           endif
       endif
   endif
 endif endif
  
 # #
Line 668 
Line 694 
     endif     endif
 endif endif
  
   ifdef PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER
       ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
           FLAGS += -DPEGASUS_ENABLE_JMPI_PROVIDER_MANAGER
       else
           ifneq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), false)
               $(error PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER \
                    ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER)) invalid, \
                     must be true or false)
           endif
       endif
   endif
   
 # Allow remote CMPI functionality to be enabled # Allow remote CMPI functionality to be enabled
 ifdef PEGASUS_ENABLE_REMOTE_CMPI ifdef PEGASUS_ENABLE_REMOTE_CMPI
     FLAGS += -DPEGASUS_ENABLE_REMOTE_CMPI     FLAGS += -DPEGASUS_ENABLE_REMOTE_CMPI
Line 755 
Line 793 
     EXTRA_LINK_FLAGS = $(PEGASUS_EXTRA_LINK_FLAGS)     EXTRA_LINK_FLAGS = $(PEGASUS_EXTRA_LINK_FLAGS)
 endif endif
  
   ##==============================================================================
   ##
   ## By definining PEGASUS_USE_STATIC_LIBRARIES in the environment and STATIC
   ## in the Makefile, a static library is produced rather than a shared one.
   ## PEGASUS_USE_STATIC_LIBRARIES should be "true" or "false".
   ##
   ##==============================================================================
   
   ifdef PEGASUS_USE_STATIC_LIBRARIES
     ifeq ($(PEGASUS_USE_STATIC_LIBRARIES),true)
     else
       ifneq ($(PEGASUS_USE_STATIC_LIBRARIES),false)
         $(error PEGASUS_USE_STATIC_LIBRARIES ($(PEGASUS_USE_STATIC_LIBRARIES)) invalid, must be true or false)
       endif
     endif
   endif
   
   
   ifndef PEGASUS_JAVA_CLASSPATH_DELIMITER
       PEGASUS_JAVA_CLASSPATH_DELIMITER = :
   endif


Legend:
Removed from v.1.113.2.2  
changed lines
  Added in v.1.127

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2