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

   1 karl  1.117 #//%2006////////////////////////////////////////////////////////////////////////
   2 martin 1.92  #//
   3              #// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   4              #// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   5              #// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   6              #// IBM Corp.; EMC Corporation, The Open Group.
   7              #// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   8              #// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   9              #// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
  10              #// EMC Corporation; VERITAS Software Corporation; The Open Group.
  11 karl   1.117 #// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
  12              #// EMC Corporation; Symantec Corporation; The Open Group.
  13 martin 1.92  #//
  14              #// Permission is hereby granted, free of charge, to any person obtaining a copy
  15              #// of this software and associated documentation files (the "Software"), to
  16              #// deal in the Software without restriction, including without limitation the
  17              #// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  18              #// sell copies of the Software, and to permit persons to whom the Software is
  19              #// furnished to do so, subject to the following conditions:
  20              #// 
  21              #// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
  22              #// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
  23              #// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
  24              #// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  25              #// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  26              #// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27              #// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  28              #// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  29              #//
  30              #//==============================================================================
  31 mike   1.1   ################################################################################
  32              ##
  33              ## Get external environment variables. Note that all external environment
  34              ## variables begin with "PEGASUS_".
  35              ##
  36              ################################################################################
  37              
  38 konrad.r 1.55  ifndef ROOT
  39                    ROOT =  $(subst \,/,$(PEGASUS_ROOT))
  40                endif
  41                
  42 denise.eckstein 1.61  ifdef PEGASUS_ENVVAR_FILE
  43 david.dillard   1.65      include $(PEGASUS_ENVVAR_FILE)
  44 denise.eckstein 1.61  else
  45 david.dillard   1.65      include $(ROOT)/env_var.status
  46 denise.eckstein 1.61  endif
  47 konrad.r        1.55  
  48 mike            1.2   ifdef PEGASUS_HOME
  49 david.dillard   1.65      HOME_DIR = $(subst \,/,$(PEGASUS_HOME))
  50 mike            1.1   else
  51 david.dillard   1.65      $(error PEGASUS_HOME environment variable undefined)
  52 mike            1.1   endif
  53                       
  54 karl            1.18  ifdef PEGASUS_ROOT
  55                           ROOT =  $(subst \,/,$(PEGASUS_ROOT))
  56                       else
  57 david.dillard   1.65      $(error PEGASUS_ROOT environment variable undefined)
  58 karl            1.18  endif
  59                       
  60 chuck           1.35  # l10n
  61                       ifdef ICU_ROOT
  62                           ICUROOT =  $(subst \,/,$(ICU_ROOT))
  63                       endif
  64                       
  65 kumpf           1.21  ifdef PEGASUS_TMP
  66 david.dillard   1.65      TMP_DIR = $(subst \,/,$(PEGASUS_TMP))
  67 kumpf           1.21  else
  68 david.dillard   1.65      TMP_DIR = .
  69 kumpf           1.21  endif
  70                       
  71 kumpf           1.26  ifdef PEGASUS_DISPLAYCONSUMER_DIR
  72 david.dillard   1.65      DISPLAYCONSUMER_DIR = $(subst \,/,$(PEGASUS_DISPLAYCONSUMER_DIR))
  73 kumpf           1.26  else
  74 david.dillard   1.65      DISPLAYCONSUMER_DIR = $(subst \,/,$(PEGASUS_HOME))
  75 kumpf           1.26  endif
  76                       
  77 aruran.ms       1.102 ifdef PEGASUS_DEBUG
  78                            PEGASUS_USE_DEBUG_BUILD_OPTIONS = 1
  79                       endif
  80                       
  81 david.dillard   1.66  PLATFORM_FILES=$(wildcard $(ROOT)/mak/platform*.mak)
  82 karl            1.78  PLATFORM_TEMP=$(subst $(ROOT)/mak/platform_,, $(PLATFORM_FILES))
  83 jim.wunderlich  1.104 VALID_PLATFORMS=$(subst .mak,  , $(PLATFORM_TEMP))
  84 mike            1.8   
  85                       ifndef PEGASUS_PLATFORM
  86 david.dillard   1.66      $(error PEGASUS_PLATFORM environment variable undefined. Please set to\
  87                               one of the following:$(VALID_PLATFORMS))
  88 mike            1.8   endif
  89                       
  90 mike            1.1   ################################################################################
  91 denise.eckstein 1.116 ifeq ($(findstring _GNU, $(PEGASUS_PLATFORM)), _GNU)
  92 mike            1.118     ifdef CXX
  93                             GCC_VERSION = $(shell $(CXX) -dumpversion)
  94                           else
  95                             GCC_VERSION = $(shell g++ -dumpversion)
  96                           endif
  97 denise.eckstein 1.116 else
  98                           GCC_VERSION =
  99                       endif
 100 mike            1.1   
 101 denise.eckstein 1.143 #############################################################################
 102                       ## As a general rule, the directory structure for the object files mirrors
 103                       ## the directory structure of the source files.  E.g.,
 104                       ## $PEGASUS_HOME/obj/Pegasus/Common contains the object files for the
 105                       ## source files in $PEGASUS_ROOT/src/Pegasus/Common.  Each source-level
 106                       ## Makefile includes a DIR value that defines this common path (e.g.,
 107                       ## Pegasus/Common). In a small number of cases, source files are built
 108                       ## multiple times with difference compile options.  
 109                       ## To handle this situation, the ALT_OBJ_DIR variable can be used to
 110                       ## specify an alternative object directory for use in building the
 111                       ## objects defined in the Makefile.
 112                       ##
 113                       
 114                       ifndef ALT_OBJ_DIR
 115                           OBJ_DIR = $(HOME_DIR)/obj/$(DIR)
 116                       else
 117                           OBJ_DIR = $(HOME_DIR)/obj/$(ALT_OBJ_DIR)
 118                       endif
 119                       
 120                       #############################################################################
 121                       
 122 dmitry.mikulin  1.155 ifdef PEGASUS_TEST_VALGRIND_LOG
 123                           BIN_DIR = $(HOME_DIR)/bin_exe
 124                           VALGRIND_SCRIPT_BIN_DIR = $(HOME_DIR)/bin
 125                       else
 126                           BIN_DIR = $(HOME_DIR)/bin
 127                       endif
 128 kumpf           1.22  LIB_DIR = $(HOME_DIR)/lib
 129 chuck           1.35  
 130                       # l10n
 131                       # define the location for the compiled messages
 132                       MSG_ROOT = $(HOME_DIR)/msg
 133 kumpf           1.22  
 134 jim.wunderlich  1.90  #############################################################################
 135 kumpf           1.140 ##  The following REPOSITORY_XXX variables are only used within the
 136                       ## makefiles for building the repository (cimmofl) and running the tests.
 137 jim.wunderlich  1.90  ## They have no effect on CIMconfig initial startup configuration.
 138                       
 139                       #
 140 kumpf           1.22  # define the location for the repository
 141 jim.wunderlich  1.90  #
 142                       # NOTE: There is another variable efined in many of the test makefiles
 143                       # called REPOSITORYDIR. It is a local variable in each of those Makefiles
 144 kumpf           1.140 # to localally control where the temporay small repository they
 145 jim.wunderlich  1.90  # build, use and then delete is located. Most of the time it is set to TMP_DIR.
 146                       #
 147 jim.wunderlich  1.91  
 148 kumpf           1.22  REPOSITORY_DIR = $(HOME_DIR)
 149 jim.wunderlich  1.90  
 150                       #
 151 kumpf           1.140 # WARNING: The REPOSITORY_NAME varible is not used by all the test,
 152 jim.wunderlich  1.90  # many of them are still hardcoded to "repository".  What this means
 153 kumpf           1.140 # is that you can change the repository name and build it. But you
 154 jim.wunderlich  1.90  # cannot run the test without many of them failing
 155                       #
 156 jim.wunderlich  1.91  
 157 jim.wunderlich  1.81  REPOSITORY_NAME = repository
 158 jim.wunderlich  1.91  
 159 jim.wunderlich  1.90  
 160 jim.wunderlich  1.81  REPOSITORY_ROOT = $(REPOSITORY_DIR)/$(REPOSITORY_NAME)
 161                       
 162 kumpf           1.140 # define the repository mode
 163 h.sterling      1.89  #       XML = XML format
 164                       #       BIN = Binary format
 165 jim.wunderlich  1.81  #
 166 jim.wunderlich  1.91  ifndef PEGASUS_REPOSITORY_MODE
 167                          ## set to default value
 168                          REPOSITORY_MODE = XML
 169 kumpf           1.140 else
 170 jim.wunderlich  1.91     ## validate assigned value
 171                          ifeq ($(PEGASUS_REPOSITORY_MODE),XML)
 172                              REPOSITORY_MODE = XML
 173                          else
 174                            ifeq ($(PEGASUS_REPOSITORY_MODE),BIN)
 175                             REPOSITORY_MODE = BIN
 176                            else
 177                             $(error PEGASUS_REPOSITORY_MODE ($(PEGASUS_REPOSITORY_MODE)) \
 178                       		 is invalid. It must be set to either XML or BIN)
 179                            endif
 180                          endif
 181 jim.wunderlich  1.90  endif
 182                       
 183 jim.wunderlich  1.91  
 184 jim.wunderlich  1.90  ###########################################################################
 185 mike            1.1   
 186 kumpf           1.23  # The two variables, CIM_SCHEMA_DIR and CIM_SCHEMA_VER,
 187 chip            1.76  # are used to control the version of the CIM Schema
 188 kumpf           1.23  # loaded into the Pegasus Internal, InterOp,
 189                       # root/cimv2 and various test namespaces.
 190                       #
 191 chip            1.76  # Update the following two environment variables to
 192 kumpf           1.23  # change the version.
 193                       
 194 kumpf           1.37  # The environment variable PEGASUS_CIM_SCHEMA can be used
 195 chip            1.76  # to change the values of CIM_SCHEMA_DIR, CIM_SCHEMA_VER
 196 kumpf           1.37  # and ALLOW_EXPERIMENTAL.
 197                       #
 198                       # To use the PEGASUS_CIM_SCHEMA variable the Schema mof
 199                       # files must be placed in the directory
 200 denise.eckstein 1.115 # $(PEGASUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA)
 201 chip            1.76  #
 202 kumpf           1.37  # The value of PEGASUS_CIM_SCHEMA must conform to the
 203                       # following syntax:
 204                       #
 205                       #        CIM[Prelim]<CIM_SCHEMA_VER>
 206                       #
 207 chip            1.76  # The string "Prelim" should be included if the
 208 kumpf           1.37  # Schema contains "Experimental" class definitions.
 209                       #
 210                       # The value of <CIM_SCHEMA_VER> must be the value
 211 chip            1.76  # of the version string included by the DMTF as
 212                       # part of the mof file names (e.g, CIM_Core27.mof).
 213 kumpf           1.37  # Therefore, for example, the value of <CIM_SCHEMA_VER>
 214                       # for CIM27 Schema directories MUST be 27.
 215                       #
 216 chip            1.76  # Examples of valid values of PEGASUS_CIM_SCHEMA
 217 kumpf           1.37  # include CIMPrelim27, CIM27, CIMPrelim28, and CIM28.
 218                       #
 219                       # Note the CIMPrelim271 would NOT be a valid value
 220                       # for PEGASUS_CIM_SCHEMA because the version string
 221                       # portion of the mof files (e.g., CIM_Core27.mof) in
 222                       # the CIMPrelimin271 directory is 27 not 271.
 223 kumpf           1.23  
 224 gerarda         1.29  # ***** CIM_SCHEMA_DIR INFO ****
 225                       # If CIM_SCHEMA_DIR changes to use a preliminary schema which
 226                       # has experimentals make sure and change the path below to appopriate
 227                       # directory path.  Example:  CIMPrelim271 is preliminary and has
 228                       # experimental classes.  Since experimental classes exist the -aE
 229                       # option of the mof compiler needs to be set.
 230                       # *****
 231 kumpf           1.37  
 232 denise.eckstein 1.154 ifndef PEGASUS_CIM_SCHEMA
 233                           PEGASUS_CIM_SCHEMA=CIM2131
 234                       endif
 235                       
 236                       CIM_SCHEMA_DIR=$(PEGASUS_ROOT)/Schemas/$(PEGASUS_CIM_SCHEMA)
 237                       ifeq ($(findstring $(patsubst CIM%,%,$(patsubst CIMPrelim%,%,$(PEGASUS_CIM_SCHEMA))),1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 271 28),)
 238                           CIM_SCHEMA_VER=
 239 kumpf           1.37  else
 240 denise.eckstein 1.154     CIM_SCHEMA_VER=$(patsubst CIM%,%,$(patsubst CIMPrelim%,%,$(PEGASUS_CIM_SCHEMA)))
 241 kumpf           1.37  endif
 242                       
 243                       ifneq (, $(findstring Prelim, $(CIM_SCHEMA_DIR)))
 244 david.dillard   1.65      ALLOW_EXPERIMENTAL = -aE
 245 gerarda         1.29  else
 246 david.dillard   1.65      ALLOW_EXPERIMENTAL =
 247 gerarda         1.29  endif
 248                       
 249 bob             1.5   LEX = flex
 250                       
 251 jim.wunderlich  1.94  ## ======================================================================
 252                       ##
 253 kumpf           1.140 ## PEGASUS_ENABLE_SORTED_DIFF
 254 jim.wunderlich  1.94  ## This controls if the DIFFSORT function is used rather than a simple DIFF of
 255                       ##  of the test results files to the static results file.
 256                       ##
 257                       ##   Set to "true" enables the sorted diffs of results to static results files.
 258                       ##   otherwise results in regular diffs of results to static results files.
 259 kumpf           1.140 ##   see bug 2283 for background information concerning this config variable.
 260 jim.wunderlich  1.94  ##
 261                       ##  Defaults to true.
 262                       ##
 263                       ##
 264                       ifndef PEGASUS_ENABLE_SORTED_DIFF
 265                       PEGASUS_ENABLE_SORTED_DIFF=true
 266                       endif
 267                       
 268 jim.wunderlich  1.86  ## ========================================================================
 269 kumpf           1.140 ## DIFFSORT function definition
 270 jim.wunderlich  1.86  ## Here is an example using the DIFFSORT function:
 271 kumpf           1.140 ##
 272 jim.wunderlich  1.86  ## difftest: FORCE
 273 h.sterling      1.89  ##      @ test > result
 274 jim.wunderlich  1.86  ##      @ $(call DIFFSORT,result,standard_result)
 275 h.sterling      1.89  ##      @ $(ECHO) +++++ all test passed
 276 jim.wunderlich  1.86  ##
 277                       
 278                       define NL
 279                       
 280                       
 281                       endef
 282                       
 283 kumpf           1.140 ifndef FORCE_NOCASE
 284                       
 285 jim.wunderlich  1.86  DIFFSORT = $(SORT) $(1) > $(1).tmp $(NL) \
 286                       $(SORT) $(2) > $(2).tmp $(NL) \
 287                       $(DIFF) $(1).tmp $(2).tmp $(NL) \
 288                       $(RM) -f $(1).tmp $(NL) \
 289                       $(RM) -f $(2).tmp $(NL)
 290                       
 291 marek           1.107 else
 292                       
 293                       DIFFSORT = $(SORT) -f $(1) > $(1).tmp $(NL) \
 294                       $(SORT) -f $(2) > $(2).tmp $(NL) \
 295                       $(DIFF) -i $(1).tmp $(2).tmp $(NL) \
 296                       $(RM) -f $(1).tmp $(NL) \
 297                       $(RM) -f $(2).tmp $(NL)
 298                       
 299                       endif
 300                       
 301                       DIFFSORTNOCASE = $(SORT) $(1) > $(1).tmp $(NL) \
 302                       $(SORT) $(2) > $(2).tmp $(NL) \
 303                       $(DIFF) -i $(1).tmp $(2).tmp $(NL) \
 304                       $(RM) -f $(1).tmp $(NL) \
 305                       $(RM) -f $(2).tmp $(NL)
 306                       
 307 jim.wunderlich  1.104 #
 308                       # The following is used to define the usage message for MakeFile
 309                       #
 310                       # See the pegasus/Makfile for an exampleof its usage.
 311                       #
 312                       USAGE = @$(ECHO) " $(1)"
 313                       
 314 mike            1.8   ################################################################################
 315                       ##
 316                       ## Attempt to include a platform configuration file:
 317                       ##
 318                       ################################################################################
 319                       
 320 david.dillard   1.66  PLATFORM_FILE = $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 321                       ifneq ($(wildcard $(PLATFORM_FILE)), )
 322                           include $(PLATFORM_FILE)
 323                       else
 324 david.dillard   1.65    $(error  PEGASUS_PLATFORM environment variable must be set to one of\
 325 david.dillard   1.66          the following:$(VALID_PLATFORMS))
 326 mike            1.8   endif
 327 karl            1.17  
 328 karl            1.36  ################################################################################
 329                       ##
 330                       ##  Set up any platform independent compile conditionals by adding them to
 331                       ##  precreated FLAGS parameter.
 332 chip            1.76  ##  Assumes that the basic flags have been setup in FLAGS.
 333 karl            1.36  ##  Assumes that compile time flags are controlled with -D CLI option.
 334                       ##
 335                       ################################################################################
 336 karl            1.17  
 337 jim.wunderlich  1.97  
 338                       ################################################################################
 339                       ##
 340                       ## PEGASUS_MAX_THREADS_PER_SVC_QUEUE
 341                       ##
 342                       ## Controls the maximum number of threads allowed per message service queue.
 343                       ##     It is allowed to range between 1 and MAX_THREADS_PER_SVC_QUEUE_LIMIT
 344 kumpf           1.103 ##     as set in pegasus/src/Pegasus/Common/MessageQueueService.cpp.  If the
 345                       ##     specified value is out of range, MAX_THREADS_PER_SVC_QUEUE_LIMIT is
 346                       ##     used.  The default value is MAX_THREADS_PER_SVC_QUEUE_DEFAULT, as
 347                       ##     defined in pegasus/src/Pegasus/Common/MessageQueueService.cpp.
 348 jim.wunderlich  1.98  ##
 349                       ##	Label					Current value
 350                       ##	--------------------------------------  -------------
 351                       ##      MAX_THREADS_PER_SVC_QUEUE_LIMIT	        5000
 352                       ##      MAX_THREADS_PER_SVC_QUEUE_DEFAULT       5
 353 jim.wunderlich  1.97  ##
 354                       ##
 355                       
 356                       ifdef PEGASUS_MAX_THREADS_PER_SVC_QUEUE
 357                         DEFINES += -DMAX_THREADS_PER_SVC_QUEUE=$(PEGASUS_MAX_THREADS_PER_SVC_QUEUE)
 358                       endif
 359                       
 360 jim.wunderlich  1.99  ##############################################################################
 361 kumpf           1.140 ##
 362 jim.wunderlich  1.99  ## PEGASUS_INDICATIONS_Q_THRESHOLD
 363                       ##
 364                       ## Controls if indications providers are stalled if the indications
 365                       ## service queue is too large.
 366                       ##
 367 jim.wunderlich  1.100 ##      defaults to not set.
 368 jim.wunderlich  1.99  ##
 369                       ## 	It can be set to any positive value.
 370                       ##
 371 jim.wunderlich  1.100 ## If not set providers are never stalled. This implies that the
 372 jim.wunderlich  1.99  ## indications service queue may become as large as neccesary to hold all
 373                       ## the indicaitons generated.
 374                       ##
 375 jim.wunderlich  1.100 ## If set to any value then providers are stalled by forcing them to sleep
 376 jim.wunderlich  1.99  ## when they try to deliver an indication and the indications service queue
 377                       ## exceeds this value. They are resumed when the queue count falls 10 percent
 378 kumpf           1.140 ## below this value.
 379 jim.wunderlich  1.99  ##
 380                       ## Stall and resume log entries are made to inform the administrator
 381                       ## the condition has occured.
 382                       ##
 383                       ## WARNING: This also affects the Out of Process Providers (OOP Providers)
 384                       ##    The OOP Providers use two one way pipes for communication.
 385                       ##    By stalling the Provider this prevents the pipe from being read
 386                       ##    which will cause the pipe to fill up and the remote side will block.
 387                       ##    OOP Prividers mix indications and operations on these two pipes.
 388                       ##    This means the operations will also be blocked as a side effect of
 389                       ##    the indications being stalled.
 390 kumpf           1.140 ##
 391 jim.wunderlich  1.99  ##
 392                       
 393                       ifdef PEGASUS_INDICATIONS_Q_THRESHOLD
 394                         DEFINES += -DPEGASUS_INDICATIONS_Q_THRESHOLD=$(PEGASUS_INDICATIONS_Q_THRESHOLD)
 395                       endif
 396                       
 397 jim.wunderlich  1.97  
 398 kumpf           1.87  # Allow PEGASUS_ASSERT statements to be disabled.
 399                       ifdef PEGASUS_NOASSERTS
 400                           DEFINES += -DNDEBUG
 401                       endif
 402                       
 403 mday            1.40  # do not compile trace code. sometimes it causes problems debugging
 404                       ifdef PEGASUS_REMOVE_TRACE
 405 david.dillard   1.65      DEFINES += -DPEGASUS_REMOVE_TRACE
 406 mday            1.40  endif
 407                       
 408 chuck           1.47  # PEP 161
 409                       # Control whether utf-8 filenames are supported by the repository
 410                       ifdef PEGASUS_SUPPORT_UTF8_FILENAME
 411 david.dillard   1.65      DEFINES += -DPEGASUS_SUPPORT_UTF8_FILENAME
 412 chuck           1.47  
 413 david.dillard   1.65      # Control whether utf-8 filenames in the repository are escaped
 414                           ifdef PEGASUS_REPOSITORY_ESCAPE_UTF8
 415                               DEFINES += -DPEGASUS_REPOSITORY_ESCAPE_UTF8
 416                           endif
 417 chuck           1.47  endif
 418                       
 419 kumpf           1.49  #
 420                       # PEP 142
 421                       # The following flag need to be set to enable
 422                       # user group authorization functionality.
 423                       #
 424                       ifdef PEGASUS_ENABLE_USERGROUP_AUTHORIZATION
 425 david.dillard   1.65      DEFINES += -DPEGASUS_ENABLE_USERGROUP_AUTHORIZATION
 426 kumpf           1.49  endif
 427                       
 428 chuck           1.67  #
 429                       # PEP 193
 430                       # The following flag need to be set to disable
 431                       # CQL in indication subscriptions
 432                       #
 433                       ifdef PEGASUS_DISABLE_CQL
 434                           DEFINES += -DPEGASUS_DISABLE_CQL
 435                       endif
 436                       
 437 kumpf           1.68  #
 438                       # PEP 186
 439                       # Allow override of product name/version/status.  A file
 440                       # pegasus/src/Pegasus/Common/ProductVersion.h must exist when this
 441                       # flag is defined.
 442                       #
 443                       ifdef PEGASUS_OVERRIDE_PRODUCT_ID
 444                           DEFINES += -DPEGASUS_OVERRIDE_PRODUCT_ID
 445                       endif
 446                       
 447 kumpf           1.71  #
 448 kumpf           1.106 # PEP 72
 449                       # Allow Out-of-Process Providers to be disabled by default
 450                       #
 451 jim.wunderlich  1.113 ifdef PEGASUS_DEFAULT_ENABLE_OOP
 452                         ifeq ($(PEGASUS_DEFAULT_ENABLE_OOP),true)
 453                           DEFINES += -DPEGASUS_DEFAULT_ENABLE_OOP
 454 jim.wunderlich  1.111   else
 455 jim.wunderlich  1.113     ifneq ($(PEGASUS_DEFAULT_ENABLE_OOP),false)
 456                             $(error PEGASUS_DEFAULT_ENABLE_OOP ($(PEGASUS_DEFAULT_ENABLE_OOP)) invalid, must be true or false)
 457 kumpf           1.140     endif
 458 jim.wunderlich  1.111   endif
 459 kumpf           1.106 endif
 460                       
 461                       #
 462 mateus.baur     1.130 # Allow to define the default value for the Provider User Context
 463                       # property as REQUESTOR.
 464                       # If is set and true use REQUESTOR
 465                       # If is not set or false use PRIVILEGED
 466                       #
 467                       ifdef PEGASUS_DEFAULT_USERCTXT_REQUESTOR
 468                         ifeq ($(PEGASUS_DEFAULT_USERCTXT_REQUESTOR),true)
 469                           DEFINES += -DPEGASUS_DEFAULT_USERCTXT_REQUESTOR
 470                         else
 471                           ifneq ($(PEGASUS_DEFAULT_USERCTXT_REQUESTOR),false)
 472                             $(error PEGASUS_DEFAULT_USERCTXT_REQUESTOR ($(PEGASUS_DEFAULT_USERCTXT_REQUESTOR)) invalid, must be true or false)
 473 kumpf           1.140     endif
 474 mateus.baur     1.130   endif
 475                       endif
 476                       
 477                       #
 478 kumpf           1.71  # PEP 197
 479                       # Allow the Provider User Context feature to be disabled.
 480                       #
 481 kumpf           1.74  ifdef PEGASUS_DISABLE_PROV_USERCTXT
 482 kumpf           1.71      DEFINES += -DPEGASUS_DISABLE_PROV_USERCTXT
 483 kumpf           1.74  endif
 484 kumpf           1.71  
 485 h.sterling      1.89  # Bug 2147
 486                       # Allow local domain socket usage to be disabled.
 487                       ifdef PEGASUS_DISABLE_LOCAL_DOMAIN_SOCKET
 488                           DEFINES += -DPEGASUS_DISABLE_LOCAL_DOMAIN_SOCKET
 489                       endif
 490                       
 491 chip            1.76  # PEP 211
 492                       # Controls object normalization support.
 493                       ifdef PEGASUS_ENABLE_OBJECT_NORMALIZATION
 494                           DEFINES += -DPEGASUS_ENABLE_OBJECT_NORMALIZATION
 495                       endif
 496                       
 497 a.dunfey        1.125 # PEP 233
 498                       # Controls support for EmbeddedInstance properties
 499                       # and parameters
 500 a.dunfey        1.129 ifndef PEGASUS_EMBEDDED_INSTANCE_SUPPORT
 501                           PEGASUS_EMBEDDED_INSTANCE_SUPPORT = true
 502                       endif
 503                       
 504                       ifeq ($(PEGASUS_EMBEDDED_INSTANCE_SUPPORT), true)
 505                           DEFINES += -DPEGASUS_EMBEDDED_INSTANCE_SUPPORT
 506                       else
 507                           ifneq ($(PEGASUS_EMBEDDED_INSTANCE_SUPPORT), false)
 508                               $(error PEGASUS_EMBEDDED_INSTANCE_SUPPORT ($(PEGASUS_EMBEDDED_INSTANCE_SUPPORT)) invalid, must be true or false)
 509 a.dunfey        1.125     endif
 510                       endif
 511                       
 512 a.dunfey        1.129 
 513 kumpf           1.80  # Allow ExecQuery functionality to be enabled
 514                       ifndef PEGASUS_ENABLE_EXECQUERY
 515                           DEFINES += -DPEGASUS_DISABLE_EXECQUERY
 516                       endif
 517                       
 518 yi.zhou         1.85  # Allow System Log Handler to be enabled
 519                       ifdef PEGASUS_ENABLE_SYSTEM_LOG_HANDLER
 520                         DEFINES += -DPEGASUS_ENABLE_SYSTEM_LOG_HANDLER
 521                       endif
 522                       
 523                       # Allow Email Handler to be enabled
 524                       ifdef PEGASUS_ENABLE_EMAIL_HANDLER
 525                         DEFINES += -DPEGASUS_ENABLE_EMAIL_HANDLER
 526                       endif
 527 kumpf           1.49  
 528 h.sterling      1.109 # Allow qualifiers to be disabled for instance operations
 529                       ifdef PEGASUS_DISABLE_INSTANCE_QUALIFIERS
 530                         DEFINES += -DPEGASUS_DISABLE_INSTANCE_QUALIFIERS
 531                       endif
 532                       
 533 yi.zhou         1.108 # Controls snmp indication handler to use NET-SNMP to deliver trap
 534                       ifdef PEGASUS_USE_NET_SNMP
 535                         DEFINES += -DPEGASUS_USE_NET_SNMP
 536                       endif
 537                       
 538 denise.eckstein 1.120 ifdef PEGASUS_HAS_SSL
 539 sushma.fernandes 1.152     DEFINES += -DPEGASUS_HAS_SSL 
 540                        
 541                            # Enable SSL Random file by default.
 542                            ifndef PEGASUS_USE_SSL_RANDOMFILE
 543                                PEGASUS_USE_SSL_RANDOMFILE = true
 544                            endif
 545                        
 546                            # Allow SSL Random file functionality to be optionally disabled.
 547                            ifdef PEGASUS_USE_SSL_RANDOMFILE
 548                                ifeq ($(PEGASUS_USE_SSL_RANDOMFILE), true)
 549                                    DEFINES += -DPEGASUS_SSL_RANDOMFILE
 550                                else
 551                                    ifneq ($(PEGASUS_USE_SSL_RANDOMFILE), false)
 552                                        $(error PEGASUS_USE_SSL_RANDOMFILE\
 553                                             ($(PEGASUS_USE_SSL_RANDOMFILE)) invalid, \
 554                                              must be true or false)
 555                                    endif
 556                                endif
 557                            endif
 558 kumpf            1.145 
 559                            ifndef OPENSSL_COMMAND
 560 denise.eckstein  1.147         ifdef OPENSSL_BIN
 561                                    OPENSSL_COMMAND = $(OPENSSL_BIN)/openssl
 562                                else
 563                                    OPENSSL_COMMAND = openssl
 564                                endif
 565 kumpf            1.145     endif
 566                            ifndef OPENSSL_SET_SERIAL_SUPPORTED
 567                                ifneq (, $(findstring 0.9.6, $(shell $(OPENSSL_COMMAND) version)))
 568                                    OPENSSL_SET_SERIAL_SUPPORTED = false
 569                                else
 570                                    OPENSSL_SET_SERIAL_SUPPORTED = true
 571                                endif
 572 denise.eckstein  1.120     endif
 573 sushma.fernandes 1.123 
 574 kumpf            1.145     # Enable CRL verification
 575                            ifndef PEGASUS_ENABLE_SSL_CRL_VERIFICATION
 576                                PEGASUS_ENABLE_SSL_CRL_VERIFICATION = true
 577                            endif
 578 sushma.fernandes 1.123 
 579 kumpf            1.145     # Check for Enable SSL CRL verification
 580                            ifdef PEGASUS_ENABLE_SSL_CRL_VERIFICATION
 581                                ifeq ($(PEGASUS_ENABLE_SSL_CRL_VERIFICATION), true)
 582                                    DEFINES += -DPEGASUS_ENABLE_SSL_CRL_VERIFICATION
 583                                else
 584                                    ifneq ($(PEGASUS_ENABLE_SSL_CRL_VERIFICATION), false)
 585                                        $(error PEGASUS_ENABLE_SSL_CRL_VERIFICATION\
 586                                             ($(PEGASUS_ENABLE_SSL_CRL_VERIFICATION)) invalid, \
 587                                              must be true or false)
 588                                    endif
 589 sushma.fernandes 1.123         endif
 590                            endif
 591                        endif
 592 denise.eckstein  1.120 
 593 jim.wunderlich   1.101 #
 594 yi.zhou          1.134 # PEP 258
 595 kumpf            1.153 # Allow Audit Logger to be disabled.  It is enabled by default.
 596 yi.zhou          1.134 #
 597 kumpf            1.153 
 598                        ifndef PEGASUS_ENABLE_AUDIT_LOGGER
 599                            PEGASUS_ENABLE_AUDIT_LOGGER = true
 600                        endif
 601                        
 602                        ifdef PEGASUS_ENABLE_AUDIT_LOGGER
 603                            ifeq ($(PEGASUS_ENABLE_AUDIT_LOGGER),true)
 604                                DEFINES += -DPEGASUS_ENABLE_AUDIT_LOGGER
 605                            else
 606                                ifneq ($(PEGASUS_ENABLE_AUDIT_LOGGER),false)
 607                                    $(error PEGASUS_ENABLE_AUDIT_LOGGER \
 608                                      ($(PEGASUS_ENABLE_AUDIT_LOGGER)) invalid, must be true or false)
 609                                endif
 610                            endif
 611                        endif
 612                        
 613                        # Check for use of deprecated variable
 614 yi.zhou          1.134 ifdef PEGASUS_DISABLE_AUDIT_LOGGER
 615 kumpf            1.153     $(error The PEGASUS_DISABLE_AUDIT_LOGGER variable is deprecated. \
 616                                Use PEGASUS_ENABLE_AUDIT_LOGGER=false instead)
 617 yi.zhou          1.134 endif
 618                        
 619 dave.sudlik      1.142 
 620                        #
 621                        # PEP 291
 622                        # Enable IPv6 support
 623                        #
 624 venkat.puvvada   1.149 
 625 dave.sudlik      1.142 ifndef PEGASUS_ENABLE_IPV6
 626                            PEGASUS_ENABLE_IPV6 = true
 627                        endif
 628                        
 629                        # Check for Enable IPv6 support
 630                        ifdef PEGASUS_ENABLE_IPV6
 631                          ifeq ($(PEGASUS_ENABLE_IPV6),true)
 632                            DEFINES += -DPEGASUS_ENABLE_IPV6
 633                          else
 634                            ifneq ($(PEGASUS_ENABLE_IPV6),false)
 635                              $(error PEGASUS_ENABLE_IPV6 ($(PEGASUS_ENABLE_IPV6)) \
 636                               invalid, must be true or false)
 637                            endif
 638                          endif
 639                        endif
 640                        
 641 venkat.puvvada   1.149 # Verify Test IPv6 support
 642                        # If PEGASUS_ENABLE_IPV6 is defined and PEGASUS_TEST_IPV6 is not defined, we set
 643                        # PEGASUS_TEST_IPV6 to the same value as PEGASUS_ENABLE_IPV6.
 644                        # You can explicitly set PEGASUS_TEST_IPV6 to false if you don't want to run the
 645                        # IPv6 tests (for example, on an IPv4 system that is running an IPv6-enabled
 646                        # version of Pegasus).
 647                        #
 648                        ifdef PEGASUS_TEST_IPV6
 649                          ifneq ($(PEGASUS_TEST_IPV6),true)
 650                            ifneq ($(PEGASUS_TEST_IPV6),false)
 651                              $(error PEGASUS_TEST_IPV6 ($(PEGASUS_TEST_IPV6)) \
 652                               invalid, must be true or false)
 653                            endif
 654                          endif
 655                        else 
 656 venkat.puvvada   1.150   PEGASUS_TEST_IPV6 = $(PEGASUS_ENABLE_IPV6)
 657 venkat.puvvada   1.149 endif
 658                        
 659 karl             1.151 ############################################################################
 660 yi.zhou          1.134 #
 661 jim.wunderlich   1.101 # PEGASUS_ENABLE_SLP and PEGASUS_DISABLE_SLP
 662                        #
 663 jim.wunderlich   1.112 # PEGASUS_DISABLE_SLP has been depracated. New use model is:
 664 jim.wunderlich   1.101 #
 665 jim.wunderlich   1.112 # Use PEGASUS_ENABLE_SLP=true  to enable  compilation of SLP functions.
 666                        #
 667 kumpf            1.140 # Use PEGASUS_ENABLE_SLP=false to disable compilation of SLP functions.
 668 jim.wunderlich   1.101 #
 669 kumpf            1.140 # Currently (Aug. 12, 2005) Windows is the only platform that enables SLP
 670 jim.wunderlich   1.101 # by default.
 671                        #
 672                        # NOTE. Effective with Bug # 2633 some platforms enable SLP.
 673 karl             1.75  # To see which platforms look for platform make files that set
 674 kumpf            1.140 # the variable PEGASUS_ENABLE_SLP.
 675 jim.wunderlich   1.101 #
 676                        #
 677 jim.wunderlich   1.112 
 678 karl             1.39  ifdef PEGASUS_ENABLE_SLP
 679 jim.wunderlich   1.101   ifdef PEGASUS_DISABLE_SLP
 680                            $(error Conflicting defines PEGASUS_ENABLE_SLP and PEGASUS_DISABLE_SLP both set)
 681                          endif
 682 jim.wunderlich   1.112 endif
 683                        
 684                        ifdef PEGASUS_DISABLE_SLP
 685                            $(error PEGASUS_DISABLE_SLP has been deprecated. Please use PEGASUS_ENABLE_SLP=[true/false] )
 686                        
 687                        PEGASUS_ENABLE_SLP=false
 688                        
 689                        endif
 690                        
 691                        ifdef PEGASUS_ENABLE_SLP
 692                          ifeq ($(PEGASUS_ENABLE_SLP),true)
 693 david.dillard    1.65      DEFINES += -DPEGASUS_ENABLE_SLP
 694 jim.wunderlich   1.112   else
 695                            ifneq ($(PEGASUS_ENABLE_SLP),false)
 696                              $(error PEGASUS_ENABLE_SLP ($(PEGASUS_ENABLE_SLP)) invalid, must be true or false)
 697 kumpf            1.140     endif
 698 jim.wunderlich   1.112   endif
 699 karl             1.39  endif
 700 karl             1.36  
 701 jim.wunderlich   1.121 
 702                        ############################################################################
 703                        #
 704                        # PEGASUS_USE_OPENSLP
 705                        #
 706                        # Environment variable to set openslp as SLP environment to use
 707                        # for SLP Directory and User Agents.
 708                        #
 709                        # Allows enabling use of openslp interfaces for slp instead of the
 710                        # internal pegasus slp agent.  Note that this does not disable the
 711                        # compilation of the internal agent code, etc.  However, it assumes
 712                        # openslp is installed on the platform and changes the interfaces
 713                        # to match this.  At this moment, this is a change specifically for
 714                        # adaptec but we expect to generalize it to provide openslp as a
 715                        # generalized alternative to ldapslp.
 716 kumpf            1.140 # to use this. To set this function up,
 717 jim.wunderlich   1.121 #
 718                        # Use this variable in conjunction with PEGASUS_OPENSLP_HOME
 719 kumpf            1.140 # to enable OpenSlp as the slp implementation.
 720 jim.wunderlich   1.121 #
 721                        # NOTE that it has no affect if the PEGASUS_ENABLE_SLP etc. flags are not set.
 722                        #
 723                        
 724                        ifdef PEGASUS_USE_OPENSLP
 725                           ifeq ($(PEGASUS_ENABLE_SLP),true)
 726                              DEFINES += -DPEGASUS_USE_OPENSLP
 727                            else
 728                              $(error PEGASUS_USE_OPENSLP defined but PEGASUS_ENABLE_SLP is not true. Please correct this inconsistency)
 729                            endif
 730                        endif
 731                        
 732 dave.sudlik      1.135 # PEP 267
 733                        # SLP reregistration support.
 734                        # PEGASUS_SLP_REG_TIMEOUT is defined as the SLP registration timeout
 735                        # interval, in minutes.
 736                        ifdef PEGASUS_SLP_REG_TIMEOUT
 737                            ifeq ($(PEGASUS_ENABLE_SLP),true)
 738                               DEFINES += -DPEGASUS_SLP_REG_TIMEOUT=$(PEGASUS_SLP_REG_TIMEOUT)
 739                             else
 740                               $(error PEGASUS_SLP_REG_TIMEOUT defined but PEGASUS_ENABLE_SLP is not true. Please correct this inconsistency)
 741                             endif
 742                         endif
 743 jim.wunderlich   1.121 
 744                        ############################################################################
 745                        #
 746                        # PEGASUS_OPENSLP_HOME
 747                        #
 748                        # Environment variable to set home location for OpenSLP include and library
 749 kumpf            1.140 # files if they are located somewhere other than /usr/include and /usr/lib.
 750 jim.wunderlich   1.121 #
 751                        # PEGASUS_USE_OPENSLP must also be defined for this environment variable
 752                        # to have any effect.
 753                        #
 754 kumpf            1.140 # This is the directory level within which both the include and lib
 755                        # directories holding the OpenSLP files will be found.
 756 jim.wunderlich   1.121 #
 757 kumpf            1.140 # EG: If the are located in /opt/OpenSLP/include and /opt/OpenSLP/lib
 758 jim.wunderlich   1.121 #     then this environment variable should be set to /opt/OpenSLP.
 759                        #
 760                        
 761                        
 762 sushma.fernandes 1.114 #
 763 kumpf            1.140 # Enable this flag to allow the handshake to continue regardless of verification result
 764 sushma.fernandes 1.114 #
 765                        ifdef PEGASUS_OVERRIDE_SSL_CERT_VERIFICATION_RESULT
 766                          DEFINES += -DPEGASUS_OVERRIDE_SSL_CERT_VERIFICATION_RESULT
 767                        endif
 768                        
 769 karl             1.151 ############################################################################
 770                        #
 771                        # PEGASUS_ENABLE_INTEROP_PROVIDER
 772                        # Enables the interop provider AND the server profile.
 773                        # initially this was activated by setting either the perfinst or slp enable
 774                        # flags.  This allows activating this function without any either perfinst or
 775                        # slp enabled.  Note that if either of these are enabled, this funtion is also
 776                        # enabled
 777                        
 778                        ## if either slp or perfinst are enabled and this is false, flag error
 779                        ## This gets messy because should account for both postive and negative on
 780                        ## interop so we don't get multiples.
 781                        
 782                        ifdef PEGASUS_ENABLE_SLP
 783                            ifeq ($(PEGASUS_ENABLE_SLP),true)
 784                                ifndef PEGASUS_ENABLE_INTEROP_PROVIDER
 785                                    PEGASUS_ENABLE_INTEROP_PROVIDER = true
 786                                else
 787                                    ifeq ($(PEGASUS_ENABLE_INTEROP_PROVIDER),false)
 788                                        $(error PEGASUS_ENABLE_INTEROP_PROVIDER ($(PEGASUS_ENABLE_INTEROP_PROVIDER)) invalid, must be true if SLP enabled)
 789                                    endif
 790 karl             1.151         endif
 791                            endif
 792                        endif
 793                        
 794                        ## if PERFINST enabled, set to force interop.
 795                        ifndef PEGASUS_DISABLE_PERFINST
 796                            ifndef PEGASUS_ENABLE_INTEROP_PROVIDER
 797                                PEGASUS_ENABLE_INTEROP_PROVIDER = true
 798                            else
 799                                ifeq ($(PEGASUS_ENABLE_INTEROP_PROVIDER),false)
 800                                    $(error PEGASUS_ENABLE_INTEROP_PROVIDER ($(PEGASUS_ENABLE_INTEROP_PROVIDER)) invalid, must be true if PERFINST enabled)
 801                                endif
 802                            endif
 803                        endif
 804                        
 805                        ifdef PEGASUS_ENABLE_INTEROP_PROVIDER
 806                            ifeq ($(PEGASUS_ENABLE_INTEROP_PROVIDER),true)
 807                                DEFINES += -DPEGASUS_ENABLE_INTEROP_PROVIDER
 808                            else
 809                                ifneq ($(PEGASUS_ENABLE_INTEROP_PROVIDER),false)
 810                                    $(error PEGASUS_ENABLE_INTEROP_PROVIDER ($(PEGASUS_ENABLE_INTEROP_PROVIDER)) invalid, must be true or false)
 811 karl             1.151         endif
 812                            endif
 813                        endif
 814                        
 815                        
 816                        ############################################################################
 817 karl             1.60  # set PEGASUS_DEBUG into the DEFINES if it exists.
 818                        # Note that this flag is the general separator between
 819                        # debug compiles and non-debug compiles and controls both
 820                        # the use of any debug options on compilers and linkers
 821                        # and general debug support that we want to be turned on in
 822 chip             1.76  # debug mode.
 823 karl             1.60  ifdef PEGASUS_DEBUG
 824 david.dillard    1.65      DEFINES += -DPEGASUS_DEBUG
 825 kumpf            1.88  
 826                            # Indications debugging options
 827                            ifdef PEGASUS_INDICATION_PERFINST
 828                                DEFINES += -DPEGASUS_INDICATION_PERFINST
 829                            endif
 830                        
 831                            ifdef PEGASUS_INDICATION_HASHTRACE
 832                                DEFINES += -DPEGASUS_INDICATION_HASHTRACE
 833                            endif
 834 kumpf            1.131 
 835                            # Setup the conditional compile for client displays.
 836                            ifdef PEGASUS_CLIENT_TRACE_ENABLE
 837                                DEFINES += -DPEGASUS_CLIENT_TRACE_ENABLE
 838                            endif
 839 karl             1.60  endif
 840                        
 841 chuck            1.42  # compile in the experimental APIs
 842 david.dillard    1.65  DEFINES += -DPEGASUS_USE_EXPERIMENTAL_INTERFACES
 843 chuck            1.42  
 844 kumpf            1.93  # Ensure that the deprecated interfaces are defined in the Pegasus libraries.
 845                        # One may wish to disable these interfaces if binary compatibility with
 846                        # previous Pegasus releases is not required.
 847                        ifndef PEGASUS_DISABLE_DEPRECATED_INTERFACES
 848                            DEFINES += -DPEGASUS_USE_DEPRECATED_INTERFACES
 849                        endif
 850                        
 851 w.white          1.57  # Set compile flag to control compilation of CIMOM statistics
 852 karl             1.73  ifdef PEGASUS_DISABLE_PERFINST
 853 marek            1.136     DEFINES += -DPEGASUS_DISABLE_PERFINST
 854 w.white          1.57  endif
 855 kumpf            1.56  
 856 karl             1.96  # Set compile flag to control compilation of SNIA Extensions
 857                        ifdef PEGASUS_SNIA_EXTENSIONS
 858 marek            1.136     DEFINES += -DPEGASUS_SNIA_EXTENSIONS
 859 karl             1.96  endif
 860                        
 861 denise.eckstein  1.119 ifdef PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER
 862                            ifeq ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER), true)
 863 marek            1.136         DEFINES += -DPEGASUS_ENABLE_CMPI_PROVIDER_MANAGER
 864 denise.eckstein  1.119     else
 865                                ifneq ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER), false)
 866                                    $(error PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER \
 867                                         ($(PEGASUS_ENABLE_CMPI_PROVIDER_MANAGER)) invalid, \
 868                                          must be true or false)
 869                                endif
 870                            endif
 871                        endif
 872                        
 873 mark.hamzy       1.124 ifdef PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER
 874                            ifeq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), true)
 875 marek            1.136         DEFINES += -DPEGASUS_ENABLE_JMPI_PROVIDER_MANAGER
 876 mark.hamzy       1.124     else
 877                                ifneq ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER), false)
 878                                    $(error PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER \
 879                                         ($(PEGASUS_ENABLE_JMPI_PROVIDER_MANAGER)) invalid, \
 880                                          must be true or false)
 881                                endif
 882                            endif
 883                        endif
 884                        
 885 kumpf            1.95  # Allow remote CMPI functionality to be enabled
 886                        ifdef PEGASUS_ENABLE_REMOTE_CMPI
 887 marek            1.136     DEFINES += -DPEGASUS_ENABLE_REMOTE_CMPI
 888 kumpf            1.95  endif
 889                        
 890 kumpf            1.56  ############################################################
 891                        #
 892                        # Set any vendor-specific compile flags
 893                        #
 894                        ############################################################
 895                        
 896                        ifdef PEGASUS_VENDOR_HP
 897 david.dillard    1.65      DEFINES+= -DPEGASUS_VENDOR_HP
 898 kumpf            1.56  endif
 899                        
 900 chip             1.76  
 901 karl             1.17  ############################################################
 902                        #
 903                        # Set up other Make Variables that depend on platform config files
 904                        #
 905                        ############################################################
 906                        
 907                        # This is temporary until we end up with a better place to
 908                        # put this variable
 909                        # Makefiles can do directory remove with
 910                        # $(RMREPOSITORY) repositoryname
 911                        #
 912                        RMREPOSITORY = $(RMDIRHIER)
 913                        
 914 w.otsuka         1.63  ifdef PEGASUS_USE_RELEASE_CONFIG_OPTIONS
 915 marek            1.136     DEFINES += -DPEGASUS_USE_RELEASE_CONFIG_OPTIONS
 916 w.otsuka         1.62  endif
 917                        
 918                        ifdef PEGASUS_USE_RELEASE_DIRS
 919 marek            1.136     DEFINES += -DPEGASUS_USE_RELEASE_DIRS
 920 w.otsuka         1.62  endif
 921 mday             1.27  
 922 denise.eckstein  1.110 ifdef PEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS
 923 marek            1.136     DEFINES += -DPEGASUS_OVERRIDE_DEFAULT_RELEASE_DIRS
 924 denise.eckstein  1.110 endif
 925                        
 926 kumpf            1.64  # Unless otherwise specified, Pegasus libraries go in $(PEGASUS_HOME)/lib
 927                        ifndef PEGASUS_DEST_LIB_DIR
 928 david.dillard    1.65      PEGASUS_DEST_LIB_DIR = lib
 929 kumpf            1.64  endif
 930 mday             1.28  
 931 gs.keenan        1.77  ifeq ($(OS),VMS)
 932                         DEFINES += -DPEGASUS_DEST_LIB_DIR="""$(PEGASUS_DEST_LIB_DIR)"""
 933                        else
 934                         DEFINES += -DPEGASUS_DEST_LIB_DIR=\"$(PEGASUS_DEST_LIB_DIR)\"
 935                        endif
 936                        
 937 w.otsuka         1.79  ################################################################################
 938                        ##
 939 mike             1.105 ## PEGASUS_CLASS_CACHE_SIZE
 940                        ##
 941                        ##     This environment variable gives the size of the class cache used by
 942                        ##     the CIM repository. When it is undefined, the size defaults to something
 943                        ##     relatively small (see src/Pegasus/Repository/CIMRepository.cpp). If
 944                        ##     defined, it gives the size of the class cache. If it is 0 , the class
 945                        ##     cache is not defined compiled in at all.
 946                        ##
 947                        ################################################################################
 948                        
 949                        ifdef PEGASUS_CLASS_CACHE_SIZE
 950                        DEFINES += -DPEGASUS_CLASS_CACHE_SIZE=$(PEGASUS_CLASS_CACHE_SIZE)
 951                        endif
 952                        
 953                        ################################################################################
 954                        ##
 955 w.otsuka         1.79  ## Additional build flags passed in through environment variables.
 956                        ## These flags are added to the compile/link commands.
 957                        ##
 958                        ################################################################################
 959                        
 960                        ifdef PEGASUS_EXTRA_CXX_FLAGS
 961                            EXTRA_CXX_FLAGS = $(PEGASUS_EXTRA_CXX_FLAGS)
 962                        endif
 963                        
 964                        ifdef PEGASUS_EXTRA_C_FLAGS
 965                            EXTRA_C_FLAGS = $(PEGASUS_EXTRA_C_FLAGS)
 966                        endif
 967                        
 968                        ifdef PEGASUS_EXTRA_LINK_FLAGS
 969                            EXTRA_LINK_FLAGS = $(PEGASUS_EXTRA_LINK_FLAGS)
 970                        endif
 971                        
 972 mike             1.126 ##==============================================================================
 973                        ##
 974                        ## By definining PEGASUS_USE_STATIC_LIBRARIES in the environment and STATIC
 975                        ## in the Makefile, a static library is produced rather than a shared one.
 976                        ## PEGASUS_USE_STATIC_LIBRARIES should be "true" or "false".
 977                        ##
 978                        ##==============================================================================
 979                        
 980                        ifdef PEGASUS_USE_STATIC_LIBRARIES
 981                          ifeq ($(PEGASUS_USE_STATIC_LIBRARIES),true)
 982                          else
 983                            ifneq ($(PEGASUS_USE_STATIC_LIBRARIES),false)
 984                              $(error PEGASUS_USE_STATIC_LIBRARIES ($(PEGASUS_USE_STATIC_LIBRARIES)) invalid, must be true or false)
 985 kumpf            1.140     endif
 986                          endif
 987                        endif
 988                        
 989                        ##==============================================================================
 990                        ##
 991                        ## PEGASUS_ENABLE_PRIVILEGE_SEPARATION
 992                        ##
 993                        ##     Enables privilege separation support (uses the executor process to
 994                        ##     perform privileged operations).
 995                        ##
 996                        ##==============================================================================
 997                        
 998                        ifdef PEGASUS_ENABLE_PRIVILEGE_SEPARATION
 999                          ifeq ($(PEGASUS_ENABLE_PRIVILEGE_SEPARATION),true)
1000                            DEFINES += -DPEGASUS_ENABLE_PRIVILEGE_SEPARATION
1001                          else
1002                            ifneq ($(PEGASUS_ENABLE_PRIVILEGE_SEPARATION),false)
1003                              $(error PEGASUS_ENABLE_PRIVILEGE_SEPARATION \
1004                                ($(PEGASUS_ENABLE_PRIVILEGE_SEPARATION)) invalid, must be true or false)
1005                            endif
1006 kumpf            1.140   endif
1007                        
1008 kumpf            1.148   ## Defines the user context of the cimservermain process when privilege
1009 kumpf            1.140   ## separation is enabled.
1010 kumpf            1.148   PEGASUS_CIMSERVERMAIN_USER = cimsrvr
1011 kumpf            1.141   DEFINES += -DPEGASUS_CIMSERVERMAIN_USER=\"$(PEGASUS_CIMSERVERMAIN_USER)\"
1012 mike             1.126 endif
1013 mark.hamzy       1.127 
1014 kumpf            1.140 ##==============================================================================
1015                        ##
1016                        ## PEGASUS_USE_PAM_STANDALONE_PROC
1017                        ##
1018                        ##==============================================================================
1019                        
1020                        ifdef PEGASUS_USE_PAM_STANDALONE_PROC
1021                          DEFINES += -DPEGASUS_USE_PAM_STANDALONE_PROC
1022                        endif
1023                        
1024                        ##==============================================================================
1025 mark.hamzy       1.127 
1026                        ifndef PEGASUS_JAVA_CLASSPATH_DELIMITER
1027                            PEGASUS_JAVA_CLASSPATH_DELIMITER = :
1028                        endif
1029 mark.hamzy       1.132 
1030                        ifndef PEGASUS_JVM
1031                        	PEGASUS_JVM = sun
1032                        endif
1033                        ifeq ($(PEGASUS_JVM),gcj)
1034                        	PEGASUS_JAVA_COMPILER		= gcj -C
1035                        	PEGASUS_JAVA_JAR		= fastjar
1036                        	PEGASUS_JAVA_INTERPRETER	= gij
1037                        else
1038                        	PEGASUS_JAVA_COMPILER		= javac -target 1.4 -source 1.4
1039                        	PEGASUS_JAVA_JAR		= jar
1040                        	PEGASUS_JAVA_INTERPRETER	= java
1041                        endif
1042 dmitry.mikulin   1.155 
1043                        # Disable client timeouts when we're doing a valgrind build
1044                        ifdef PEGASUS_TEST_VALGRIND_LOG
1045 dmitry.mikulin   1.156     DEFINES += -DPEGASUS_DISABLE_CLIENT_TIMEOUT -DPEGASUS_TEST_VALGRIND
1046 dmitry.mikulin   1.155 endif
1047                        

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2