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

Diff for /pegasus/mak/config.mak between version 1.141.4.1 and 1.143

version 1.141.4.1, 2007/06/22 10:31:54 version 1.143, 2007/06/27 20:19:42
Line 98 
Line 98 
     GCC_VERSION =     GCC_VERSION =
 endif endif
  
   #############################################################################
   ## As a general rule, the directory structure for the object files mirrors
   ## the directory structure of the source files.  E.g.,
   ## $PEGASUS_HOME/obj/Pegasus/Common contains the object files for the
   ## source files in $PEGASUS_ROOT/src/Pegasus/Common.  Each source-level
   ## Makefile includes a DIR value that defines this common path (e.g.,
   ## Pegasus/Common). In a small number of cases, source files are built
   ## multiple times with difference compile options.
   ## To handle this situation, the ALT_OBJ_DIR variable can be used to
   ## specify an alternative object directory for use in building the
   ## objects defined in the Makefile.
   ##
   
   ifndef ALT_OBJ_DIR
 OBJ_DIR = $(HOME_DIR)/obj/$(DIR) OBJ_DIR = $(HOME_DIR)/obj/$(DIR)
   else
       OBJ_DIR = $(HOME_DIR)/obj/$(ALT_OBJ_DIR)
   endif
   
   #############################################################################
   
 BIN_DIR = $(HOME_DIR)/bin BIN_DIR = $(HOME_DIR)/bin
 LIB_DIR = $(HOME_DIR)/lib LIB_DIR = $(HOME_DIR)/lib
  
Line 560 
Line 580 
   endif   endif
 endif endif
  
   
   #
   # PEP 291
   # Enable IPv6 support
   #
   ifndef PEGASUS_ENABLE_IPV6
       PEGASUS_ENABLE_IPV6 = true
   endif
   
   # Check for Enable IPv6 support
   ifdef PEGASUS_ENABLE_IPV6
     ifeq ($(PEGASUS_ENABLE_IPV6),true)
       DEFINES += -DPEGASUS_ENABLE_IPV6
     else
       ifneq ($(PEGASUS_ENABLE_IPV6),false)
         $(error PEGASUS_ENABLE_IPV6 ($(PEGASUS_ENABLE_IPV6)) \
          invalid, must be true or false)
       endif
     endif
   endif
   
 # #
 # PEGASUS_ENABLE_SLP and PEGASUS_DISABLE_SLP # PEGASUS_ENABLE_SLP and PEGASUS_DISABLE_SLP
 # #
Line 696 
Line 737 
 # compile in the experimental APIs # compile in the experimental APIs
 DEFINES += -DPEGASUS_USE_EXPERIMENTAL_INTERFACES DEFINES += -DPEGASUS_USE_EXPERIMENTAL_INTERFACES
  
 # control direct access CIM build  
 ifeq ($(PEGASUS_USE_DIRECTACCESS_FOR_LOCAL),true)  
     DEFINES += -DPEGASUS_USE_DIRECTACCESS_FOR_LOCAL  
     DEFINES += -DPEGASUS_DIRECTACCESS_BUILDTYPE=1  
     ifeq ($(PEGASUS_DIRECTACCESS_SHARE_LIB),noshare)  
       ifeq ($(PEGASUS_DIRECTACCESS_SHARE_REPOSITORY),noshare)  
          DEFINES += -DPEGASUS_DIRECTACCESS_BUILDTYPE=3  
       endif  
       $(error 'noshare' for PEGASUS_DIRECTACCESS_SHARE_REPOSITORY is also required.)  
     else  
       ifeq ($(PEGASUS_DIRECTACCESS_SHARE_REPOSITORY),noshare)  
       DEFINES += -DPEGASUS_DIRECTACCESS_BUILDTYPE=2  
       endif  
     endif  
     ifndef PEGASUS_USE_EXPERIMENTAL_INTERFACES  
        $(warning Direct access CIM built  without CIMClient.h experimental interfaces.)  
     endif  
 else  
     ifeq ($(PEGASUS_DIRECTACCESS_SHARE_REPOSITORY),noshare)  
       $(error PEGASUS_USE_DIRECTACCESS_FOR_LOCAL must be true for this this noshare option.)  
     endif  
     ifeq ($(PEGASUS_DIRECTACCESS_SHARE_LIB),noshare)  
       $(error PEGASUS_USE_DIRECTACCESS_FOR_LOCAL must be true for this this noshare option.)  
     endif  
 endif  
   
   
 # Ensure that the deprecated interfaces are defined in the Pegasus libraries. # Ensure that the deprecated interfaces are defined in the Pegasus libraries.
 # One may wish to disable these interfaces if binary compatibility with # One may wish to disable these interfaces if binary compatibility with
 # previous Pegasus releases is not required. # previous Pegasus releases is not required.


Legend:
Removed from v.1.141.4.1  
changed lines
  Added in v.1.143

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2