Print this page
4853 illumos-gate is not lint-clean when built with openssl 1.0 (initial commit, openssl 1.0.1h)


  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  22 # Use is subject to license terms.
  23 #
  24 
  25 PROG =          wpad
  26 MANIFEST =      wpa.xml
  27 OBJS =          wpa_supplicant.o wpa.o wpa_enc.o eloop.o \
  28                 driver_wifi.o l2_packet.o
  29 SRCS =          $(OBJS:%.o=%.c)
  30 
  31 include ../../../Makefile.cmd
  32 
  33 ROOTMANIFESTDIR = $(ROOTSVCNETWORK)
  34 
  35 LDLIBS    +=    -ldladm -ldlpi
  36 all install := LDLIBS += -lcrypto
  37 
  38 LINTFLAGS +=    -u
  39 
  40 .KEEP_STATE:
  41 
  42 all:            $(PROG)
  43 
  44 $(PROG):        $(OBJS)
  45                 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
  46                 $(POST_PROCESS)
  47 
  48 include ../Makefile.lib
  49 
  50 install:        all $(ROOTLIBINETPROG) $(ROOTMANIFEST)
  51 
  52 check:          $(CHKMANIFEST)
  53 
  54 clean:
  55                 $(RM) $(OBJS)
  56 


  16 # fields enclosed by brackets "[]" replaced with your own identifying
  17 # information: Portions Copyright [yyyy] [name of copyright owner]
  18 #
  19 # CDDL HEADER END
  20 #
  21 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  22 # Use is subject to license terms.
  23 #
  24 
  25 PROG =          wpad
  26 MANIFEST =      wpa.xml
  27 OBJS =          wpa_supplicant.o wpa.o wpa_enc.o eloop.o \
  28                 driver_wifi.o l2_packet.o
  29 SRCS =          $(OBJS:%.o=%.c)
  30 
  31 include ../../../Makefile.cmd
  32 
  33 ROOTMANIFESTDIR = $(ROOTSVCNETWORK)
  34 
  35 LDLIBS    +=    -ldladm -ldlpi
  36 $(PROG) := LDLIBS += -lsunw_crypto
  37 
  38 LINTFLAGS +=    -u
  39 
  40 .KEEP_STATE:
  41 
  42 all:            $(PROG)
  43 
  44 $(PROG):        $(OBJS)
  45                 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
  46                 $(POST_PROCESS)
  47 
  48 include ../Makefile.lib
  49 
  50 install:        all $(ROOTLIBINETPROG) $(ROOTMANIFEST)
  51 
  52 check:          $(CHKMANIFEST)
  53 
  54 clean:
  55                 $(RM) $(OBJS)
  56