Print this page
7849 Disable auditing when building native svc.configd
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/svc/configd/Makefile
          +++ new/usr/src/cmd/svc/configd/Makefile
↓ open down ↓ 14 lines elided ↑ open up ↑
  15   15  # If applicable, add the following below this CDDL HEADER, with the
  16   16  # fields enclosed by brackets "[]" replaced with your own identifying
  17   17  # information: Portions Copyright [yyyy] [name of copyright owner]
  18   18  #
  19   19  # CDDL HEADER END
  20   20  #
  21   21  #
  22   22  # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23   23  # Use is subject to license terms.
  24   24  #
       25 +# Copyright 2015 RackTop Systems.
       26 +#
  25   27  
  26   28  MYPROG = svc.configd
  27   29  MYOBJS = \
  28   30          backend.o \
  29   31          configd.o \
  30   32          client.o \
  31   33          file_object.o \
  32   34          maindoor.o \
  33   35          object.o \
  34   36          rc_node.o \
↓ open down ↓ 16 lines elided ↑ open up ↑
  51   53  MYCPPFLAGS = -I. -I../common -I../../../common/svc \
  52   54          -I$(ROOT)/usr/include/sqlite-sys -D_REENTRANT
  53   55  CPPFLAGS += $(MYCPPFLAGS)
  54   56  CFLAGS  += $(CCVERBOSE)
  55   57  CERRWARN += -_gcc=-Wno-parentheses
  56   58  CERRWARN += -_gcc=-Wno-type-limits
  57   59  CERRWARN += -_gcc=-Wno-unused-label
  58   60  CERRWARN += -_gcc=-Wno-unused-variable
  59   61  CERRWARN += -_gcc=-Wno-unused-function
  60   62  CERRWARN += -_gcc=-Wno-uninitialized
  61      -MYLDLIBS = -lumem -luutil -lbsm
  62      -LDLIBS  += -lsecdb $(MYLDLIBS)
       63 +MYLDLIBS = -lumem -luutil
       64 +LDLIBS  += -lsecdb -lbsm $(MYLDLIBS)
  63   65  LINTFLAGS += -errtags -erroff=E_BAD_FORMAT_ARG_TYPE2 -erroff=E_NAME_DEF_NOT_USED2
  64   66  
  65   67  CLOBBERFILES += $(MYPROG:%=%-native)
  66   68  
  67   69  LIBUUTIL        = $(SRC)/lib/libuutil
  68   70  LIBSCF          = $(SRC)/lib/libscf
  69   71  
  70   72  SCRIPTFILE      = restore_repository
  71   73  ROOTSCRIPTFILE  = $(ROOTCMDDIR)/$(SCRIPTFILE)
  72   74  
↓ open down ↓ 60 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX